Use std::string in mi_cmd_interpreter_exec
[external/binutils.git] / gdb / ChangeLog
1 2017-09-03  Tom Tromey  <tom@tromey.com>
2
3         * mi/mi-interp.c (mi_cmd_interpreter_exec): Use std::string.
4
5 2017-09-03  Tom Tromey  <tom@tromey.com>
6
7         * mi/mi-cmd-env.c (env_execute_cli_command): Use
8         gdb::unique_xmalloc_ptr.
9
10 2017-09-03  Tom Tromey  <tom@tromey.com>
11
12         * thread.c (print_thread_info_1): Use string_printf.
13         (thread_apply_command, thread_apply_all_command): Use
14         std::string.
15
16 2017-09-03  Tom Tromey  <tom@tromey.com>
17
18         * valprint.c (val_print_string): Update.
19         * gdbcore.h (memory_error_message): Return std::string.
20         * corefile.c (memory_error_message): Return std::string.
21         (memory_error): Update.
22         * breakpoint.c (insert_bp_location): Update.
23
24 2017-09-03  Simon Marchi  <simon.marchi@ericsson.com>
25
26         * target/waitstatus.h (target_waitstatus_to_string): Change
27         return type to std::string.
28         * target/waitstatus.c (target_waitstatus_to_string): Return
29         std::string.
30         * target.h (target_waitstatus_to_string): Remove declaration.
31         * infrun.c (resume, clear_proceed_status_thread,
32         print_target_wait_results, do_target_wait, save_waitstatus,
33         stop_all_threads): Adjust.
34         * record-btrace.c (record_btrace_wait): Adjust.
35         * target-debug.h
36         (target_debug_print_struct_target_waitstatus_p): Adjust.
37
38 2017-09-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
39
40         PR gdb/22046
41         * nat/linux-procfs.c (parse_proc_status_state): Fix PROC_STATE_STOPPED
42         detection.
43
44 2017-08-31  Sergio Durigan Junior  <sergiodj@redhat.com>
45
46         * NEWS (Changes since GDB 8.0): Add entry mentioning new support
47         for setting/unsetting environment variables on the remote target.
48         (New remote packets): Add entries for QEnvironmentHexEncoded,
49         QEnvironmentUnset and QEnvironmentReset.
50         * common/environ.c (gdb_environ::operator=): Extend method to
51         handle m_user_set_env_list and m_user_unset_env_list.
52         (gdb_environ::clear): Likewise.
53         (match_var_in_string): Change type of first parameter from 'char
54         *' to 'const char *'.
55         (gdb_environ::set): Extend method to handle
56         m_user_set_env_list and m_user_unset_env_list.
57         (gdb_environ::unset): Likewise.
58         (gdb_environ::clear_user_set_env): New method.
59         (gdb_environ::user_set_envp): Likewise.
60         (gdb_environ::user_unset_envp): Likewise.
61         * common/environ.h (gdb_environ): Handle m_user_set_env_list and
62         m_user_unset_env_list on move constructor/assignment.
63         (unset): Add new default parameter 'update_unset_list = true'.
64         (clear_user_set_env): New method.
65         (user_set_envp): Likewise.
66         (user_unset_envp): Likewise.
67         (m_user_set_env_list): New std::set.
68         (m_user_unset_env_list): Likewise.
69         * common/rsp-low.c (hex2str): New function.
70         (bin2hex): New overload for bin2hex function.
71         * common/rsp-low.c (hex2str): New prototype.
72         (str2hex): New overload prototype.
73         * remote.c: Include "environ.h". Add QEnvironmentHexEncoded,
74         QEnvironmentUnset and QEnvironmentReset.
75         (remote_protocol_features): Add QEnvironmentHexEncoded,
76         QEnvironmentUnset and QEnvironmentReset packets.
77         (send_environment_packet): New function.
78         (extended_remote_environment_support): Likewise.
79         (extended_remote_create_inferior): Call
80         extended_remote_environment_support.
81         (_initialize_remote): Add QEnvironmentHexEncoded,
82         QEnvironmentUnset and QEnvironmentReset packet configs.
83         * unittests/environ-selftests.c (gdb_selftest_env_var):
84         New variable.
85         (test_vector_initialization): New function.
86         (test_init_from_host_environ): Likewise.
87         (test_reinit_from_host_environ): Likewise.
88         (test_set_A_unset_B_unset_A_cannot_find_A_can_find_B):
89         Likewise.
90         (test_unset_set_empty_vector): Likewise.
91         (test_vector_clear): Likewise.
92         (test_std_move): Likewise.
93         (test_move_constructor):
94         (test_self_move): Likewise.
95         (test_set_unset_reset): Likewise.
96         (run_tests): Rewrite in terms of the functions above.
97
98 2017-08-31  Weimin Pan  <weimin.pan@oracle.com>
99
100         * sparc64-tdep.c (adi_stat_t): Fix comment formatting.
101         (adi_available): Use a temp variable of type CORE_ADDR as argument
102         3 when calling target_auxv_search.
103         (adi_normalize_address): Use masks and xor operators to calculate
104         normalized address.
105         (adi_read_versions, adi_write_versions, adi_print_versions)
106         (do_examine, do_assign): Use paddress.
107
108 2017-08-29  John Baldwin  <jhb@FreeBSD.org>
109
110         * mips-fbsd-nat.c (getfpregs_supplies): Return true for FIR.
111         * mips-fbsd-tdep.c (mips_fbsd_supply_fpregs): Split supply of FSR
112         out of loop and add supply of FIR.
113         (mips_fbsd_collect_fpregs): Split collect of FSR out of loop and
114         add collect of FIR.
115
116 2017-08-28  Simon Marchi  <simon.marchi@ericsson.com>
117
118         PR gdb/21827
119         * cli/cli-script.c (define_command): Don't convert command name
120         to lower case.
121
122 2017-08-25  Joel Brobecker  <brobecker@adacore.com>
123
124         * ada-lang.c (ada_lookup_struct_elt_type): Remove parameter "dispp".
125         Update all callers accordingly. Remove all code blocks handling
126         the case where DISPP is not NULL.
127
128 2017-08-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
129
130         PR symtab/22003
131         * dwarf2read.c (dwarf2_const_value_attr, dump_die_shallow)
132         (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
133         (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_implicit_const.
134
135 2017-08-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
136
137         * dwarf2read.c (build_type_psymtabs_reader): New prototype.
138         (process_psymtab_comp_unit): Accept IS_DEBUG_TYPES.
139         (read_comp_units_from_section): New parameter abbrev_section, use
140         read_and_check_comp_unit_head, allocate signatured_type if needed.
141         (create_all_comp_units): Update read_comp_units_from_section caller.
142
143 2017-08-23  Pedro Alves  <palves@redhat.com>
144
145         PR remote/21852
146         * remote.c (add_current_inferior_and_thread): Set inferior_ptid
147         to null_ptid and switch to thread without reading the registers
148         after adding the inferior.
149
150 2017-08-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
151
152         * NEWS (Changes since GDB 8.0): Add set compile-gcc and show
153         compile-gcc.
154         * compile/compile.c (compile_gcc, show_compile_gcc): New.
155         (compile_to_object): Implement compile_gcc.
156         (_initialize_compile): Install "set compile-gcc".  Initialize
157         compile_gcc.
158
159 2017-08-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
160
161         * compile/compile.c (compile_to_object): Conditionally call
162         set_verbose.  Conditionally call compile or compile_v0.
163
164 2017-08-07  Weimin Pan  <weimin.pan@oracle.com>
165
166         * sparc64-tdep.h: (adi_normalize_address): New export.
167         * sparc-nat.h: (open_adi_tag_fd): New export.
168         * sparc64-linux-nat.c: (open_adi_tag_fd): New function.
169         * sparc64-linux-tdep.c:
170         (SEGV_ACCADI, SEGV_ADIDERR, SEGV_ADIPERR) New defines.
171         (sparc64_linux_handle_segmentation_fault): New function.
172         (sparc64_linux_init_abi): Register
173         sparc64_linux_handle_segmentation_fault
174         * sparc64-tdep.c: Include cli-utils.h,gdbcmd.h,auxv.h.
175         (sparc64_addr_bits_remove): New function.
176         (sparc64_init_abi): Register sparc64_addr_bits_remove.
177         (MAX_PROC_NAME_SIZE): New macro.
178         (AT_ADI_BLKSZ, AT_ADI_NBITS, AT_ADI_UEONADI) New defines.
179         (sparc64adilist): New variable.
180         (adi_proc_list): New variable.
181         (find_adi_info): New function.
182         (add_adi_info): New function.
183         (get_adi_info_proc): New function.
184         (get_adi_info): New function.
185         (info_adi_command): New function.
186         (read_maps_entry): New function.
187         (adi_available): New function.
188         (adi_normalize_address): New function.
189         (adi_align_address): New function.
190         (adi_convert_byte_count): New function.
191         (adi_tag_fd): New function.
192         (adi_is_addr_mapped): New function.
193         (adi_read_versions): New function.
194         (adi_write_versions): New function.
195         (adi_print_versions): New function.
196         (do_examine): New function.
197         (do_assign): New function.
198         (adi_examine_command): New function.
199         (adi_assign_command): New function.
200         (_initialize_sparc64_adi_tdep): New function.
201
202 2017-08-22  Simon Marchi  <simon.marchi@ericsson.com>
203
204         * breakpoint.c (breakpoints_info): Rename to ...
205         (info_breakpoints_command): ... this.
206         (watchpoints_info): Rename to ...
207         (info_watchpoints_command): ... this.
208         (tracepoints_info): Rename to ...
209         (info_tracepoints_command): ... this.
210         (_initialize_breakpoint): Adjust.
211         * dcache.c (dcache_info): Rename to ...
212         (info_display_command): ... this.
213         (_initialize_dcache): Adjust.
214         * frame.h (args_info): Rename to ...
215         (info_args_command): ... this.
216         (locals_info): Rename to ...
217         (info_locals_command): ... this.
218         * infcmd.c (nofp_registers_info): Rename to ...
219         (info_registers_command): ... this.
220         (float_info): Rename to ...
221         (info_float_command): ... this.
222         (program_info): Rename to ...
223         (info_program_command): ... this.
224         (all_registers_info): Rename to ...
225         (info_all_registers_command): ... this.
226         (vector_info): Rename to ...
227         (info_vector_command): ... this.
228         (float_info): Rename to ...
229         (info_float_command): ... this.
230         (_initialize_infcmd): Adjust.
231         * inferior.h (term_info): Rename to ...
232         (info_terminal_command): ... this.
233         * inflow.c (term_info): Rename to ...
234         (info_terminal_command): ... this.
235         (_initialize_inflow): Adjust.
236         * infrun.c (signals_info): Rename to ...
237         (info_signals_command): ... this.
238         (_initialize_infrun): Adjust.
239         * objc-lang.c (classes_info): Rename to ...
240         (info_classes_command): ... this.
241         (selectors_info): Rename to ...
242         (info_selectors_command): ... this.
243         (_initialize_objc_language): Adjust.
244         * printcmd.c (sym_info): Rename to ...
245         (info_symbol_command): ... this.
246         (address_info): Rename to ...
247         (info_address_command): ... this.
248         (display_info): Rename to ...
249         (info_display_command): ... this.
250         (_initialize_printcmd): Adjust.
251         * reverse.c (bookmarks_info): Rename to ...
252         (info_breakpoints_command): ... this.
253         (_initialize_reverse): Adjust.
254         * ser-go32.c (dos_info): Rename to ...
255         (info_serial_command): ... this.
256         (_initialize_ser_dos): Adjust.
257         * skip.c (skip_info): Rename to ...
258         (info_skip_command): ... this.
259         (_initialize_step_skip): Adjust.
260         * source.c (line_info): Rename to ...
261         (info_line_command): ... this.
262         (source_info): Rename to ...
263         (info_source_command)
264         * stack.c (frame_info): Rename to ...
265         (info_frame_command): ... this.
266         (locals_info): Rename to ...
267         (info_locals_command): ... this.
268         (args_info): Rename to ...
269         (info_args_command): ... this.
270         (_initialize_stack): Adjust.
271         * symtab.c (sources_info): Rename to ...
272         (info_sources_command): ... this.
273         (variables_info): Rename to ...
274         (info_variables_command): ... this.
275         (functions_info): Rename to ...
276         (info_functions_command): ... this.
277         (types_info): Rename to ...
278         (info_types_command): ... this.
279         (_initialize_symtab): Adjust.
280         * target.c (target_info): Rename to ...
281         (info_target_command): ... this.
282         (initialize_targets): Adjust.
283         * tracepoint.c (tvariables_info): Rename to ...
284         (info_tvariables_command): ... this.
285         (scope_info): Rename to ...
286         (info_scope_command): ... this.
287         (trace_dump_actions): Adjust.
288         (_initialize_tracepoint): Adjust.
289
290 2017-08-22  Tom Tromey  <tom@tromey.com>
291
292         * breakpoint.h (install_breakpoint): Update.
293         * breakpoint.c (add_solib_catchpoint): Update.
294         (install_breakpoint): Change argument to a std::unique_ptr.
295         (create_fork_vfork_event_catchpoint): Use std::unique_ptr.
296         (create_breakpoint_sal, create_breakpoint): Update.
297         (watch_command_1, catch_exec_command_1)
298         (strace_marker_create_breakpoints_sal): Use std::unique_ptr.
299         (add_to_breakpoint_chain): Change argument to a std::unique_ptr.
300         Return the breakpoint.
301         (set_raw_breakpoint_without_location, set_raw_breakpoint)
302         (new_single_step_breakpoint): Update.
303         * break-catch-throw.c (handle_gnu_v3_exceptions): Use
304         std::unique_ptr.
305         * break-catch-syscall.c (create_syscall_event_catchpoint): Use
306         std::unique_ptr.
307         * break-catch-sig.c (create_signal_catchpoint): Use
308         std::unique_ptr.
309         * ada-lang.c (create_ada_exception_catchpoint): Use
310         std::unique_ptr.
311
312 2017-08-22  Tom Tromey  <tom@tromey.com>
313
314         * breakpoint.c (add_solib_catchpoint): Use std::unique_ptr.
315
316 2017-08-22  Tom Tromey  <tom@tromey.com>
317
318         * psymtab.c (psymtab_search_name): Return a unique_xmalloc_ptr.
319         (lookup_partial_symbol): Update.
320
321 2017-08-22  Tom Tromey  <tom@tromey.com>
322
323         * source.h (rewrite_source_path): Return a unique_xmalloc_ptr.
324         * source.c (rewrite_source_path): Return a unique_xmalloc_ptr.
325         (find_and_open_source, symtab_to_fullname): Update.
326         * psymtab.c (psymtab_to_fullname): Update.
327
328 2017-08-22  Tom Tromey  <tom@tromey.com>
329
330         * exec.c (exec_file_attach): Update.
331         * linux-thread-db.c (try_thread_db_load): Update.
332         * guile/scm-safe-call.c (gdbscm_safe_source_script): Update.
333         * utils.c (gdb_realpath): Change return type.
334         (gdb_realpath_keepfile): Update.
335         (gdb_realpath_check_trailer, gdb_realpath_tests): New functions.
336         (_initialize_utils): Register the new self test.
337         * source.c (openp): Update.
338         (find_and_open_source): Update.
339         * nto-tdep.c (nto_find_and_open_solib): Update.
340         * main.c (set_gdb_data_directory): Update.
341         (captured_main_1): Update.
342         * dwarf2read.c (dwarf2_get_dwz_file): Update
343         (dw2_map_symbol_filenames): Update.
344         * auto-load.c (auto_load_safe_path_vec_update): Update.
345         (filename_is_in_auto_load_safe_path_vec): Change type of
346         "filename_realp".
347         (auto_load_objfile_script): Update.
348         (file_is_auto_load_safe): Update.  Use std::string.
349         * utils.h (gdb_realpath): Return a gdb::unique_xmalloc_ptr.
350
351 2017-08-22  Tom Tromey  <tom@tromey.com>
352
353         * utils.c (gdb_realpath_keepfile): Return a
354         gdb::unique_xmalloc_ptr.
355         * exec.c (exec_file_attach): Update.
356         * utils.h (gdb_realpath_keepfile): Return a
357         gdb::unique_xmalloc_ptr.
358
359 2017-08-22  Tom Tromey  <tom@tromey.com>
360
361         * compile/compile.c (compile_file_command): Use
362         gdb::unique_xmalloc_ptr, std::string.
363         * utils.c (gdb_abspath): Change return type.
364         * source.c (openp): Update.
365         * objfiles.c (allocate_objfile): Update.
366         * main.c (set_gdb_data_directory): Update.
367         * utils.h (gdb_abspath): Return a gdb::unique_xmalloc_ptr.
368
369 2017-08-22  Zhouyi Zhou  <zhouzhouyi@gmail.com>
370
371         * cli-cmds.c (list_commands): List actual code around more than
372         one location.
373
374 2017-08-21  John Baldwin  <jhb@FreeBSD.org>
375
376         * fbsd-nat.c (fbsd_add_threads): Use array type for `lwps'.
377
378 2017-08-21  Pedro Alves  <palves@redhat.com>
379
380         PR gdb/19487
381         * c-exp.y (variable production): Handle function aliases.
382         * minsyms.c (msymbol_is_text): New function.
383         * minsyms.h (msymbol_is_text): Declare.
384         * symtab.c (find_function_alias_target): New function.
385         * symtab.h (find_function_alias_target): Declare.
386
387 2017-08-21  Pedro Alves  <palves@redhat.com>
388
389         * eval.c (evaluate_subexp_standard) <OP_TYPE>: Don't dig past
390         typedefs.
391         * typeprint.c (whatis_exp): If handling "whatis", and expression
392         is OP_TYPE, strip one typedef level.  Otherwise don't strip
393         typedefs here.
394         * valops.c (value_cast): Save "to" type before resolving
395         stubs/typedefs.  Use that type as resulting value's type.
396
397 2017-08-18  Tom Tromey  <tom@tromey.com>
398             Pedro Alves  <palves@redhat.com>
399
400         * spu-multiarch.c (parse_spufs_run): Use scoped_restore.
401         * sol-thread.c (sol_thread_resume, sol_thread_wait)
402         (sol_thread_xfer_partial, rw_common): Use scoped_restore.
403         * procfs.c (procfs_do_thread_registers): Use scoped_restore.
404         * proc-service.c (ps_xfer_memory): Use scoped_restore.
405         * linux-tdep.c (linux_corefile_thread): Remove a cleanup.
406         (linux_get_siginfo_data): Add "thread" argument.  Use
407         scoped_restore.
408         * linux-nat.c (linux_child_follow_fork)
409         (check_stopped_by_watchpoint): Use scoped_restore.
410         * infrun.c (displaced_step_prepare_throw, write_memory_ptid)
411         (THREAD_STOPPED_BY, handle_signal_stop): Use scoped_restore.
412         (restore_inferior_ptid, save_inferior_ptid): Remove.
413         * btrace.c (btrace_fetch): Use scoped_restore.
414         * bsd-uthread.c (bsd_uthread_fetch_registers)
415         (bsd_uthread_store_registers): Use scoped_restore.
416         * breakpoint.c (reattach_breakpoints, detach_breakpoints): Use
417         scoped_restore.
418         * aix-thread.c (aix_thread_resume, aix_thread_wait)
419         (aix_thread_xfer_partial): Use scoped_restore.
420         * inferior.h (save_inferior_ptid): Remove.
421
422 2017-08-18  Yao Qi  <yao.qi@linaro.org>
423
424         PR tdep/21818
425         * arm-tdep.c (gdb_print_insn_arm): Mark
426         USER_SPECIFIED_MACHINE_TYPE if exec_bfd isn't NULL.
427
428 2017-08-18  Yao Qi  <yao.qi@linaro.org>
429
430         * NEWS: Mention GDBserver's new option "--selftest".
431         * Makefile.in (SFILES): Remove selftest.c, add common/selftest.c.
432         * selftest.c: Move it to common/selftest.c.
433         * selftest.h: Move it to common/selftest.h.
434         * selftest-arch.c (reset): New function.
435         (tests_with_arch): Call reset.
436
437 2017-08-18  Yao Qi  <yao.qi@linaro.org>
438
439         * selftest.c (run_tests): Don't call QUIT.  Call debug_printf
440         instead of exception_fprintf and printf_filtered.
441
442 2017-08-18  Yao Qi  <yao.qi@linaro.org>
443
444         * selftest.c (register_self_test): Rename it to
445         selftests::register_test.
446         (run_self_tests): selftest::run_tests.
447         * selftest.h: Update declarations.
448         * selftest-arch.c (register_self_test_foreach_arch): Rename it to
449         selftests::register_test_foreach_arch.
450         * selftest-arch.h: Update declaration.
451         * aarch64-tdep.c: Update.
452         * arm-tdep.c: Likewise.
453         * disasm-selftests.c: Likewise.
454         * dwarf2loc.c: Likewise.
455         * dwarf2-frame.c: Likewise.
456         * findvar.c: Likewise.
457         * gdbarch-selftests.c: Likewise.
458         * maint.c (maintenance_selftest): Likewise.
459         * regcache.c: Likewise.
460         * rust-exp.y: Likewise.
461         * selftest-arch.c: Likewise.
462         * unittests/environ-selftests.c: Likewise.
463         * unittests/function-view-selftests.c: Likewise.
464         * unittests/offset-type-selftests.c: Likewise.
465         * unittests/optional-selftests.c: Likewise.
466         * unittests/scoped_restore-selftests.c: Likewise.
467         * utils-selftests.c: Likewise.
468
469 2017-08-17  Pedro Alves  <palves@redhat.com>
470
471         * cli/cli-cmds.c (source_command): Delete 'old_source_verbose'
472         local.
473
474 2017-08-17  Pedro Alves  <palves@redhat.com>
475
476         * dwarf2read.c (struct dwarf2_cu) <line_header_die_owner>: New
477         field.
478         (reset_die_in_process): Delete, replaced by ...
479         (process_die_scope): ... this new class.  Make it responsible for
480         freeing cu->line_header too.
481         (process_die): Use process_die_scope.
482         (handle_DW_AT_stmt_list): Record the line header's owner CU/DIE in
483         cu->line_header_die_owner.  Don't release the line header if it's
484         owned by the CU.
485         (setup_type_unit_groups): Make the CU/DIE own the line header.
486         Don't release the line header here.
487
488 2017-08-17  Alex Lindsay  <alexlindsay239@gmail.com>  (tiny change)
489
490         * elfread.c (elf_read_minimal_symbols): xfree synthsyms.
491
492 2017-08-17  Ruslan Kabatsayev  <b7.10110111@gmail.com>
493
494         * NEWS: Mention new shortcuts for nexti and stepi in TUI
495         Single-Key mode
496
497 2017-08-16  Ruslan Kabatsayev  <b7.10110111@gmail.com>
498
499         * tui/tui.c (tui_commands): Add "nexti" and "stepi" to the Single-Key
500         mode command list.
501
502 2017-08-15  Stafford Horne  <shorne@gmail.com>
503
504         * MAINTAINERS (Write After Approval): Add Stafford Horne.
505
506 2017-08-15  Stafford Horne  <shorne@gmail.com>
507
508         * xtensa-tdep.c (xtensa_init_reggroups): Use xstrdup for cpname.
509
510 2017-08-15  Sergio Durigan Junior  <sergiodj@redhat.com>
511
512         PR gdb/21954
513         * infcmd.c (unset_environment_command): Use the 'clear' method on
514         the environment instead of resetting it.
515
516 2017-08-15  John Baldwin  <jhb@FreeBSD.org>
517
518         * fbsd-nat.c (fbsd_convert_siginfo): Fix compile on big-endian
519         platforms.
520
521 2017-08-14  Tom Tromey  <tom@tromey.com>
522
523         * valprint.c (print_octal_chars): Use HOST_CHAR_BIT.
524         (print_binary_chars): Likewise.
525         (BITS_IN_BYTES): Remove.
526
527 2017-08-14  Tom Tromey  <tom@tromey.com>
528
529         PR gdb/21675
530         * valprint.c (LOW_ZERO): Change value to 034.
531         (print_octal_chars): Add static_asserts for octal constants.
532         * printcmd.c (print_scalar_formatted): Add 'd' case.
533
534 2017-08-11  Tom Tromey  <tom@tromey.com>
535
536         * symfile.c (add_symbol_file_command): Use std::vector.
537
538 2017-08-14  Tom Tromey  <tom@tromey.com>
539
540         * break-catch-throw.c (handle_gnu_v3_exceptions): Use std::move.
541         * break-catch-syscall.c (create_syscall_event_catchpoint): Use
542         std::move.
543         * break-catch-sig.c (create_signal_catchpoint): Use std::move.
544
545 2017-08-11  Pedro Alves  <palves@redhat.com>
546
547         * infrun.c (process_event_stop_test): Adjust
548         function_name_is_marked_for_skip call.
549         * skip.c: Include <list>.
550         (skiplist_entry): Make it a class with private fields, and
551         getters/setters.
552         (skiplist_entry_chain): Delete.
553         (skiplist_entries): New.
554         (skiplist_entry_count): Delete.
555         (highest_skiplist_entry_num): New.
556         (ALL_SKIPLIST_ENTRIES, ALL_SKIPLIST_ENTRIES_SAFE): Delete.
557         (add_skiplist_entry): Delete.
558         (skiplist_entry::skiplist_entry): New.
559         (skiplist_entry::add_entry): New.
560         (skip_file_command, skip_function): Adjust.
561         (compile_skip_regexp): Delete.
562         (skip_command): Don't compile regexp here.  Adjust to use
563         skiplist_entry::add_entry.
564         (skip_info): Adjust to use range-for and getters.
565         (skip_enable_command, skip_disable_command): Adjust to use
566         range-for and setters.
567         (skip_delete_command): Adjust to use std::list.
568         (add_skiplist_entry): Delete.
569         (skip_file_p): Delete, refactored as ...
570         (skiplist_entry::do_skip_file_p): ... this new method.
571         (skip_gfile_p): Delete, refactored as ...
572         (skiplist_entry::do_gskip_file_p): ... this new method.
573         (skip_function_p, skip_rfunction_p): Delete, refactored as ...
574         (skiplist_entry::skip_function_p): ... this new method.
575         (function_name_is_marked_for_skip): Now returns bool, and takes
576         the function sal by const reference.  Adjust to use range-for and
577         skiplist_entry methods.
578         (_initialize_step_skip): Remove references to
579         skiplist_entry_chain, skiplist_entry_count.
580         * skip.h (function_name_is_marked_for_skip): Now returns bool, and
581         takes the function sal by const reference.
582
583 2017-08-11  Yao Qi  <yao.qi@linaro.org>
584
585         * dwarf2-frame.c (clear_pointer_cleanup): Remove.
586         (dwarf2_frame_cache): Remove reset_cache_cleanup.
587         (dwarf2_frame_cache):
588         * frame-unwind.c (frame_unwind_try_unwinder): Catch
589         RETURN_MASK_ALL and set *this_case to NULL.
590         * frame-unwind.h: Update comments.
591
592 2017-08-11  Yao Qi  <yao.qi@linaro.org>
593
594         * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Remove.
595         (dwarf2_frame_state_copy_regs): Remove.
596         (dwarf2_frame_state_free_regs): Remove.
597         (dwarf2_frame_state::~dwarf2_frame_state): Remove.
598         (dwarf2_restore_rule): Call method .alloc_regs instead of
599         dwarf2_frame_state_alloc_regs.
600         (execute_cfa_program): Likewise.  Call dwarf2_frame_state_reg_info
601         constructor.  Call std::move.
602         (dwarf2_fetch_cfa_info): Don't call dwarf2_frame_state_copy_regs.
603         (dwarf2_frame_cache): Likewise.
604
605         [GDB_SELF_TEST]: Include selftest.h and
606         selftest-arch.h.
607         [GDB_SELF_TEST] (execute_cfa_program_test): New function.
608         (_initialize_dwarf2_frame) [GDB_SELF_TEST]: Register
609         execute_cfa_program_test.
610
611         * dwarf2-frame.h (dwarf2_frame_state_reg_info): Add ctor, dtor,
612         copy ctor, assignment operator, move assignment.
613         <alloc_regs>: New method.
614         <swap>: New method.
615         (struct dwarf2_frame_state): Delete dtor.
616         (dwarf2_frame_state_alloc_regs): Remove declaration.
617         * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): Don't call
618         dwarf2_frame_state_alloc_regs, use .alloc_regs instead.
619
620 2017-08-11  Yao Qi  <yao.qi@linaro.org>
621
622         * dwarf2-frame.c (dwarf2_frame_state_free): Remove.
623         (dwarf2_frame_state::dwarf2_frame_state): New.
624         (dwarf2_frame_state::~dwarf2_frame_state): New.
625         (dwarf2_fetch_cfa_info): Update.
626         (dwarf2_frame_cache): Remove old_chain.  Change 'fs' to an object
627         rather than a pointer.  Update code.
628         * dwarf2-frame.h (struct dwarf2_frame_state): Declare ctor and
629         dtor.
630         <data_align, code_align, retaddr_column>: Change them to const.
631         <armcc_cfa_offsets_sf, armcc_cfa_offsets_reversed>: Change them
632         to bool.
633
634 2017-08-11  Yao Qi  <yao.qi@linaro.org>
635
636         * dwarf2-frame.h (struct dwarf2_frame_state_reg) <exp_len>: Remove.
637         <loc.exp>: New field.
638         * dwarf2-frame.c (execute_cfa_program): Update.
639         (dwarf2_frame_prev_register): Update.
640
641 2017-08-10  Pedro Alves  <palves@redhat.com>
642
643         * common/gdb_unique_ptr.h (xfree_deleter<T[]>): Define.
644
645 2017-08-09  John Baldwin  <jhb@FreeBSD.org>
646
647         * fbsd-nat.c (struct fbsd_fork_info): Remove.
648         (fbsd_pending_children): Use std::list.
649         (fbsd_remember_child): Likewise.
650         (fbsd_is_child_pending): Likewise.
651         (fbsd_pending_vfork_done): Use std::forward_list.
652         (fbsd_add_vfork_done): Likewise.
653         (fbsd_is_vfork_done_pending): Likewise.
654         (fbsd_next_vfork_done): Likewise.
655
656 2017-08-09  John Baldwin  <jhb@FreeBSD.org>
657
658         * fbsd-nat.c [HAVE_KINFO_GETVMMAP] (struct free_deleter): New.
659         (fbsd_find_memory_regions): Use free_deleter with std::unique_ptr.
660         [!HAVE_KINFO_GETVMMAP] (fbsd_find_memory_regions): Use std::string
661         for `mapfilename'.
662         (fbsd_xfer_partial): Use gdb::byte_vector.
663         (fbsd_add_threads): Use gdb::unique_xmalloc_ptr.
664
665 2017-08-09  John Baldwin  <jhb@FreeBSD.org>
666
667         * fbsd-nat.c: [!HAVE_KINFO_GETVMMAP]: Include <sys/user.h> and
668         "filestuff.h".
669         (fbsd_find_memory_regions): Fix `mapfile' initialization.
670
671 2017-08-09  Tom Tromey  <tom@tromey.com>
672
673         * skip.c (skiplist_entry): New constructor.
674         (skiplist_entry::enabled, skiplist_entry::function_is_regexp)
675         (skiplist_entry::file_is_glob): Now bool.
676         (skiplist_entry::file, skiplist_entry::function): Now
677         std::string.
678         (make_skip_entry): Return a unique_ptr.  Use new.
679         (free_skiplist_entry, free_skiplist_entry_cleanup)
680         (make_free_skiplist_entry_cleanup): Remove.
681         (skip_command, skip_disable_command, add_skiplist_entry)
682         (skip_form_bytes, compile_skip_regexp, skip_command, skip_info)
683         (skip_file_p, skip_gfile_p, skip_function_p, skip_rfunction_p)
684         (function_name_is_marked_for_skip): Update.
685         (skip_delete_command): Update.  Use delete.
686
687 2017-08-09  Jiong Wang  <jiong.wang@arm.com>
688
689         * aarch64-linux-tdep.c: Include "auxv.h" and "elf/common.h".
690         (aarch64_linux_core_read_description): New function.
691         (aarch64_linux_init_abi): Register gdbarch_core_read_description.
692
693 2017-08-09  Pedro Alves  <palves@redhat.com>
694
695         * cp-name-parser.y (cp_comp_to_string): Return a
696         gdb::unique_xmalloc_ptr<char>.
697         * cp-support.c (replace_typedefs_qualified_name)
698         (replace_typedefs): Adjust to use gdb::unique_xmalloc_ptr<char>.
699         (cp_canonicalize_string_full): Use op= instead of explicit
700         convertion.
701         (cp_class_name_from_physname, method_name_from_physname)
702         (cp_func_name, cp_remove_params): Adjust to use
703         gdb::unique_xmalloc_ptr<char>.
704         * cp-support.h (cp_comp_to_string): Return a
705         gdb::unique_xmalloc_ptr<char>.
706         * python/py-type.c (typy_lookup_type): Adjust to use
707         gdb::unique_xmalloc_ptr<char>.
708
709 2017-08-09  H.J. Lu  <hongjiu.lu@intel.com>
710
711         * dwarf2read.c (dwarf2_string_attr): Fix a typo.
712
713 2017-08-09  Alex Lindsay  <alexlindsay239@gmail.com>
714             Yao Qi  <yao.qi@linaro.org>
715
716         * cp-support.c (cp_canonicalize_string_full): Use
717         gdb::unique_xmalloc_ptr<char>.
718         (cp_canonicalize_string): Likewise.
719
720 2017-08-09  Yao Qi  <yao.qi@linaro.org>
721
722         * features/Makefile (WHICH): Remove i386/ non-linux stuff.
723         * regformats/i386/amd64-avx-avx512.dat: Remove.
724         * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Remove.
725         * regformats/i386/amd64-avx-mpx.dat:Remove.
726         * regformats/i386/amd64-avx.dat: Remove.
727         * regformats/i386/amd64-mpx.dat: Remove.
728         * regformats/i386/i386-avx-avx512.dat: Remove.
729         * regformats/i386/i386-avx-mpx-avx512-pku.dat: Remove.
730         * regformats/i386/i386-avx-mpx.dat: Remove.
731         * regformats/i386/i386-mmx.dat: Remove.
732         * regformats/i386/i386-mpx.dat: Remove.
733
734 2017-08-09  Yao Qi  <yao.qi@linaro.org>
735
736         * amd64-tdep.h (tdesc_x32): Remove the declaration.
737         * amd64-tdep.c: Don't include features/i386/x32*.c.
738         (_initialize_amd64_tdep): Don't call initialize_tdesc_x32*
739         functions.
740         * features/Makefile (WHICH): Remove i386/x32, i386/x32-avx,
741         and i386/x32-avx-avx512.
742         (XMLTOC): Remove i386/x32-avx.xml, i386/x32-avx-avx512.xml,
743         and i386/x32.xml.
744         * features/i386/x32-avx-avx512.c: Removed.
745         * features/i386/x32-avx-avx512.xml: Removed.
746         * features/i386/x32-avx.c: Removed.
747         * features/i386/x32-avx.xml: Removed.
748         * features/i386/x32.c: Removed.
749         * features/i386/x32.xml: Removed.
750         * regformats/i386/x32-avx-avx512.dat: Removed.
751         * regformats/i386/x32-avx.dat: Removed.
752         * regformats/i386/x32.dat: Removed.
753
754 2017-08-07  Maciej W. Rozycki  <macro@imgtec.com>
755
756         PR breakpoints/21886
757         * mem-break.c (default_memory_insert_breakpoint): Use
758         `->placed_address' rather than `->reqstd_address' for the
759         breakpoint location.
760
761 2017-08-07  Maciej W. Rozycki  <macro@imgtec.com>
762
763         * arch-utils.c (default_print_insn): Remove arch/mach/endian
764         assertions.
765
766 2017-08-07  Maciej W. Rozycki  <macro@imgtec.com>
767
768         * gdbarch.sh (gdbarch_info): Replace the `tdep_info' member with
769         a union of `tdep_info', `tdesc_data' and `id'.
770         * aarch64-tdep.c (aarch64_gdbarch_init): Use `info.tdesc_data'
771         rather than `info.tdep_info'.
772         * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
773         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
774         * i386-tdep.c (i386_gdbarch_init): Likewise.
775         * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
776         * mips-tdep.c (mips_gdbarch_init): Likewise.
777         * nds32-tdep.c (nds32_gdbarch_init): Likewise.
778         * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
779         * ppc-linux-tdep.c (ppu2spu_sniffer): Use `info.id' rather than
780         `info.tdep_info'.
781         (ppc_linux_init_abi): Use `info.tdesc_data' rather than
782         `info.tdep_info'.
783         * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
784         * spu-multiarch.c (spu_gdbarch): Use `info.id' rather than
785         `info.tdep_info'.
786         * spu-tdep.c (spu_gdbarch_init): Likewise.
787         * gdbarch.h: Regenerate.
788
789 2017-08-07  Leszek Swirski  <leszeks@google.com>
790
791         PR symtab/20899
792         * dwarf2read.c (dwarf2_string_attr): Allow DW_FORM_GNU_strp_alt.
793
794 2017-08-07  Simon Marchi  <simon.marchi@ericsson.com>
795
796         * remote-sim.c (gdbsim_load): Remove char **argv local variable.
797         (gdbsim_open): Rename gdb_argv args object to argv.
798
799 2017-08-05  Tom Tromey  <tom@tromey.com>
800
801         * compile/compile-object-load.c (compile_object_load): Use
802         gdb::unique_xmalloc_ptr.
803         * cli/cli-dump.c (scan_filename): Rename from
804         scan_filename_with_cleanup.  Change return type.
805         (scan_expression): Rename from scan_expression_with_cleanup.
806         Change return type.
807         (dump_memory_to_file, dump_value_to_file, restore_command):
808         Use gdb::unique_xmalloc_ptr.  Update.
809         * cli/cli-cmds.c (find_and_open_script): Use
810         gdb::unique_xmalloc_ptr.
811         * tracefile-tfile.c (tfile_open): Use gdb::unique_xmalloc_ptr.
812         * symmisc.c (maintenance_print_symbols)
813         (maintenance_print_msymbols): Use gdb::unique_xmalloc_ptr.
814         * symfile.c (symfile_bfd_open, generic_load)
815         (add_symbol_file_command, remove_symbol_file_command): Use
816         gdb::unique_xmalloc_ptr.
817         * source.c (openp): Use gdb::unique_xmalloc_ptr.
818         * psymtab.c (maintenance_print_psymbols): Use
819         gdb::unique_xmalloc_ptr.
820         * corelow.c (core_open): Use gdb::unique_xmalloc_ptr.
821         * breakpoint.c (save_breakpoints): Use gdb::unique_xmalloc_ptr.
822         * solib.c (solib_map_sections): Use gdb::unique_xmalloc_ptr.
823         (reload_shared_libraries_1): Likewise.
824
825 2017-08-05  Tom Tromey  <tom@tromey.com>
826
827         * rust-exp.y (rust_op_ptr, set_field): Remove typedefs.
828         (rust_op_vector, rust_set_vector): New typedefs.
829         (current_parser): New global.
830         (work_obstack): Change to pointer type.  Update all users.
831         (rust_ast, pstate): Remove globals.
832         (struct rust_parser): New.
833         (%union) <params, field_inits>: Change type.
834         (start, tuple_expr, unit_expr, struct_expr_list, literal)
835         (field_expr, expr_list, maybe_expr_list, type_list): Update.
836         (ast_call_ish, ast_path, ast_function_type, ast_tuple_type)
837         (convert_params_to_types, convert_params_to_expression): Change
838         type of "params".
839         (ast_string): Change type of "fields".
840         (rust_parse): Make a rust_parser.  Remove cleanups.
841         (rust_lex_tests): Make and install an auto_obstack.
842
843 2017-08-04  Yao Qi  <yao.qi@linaro.org>
844
845         * configure.srv (ipa_x32_linux_regobj): New.
846         * linux-amd64-ipa.c (get_ipa_tdesc): Use X86_TDESC_AVX_AVX512
847         instead of X86_TDESC_AVX512.
848         (initialize_low_tracepoint): Call
849         init_registers_x32_avx_avx512_linux.
850
851 2017-08-04  Yao Qi  <yao.qi@linaro.org>
852
853         * utils.h (gdb_argv): Add namespace std for nullptr_t.
854
855 2017-08-03  Ruslan Kabatsayev  <b7.10110111@gmail.com>
856
857         * MAINTAINERS (Write After Approval): Add Ruslan Kabatsayev.
858
859 2017-08-03  Tom Tromey  <tom@tromey.com>
860
861         * utils.c (make_cleanup_freeargv, do_freeargv, gdb_buildargv):
862         Remove.
863         * utils.h (make_cleanup_freeargv, gdb_buildargv): Remove.
864
865 2017-08-03  Tom Tromey  <tom@tromey.com>
866
867         * python/py-param.c (compute_enum_values): Use gdb_argv.
868
869 2017-08-03  Tom Tromey  <tom@tromey.com>
870
871         * utils.h (struct gdb_argv_deleter): New.
872         (gdb_argv): New class.
873         * utils.c (gdb_argv::reset): New method.
874         * tracepoint.c (delete_trace_variable_command): Use gdb_argv.
875         * tracefile.c (tsave_command): Use gdb_argv.
876         * top.c (new_ui_command): Use gdb_argv.
877         * symmisc.c (maintenance_print_symbols)
878         (maintenance_print_msymbols, maintenance_expand_symtabs): Use gdb_argv.
879         * symfile.c (symbol_file_command, generic_load)
880         (remove_symbol_file_command): Use gdb_argv.
881         * stack.c (backtrace_command): Use gdb_argv.
882         * source.c (add_path, show_substitute_path_command)
883         (unset_substitute_path_command, set_substitute_path_command):
884         Use gdb_argv.
885         * skip.c (skip_command): Use gdb_argv.  Use gdb_buildargv.
886         * ser-mingw.c (pipe_windows_open): Use gdb_argv.
887         * remote.c (extended_remote_run, remote_put_command)
888         (remote_get_command, remote_delete_command): Use gdb_argv.
889         * remote-sim.c (gdbsim_load, gdbsim_create_inferior)
890         (gdbsim_open): Use gdb_argv.
891         * python/py-cmd.c (gdbpy_string_to_argv): Use gdb_argv.
892         * psymtab.c (maintenance_print_psymbols): Use gdb_argv.
893         * procfs.c (procfs_info_proc): Use gdb_argv.
894         * interps.c (interpreter_exec_cmd): Use gdb_argv.
895         * infrun.c (handle_command): Use gdb_argv.
896         * inferior.c (add_inferior_command, clone_inferior_command):
897         Use gdb_argv.
898         * guile/scm-string.c (gdbscm_string_to_argv): Use gdb_argv.
899         * exec.c (exec_file_command): Use gdb_argv.
900         * cli/cli-cmds.c (alias_command): Use gdb_argv.
901         * compile/compile.c (build_argc_argv): Use gdb_argv.
902
903 2017-08-03  Tom Tromey  <tom@tromey.com>
904
905         * python/python.c (gdbpy_decode_line): Use unique_xmalloc_ptr.
906
907 2017-08-03  Tom Tromey  <tom@tromey.com>
908
909         * python/python.c (compute_python_string): Return std::string.
910         (gdbpy_eval_from_control_command): Update.
911         (do_start_initialization): Use std::string.
912         * python/py-varobj.c (py_varobj_iter_next): Use string_printf, not
913         xstrprintf.
914         * python/py-breakpoint.c (local_setattro): Use string_printf, not
915         xstrprintf.
916
917 2017-08-03  Tom Tromey  <tom@tromey.com>
918
919         * top.h (do_restore_instream_cleanup): Remove.
920         * top.c (do_restore_instream_cleanup): Remove.
921         (read_command_file): Use scoped_restore.
922         * cli/cli-script.c (execute_user_command): Use scoped_restore.
923
924 2017-08-03  Tom Tromey  <tom@tromey.com>
925
926         * cli/cli-script.c (execute_user_command)
927         (execute_control_command): Use scoped_restore.
928
929 2017-08-03  Tom Tromey  <tom@tromey.com>
930
931         * cli/cli-script.c (do_restore_user_call_depth): Remove.
932         (execute_user_command): Remove user_call_depth; use
933         user_args_stack's size instead.
934
935 2017-08-03  Tom Tromey  <tom@tromey.com>
936
937         * top.h (in_user_command): Remove.
938         * top.c (in_user_command): Remove.
939         * cli/cli-script.c (do_restore_user_call_depth)
940         (execute_user_command): Update.
941
942 2017-08-03  Tom Tromey  <tom@tromey.com>
943
944         * valops.c (search_struct_method): Use gdb::byte_vector.
945         * valarith.c (value_concat): Use std::vector.
946         * target.c (memory_xfer_partial): Use gdb::byte_vector.
947         (simple_search_memory): Likewise.
948         * printcmd.c (find_string_backward): Use gdb::byte_vector.
949         * mi/mi-main.c (mi_cmd_data_write_memory): Use gdb::byte_vector.
950         * gcore.c (gcore_copy_callback): Use gdb::byte_vector.
951         * elfread.c (elf_rel_plt_read): Use std::string.
952         * cp-valprint.c (cp_print_value): Use gdb::byte_vector.
953         * cli/cli-dump.c (restore_section_callback): Use
954         gdb::byte_vector.
955
956 2017-08-03  Tom Tromey  <tom@tromey.com>
957
958         * jit.c (jit_reader_load_command): Use unique_xmalloc_ptr.
959
960 2017-08-03  Tom Tromey  <tom@tromey.com>
961
962         * tui/tui-regs.c (tui_restore_gdbout): Remove.
963         (tui_register_format): Use scoped_restore.
964
965 2017-08-03  Tom Tromey  <tom@tromey.com>
966
967         * reverse.c (exec_direction_default): Remove.
968         (exec_reverse_once): Use scoped_restore.
969         * remote.c (restore_remote_timeout): Remove.
970         (remote_flash_erase, remote_flash_write, remote_flash_done)
971         (readchar, remote_serial_write): Use scoped_restore.
972         * cli/cli-script.c (struct source_cleanup_lines_args)
973         (source_cleanup_lines): Remove.
974         (script_from_file): Use scoped_restore.
975         * cli/cli-cmds.c (source_verbose_cleanup): Remove.
976         (source_command): Use scoped_restore.
977
978 2017-08-03  Tom Tromey  <tom@tromey.com>
979
980         * utils.h (make_cleanup_free_so): Remove.
981         * utils.c (do_free_so, make_cleanup_free_so): Remove.
982         * solist.h (struct so_deleter): New.
983         (so_list_up): New typedef.
984         * solib-svr4.c (svr4_read_so_list): Use so_list_up.
985
986 2017-08-03  Tom Tromey  <tom@tromey.com>
987
988         * utils.h (make_cleanup_restore_current_language): Remove.
989         * utils.c (do_restore_current_language)
990         (make_cleanup_restore_current_language): Remove.
991         * parse.c (parse_exp_in_context_1)
992         (parse_expression_with_language): Use
993         scoped_restore_current_language.
994         * mi/mi-main.c (mi_cmd_execute): Use
995         scoped_restore_current_language.
996         * language.h (scoped_restore_current_language): New class.
997
998 2017-08-03  Tom Tromey  <tom@tromey.com>
999
1000         * compile/compile.c (cleanup_unlink_file): Remove.
1001         (compile_to_object): Use gdb::unlinker.
1002         (eval_compile_command): Likewise.
1003
1004 2017-08-03  Tom Tromey  <tom@tromey.com>
1005
1006         * utils.h (make_cleanup_fclose): Remove.
1007         * utils.c (do_fclose_cleanup, make_cleanup_fclose): Remove.
1008
1009 2017-08-03  Tom Tromey  <tom@tromey.com>
1010
1011         * top.c (open_terminal_stream): Return gdb_file_up.
1012         (new_ui_command): Update.
1013
1014 2017-08-03  Tom Tromey  <tom@tromey.com>
1015
1016         * source.c (print_source_lines_base, forward_search_command)
1017         (reverse_search_command): Use gdb_file_up.
1018
1019 2017-08-03  Tom Tromey  <tom@tromey.com>
1020
1021         * fbsd-nat.c (fbsd_find_memory_regions): Update.
1022
1023 2017-08-03  Tom Tromey  <tom@tromey.com>
1024
1025         * cli/cli-cmds.c (find_and_open_script): Change return type.
1026         Remove "streamp" and "full_path" parameters.
1027         (source_script_with_search): Update.
1028         * auto-load.c (source_script_file): Update.
1029         * cli/cli-cmds.h (find_and_open_script): Change type.
1030         (open_script): New struct.
1031
1032 2017-08-03  Tom Tromey  <tom@tromey.com>
1033
1034         * xml-support.c (xml_fetch_content_from_file): Update.
1035         * ui-file.c (stdio_file::open): Update.
1036         * tracefile-tfile.c (tfile_start): Update.
1037         * remote.c (remote_file_put, remote_file_get): Update.
1038         * nat/linux-procfs.c (linux_proc_get_int)
1039         (linux_proc_pid_get_state, linux_proc_tid_get_name): Update.
1040         * nat/linux-osdata.c (linux_common_core_of_thread): Update.
1041         (command_from_pid, commandline_from_pid, linux_xfer_osdata_cpus)
1042         (print_sockets, linux_xfer_osdata_shm, linux_xfer_osdata_sem)
1043         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Update.
1044         * nat/linux-btrace.c (linux_determine_kernel_start): Update.
1045         * linux-nat.c (linux_proc_pending_signals): Update.
1046         * dwarf2read.c (write_psymtabs_to_index): Use gdb_file_up.
1047         (file_closer): Remove.
1048         * compile/compile.c (compile_to_object): Update.
1049         * common/filestuff.h (struct gdb_file_deleter): New.
1050         (gdb_file_up): New typedef.
1051         (gdb_fopen_cloexec): Change return type.
1052         * common/filestuff.c (gdb_fopen_cloexec): Return gdb_file_up.
1053         * cli/cli-dump.c (fopen_with_cleanup): Remove.
1054         (dump_binary_file, restore_binary_file): Update.
1055         * auto-load.c (auto_load_objfile_script_1): Update.
1056
1057 2017-08-03  Tom Tromey  <tom@tromey.com>
1058
1059         * tracepoint.c (tvariables_info_1): Use ui_out_emit_table.
1060         (info_static_tracepoint_markers_command): Likewise.
1061         * solib.c (info_sharedlibrary_command): Use ui_out_emit_table.
1062         * skip.c (skip_info): Use ui_out_emit_table.
1063         * progspace.c (print_program_space): Use ui_out_emit_table.
1064         * osdata.c (info_osdata): Use ui_out_emit_table.
1065         * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Use
1066         ui_out_emit_table.
1067         * linux-thread-db.c (info_auto_load_libthread_db): Use
1068         ui_out_emit_table.
1069         * inferior.c (print_inferior): Use ui_out_emit_table.
1070         * gdb_bfd.c (maintenance_info_bfds): Use ui_out_emit_table.
1071         * breakpoint.c (breakpoint_1): Use ui_out_emit_table.
1072         * auto-load.c (auto_load_info_scripts): Use ui_out_emit_table.
1073         * ada-tasks.c (print_ada_task_info): Use ui_out_emit_table.
1074         * ui-out.h (class ui_out_emit_table): New.
1075
1076 2017-08-02  Maciej W. Rozycki  <macro@imgtec.com>
1077
1078         * mips-tdep.c (mips_fpu_type_str): New function.
1079         (mips_dump_tdep): Call it.
1080
1081 2017-08-01  Maciej W. Rozycki  <macro@imgtec.com>
1082
1083         * mips-tdep.c (mips_gdbarch_init): Use MIPS_FPU_TYPE to access
1084         `->mips_fpu_type'.
1085
1086 2017-07-31  Xavier Roirand  <roirand@adacore.com>
1087
1088         * solib-darwin.c (DYLD_VERSION_MAX): Increase value.
1089
1090 2017-07-27  Xavier Roirand  <roirand@adacore.com>
1091
1092         * MAINTAINERS (Write After Approval): Add Xavier Roirand.
1093
1094 2017-07-26  Yao Qi  <yao.qi@linaro.org>
1095
1096         * cli/cli-cmds.c (maintenancechecklist): New variable.
1097         * gdbcmd.h (maintenancechecklist): Declare it.
1098         * i386-linux-tdep.c (_initialize_i386_linux_tdep) [GDB_SELF_TEST]:
1099         Call i386_linux_read_description with different masks.
1100         * maint.c (maintenance_check_command): New function.
1101         (_initialize_maint_cmds): Call add_prefix_cmd.
1102         * target-descriptions.c (tdesc_reg): override operator != and ==.
1103         (tdesc_type): Likewise.
1104         (tdesc_feature): Likewise.
1105         (target_desc): Likewise.
1106         [GDB_SELF_TEST] (selftests::record_xml_tdesc): New function.
1107         (maintenance_check_xml_descriptions): New function.
1108         (_initialize_target_descriptions) Add command "xml-descriptions".
1109         * target-descriptions.h (selftests::record_xml_tdesc): Declare.
1110
1111 2017-07-26  Yao Qi  <yao.qi@linaro.org>
1112
1113         * i386-linux-tdep.c: Don't include features/i386/i386-*linux.c.
1114         Include features/i386/32bit-*.c.
1115         (i386_linux_read_description): Generate target description if it
1116         doesn't exist.
1117         (_initialize_i386_linux_tdep): Don't call _initialize_tdesc_i386
1118         functions.
1119         * features/i386/32bit-linux.c: Re-generated.
1120         * features/i386/32bit-sse.c: Likewise.
1121         * target-descriptions.c (print_c_feature::visit): Print code to
1122         set register number if needed.
1123         (print_c_feature) <m_next_regnum>: New field.
1124
1125 2017-07-26  Yao Qi  <yao.qi@linaro.org>
1126
1127         * features/Makefile (CFILES): Rename with TDESC_CFILES.
1128         (FEATURE_XMLFILES): New.
1129         (FEATURE_CFILES): New.
1130         New rules.
1131         (clean-cfiles): Remove generated c files.
1132         * features/i386/32bit-avx.c: Generated.
1133         * features/i386/32bit-avx512.c: Generated.
1134         * features/i386/32bit-core.c: Generated.
1135         * features/i386/32bit-linux.c: Generated.
1136         * features/i386/32bit-mpx.c: Generated.
1137         * features/i386/32bit-pkeys.c: Generated.
1138         * features/i386/32bit-sse.c: Generated.
1139         * target-descriptions.c: Include algorithm.
1140         (tdesc_element_visitor): Add method visit_end.
1141         (print_c_tdesc): Implement visit_end.
1142         (print_c_tdesc:: m_filename_after_features): Move it to
1143         protected.
1144         (print_c_feature): New class.
1145         (maint_print_c_tdesc_cmd): Use print_c_feature if XML file
1146         name starts with "i386/32bit-".
1147
1148 2017-07-26  Yao Qi  <yao.qi@linaro.org>
1149
1150         * target-descriptions.c (tdesc_element_visitor): New class.
1151         (tdesc_element): New class.
1152         (tdesc_reg): Inherit from tdesc_element.
1153         (tdesc_reg::accept): New function.
1154         (tdesc_type): Inherit from tdesc_element.
1155         (tdesc_type::accept): New function.
1156         (tdesc_feature): Inherit from tdesc_element.
1157         (tdesc_feature::accept): New function.
1158         (target_desc): Inherit from tdesc_element.
1159         (target_desc::target_desc): New.
1160         (target_desc::~target_desc): New.
1161         (target_desc::accept): New.
1162         (allocate_target_description): Use new.
1163         (free_target_description): Use delete.
1164         (print_c_tdesc): New class.
1165         (maint_print_c_tdesc_cmd): Adjust.
1166
1167         * features/aarch64.c: Re-generated.
1168         * features/arc-arcompact.c: Re-generated.
1169         * features/arc-v2.c: Re-generated.
1170         * features/arm/arm-with-iwmmxt.c: Re-generated.
1171         * features/arm/arm-with-m.c: Re-generated.
1172         * features/arm/arm-with-m-fpa-layout.c: Re-generated.
1173         * features/arm/arm-with-m-vfp-d16.c: Re-generated.
1174         * features/arm/arm-with-neon.c: Re-generated.
1175         * features/arm/arm-with-vfpv2.c: Re-generated.
1176         * features/arm/arm-with-vfpv3.c: Re-generated.
1177         * features/i386/amd64-avx-avx512.c: Re-generated.
1178         * features/i386/amd64-avx-avx512-linux.c: Re-generated.
1179         * features/i386/amd64-avx.c: Re-generated.
1180         * features/i386/amd64-avx-linux.c: Re-generated.
1181         * features/i386/amd64-avx-mpx-avx512-pku.c: Re-generated.
1182         * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
1183         * features/i386/amd64-avx-mpx.c: Re-generated.
1184         * features/i386/amd64-avx-mpx-linux.c: Re-generated.
1185         * features/i386/amd64.c: Re-generated.
1186         * features/i386/amd64-linux.c: Re-generated.
1187         * features/i386/amd64-mpx.c: Re-generated.
1188         * features/i386/amd64-mpx-linux.c: Re-generated.
1189         * features/i386/i386-avx-avx512.c: Re-generated.
1190         * features/i386/i386-avx-avx512-linux.c: Re-generated.
1191         * features/i386/i386-avx.c: Re-generated.
1192         * features/i386/i386-avx-linux.c: Re-generated.
1193         * features/i386/i386-avx-mpx-avx512-pku.c: Re-generated.
1194         * features/i386/i386-avx-mpx-avx512-pku-linux.c: Re-generated.
1195         * features/i386/i386-avx-mpx.c: Re-generated.
1196         * features/i386/i386-avx-mpx-linux.c: Re-generated.
1197         * features/i386/i386.c: Re-generated.
1198         * features/i386/i386-linux.c: Re-generated.
1199         * features/i386/i386-mmx.c: Re-generated.
1200         * features/i386/i386-mmx-linux.c: Re-generated.
1201         * features/i386/i386-mpx.c: Re-generated.
1202         * features/i386/i386-mpx-linux.c: Re-generated.
1203         * features/i386/x32-avx-avx512.c: Re-generated.
1204         * features/i386/x32-avx-avx512-linux.c: Re-generated.
1205         * features/i386/x32-avx.c: Re-generated.
1206         * features/i386/x32-avx-linux.c: Re-generated.
1207         * features/i386/x32.c: Re-generated.
1208         * features/i386/x32-linux.c: Re-generated.
1209         * features/microblaze.c: Re-generated.
1210         * features/microblaze-with-stack-protect.c: Re-generated.
1211         * features/mips64-dsp-linux.c: Re-generated.
1212         * features/mips64-linux.c: Re-generated.
1213         * features/mips-dsp-linux.c: Re-generated.
1214         * features/mips-linux.c: Re-generated.
1215         * features/nds32.c: Re-generated.
1216         * features/nios2.c: Re-generated.
1217         * features/nios2-linux.c: Re-generated.
1218         * features/rs6000/powerpc-32.c: Re-generated.
1219         * features/rs6000/powerpc-32l.c: Re-generated.
1220         * features/rs6000/powerpc-403.c: Re-generated.
1221         * features/rs6000/powerpc-403gc.c : Re-generated.
1222         * features/rs6000/powerpc-405.c: Re-generated.
1223         * features/rs6000/powerpc-505.c: Re-generated.
1224         * features/rs6000/powerpc-601.c: Re-generated.
1225         * features/rs6000/powerpc-602.c: Re-generated.
1226         * features/rs6000/powerpc-603.c: Re-generated.
1227         * features/rs6000/powerpc-604.c: Re-generated.
1228         * features/rs6000/powerpc-64.c: Re-generated.
1229         * features/rs6000/powerpc-64l.c: Re-generated.
1230         * features/rs6000/powerpc-7400.c: Re-generated.
1231         * features/rs6000/powerpc-750.c: Re-generated.
1232         * features/rs6000/powerpc-860.c: Re-generated.
1233         * features/rs6000/powerpc-altivec32.c: Re-generated.
1234         * features/rs6000/powerpc-altivec32l.c: Re-generated.
1235         * features/rs6000/powerpc-altivec64.c: Re-generated.
1236         * features/rs6000/powerpc-altivec64l.c: Re-generated.
1237         * features/rs6000/powerpc-cell32l.c: Re-generated.
1238         * features/rs6000/powerpc-cell64l.c: Re-generated.
1239         * features/rs6000/powerpc-e500.c: Re-generated.
1240         * features/rs6000/powerpc-e500l.c: Re-generated.
1241         * features/rs6000/powerpc-isa205-32l.c: Re-generated.
1242         * features/rs6000/powerpc-isa205-64l.c: Re-generated.
1243         * features/rs6000/powerpc-isa205-altivec32l.c: Re-generated.
1244         * features/rs6000/powerpc-isa205-altivec64l.c: Re-generated.
1245         * features/rs6000/powerpc-isa205-vsx32l.c: Re-generated.
1246         * features/rs6000/powerpc-isa205-vsx64l.c: Re-generated.
1247         * features/rs6000/powerpc-vsx32.c: Re-generated.
1248         * features/rs6000/powerpc-vsx32l.c: Re-generated.
1249         * features/rs6000/powerpc-vsx64.c: Re-generated.
1250         * features/rs6000/powerpc-vsx64l.c: Re-generated.
1251         * features/rs6000/rs6000.c: Re-generated.
1252         * features/s390-linux32.c: Re-generated.
1253         * features/s390-linux32v1.c: Re-generated.
1254         * features/s390-linux32v2.c: Re-generated.
1255         * features/s390-linux64.c: Re-generated.
1256         * features/s390-linux64v1.c: Re-generated.
1257         * features/s390-linux64v2.c: Re-generated.
1258         * features/s390-te-linux64.c: Re-generated.
1259         * features/s390-tevx-linux64.c: Re-generated.
1260         * features/s390-vx-linux64.c: Re-generated.
1261         * features/s390x-linux64.c: Re-generated.
1262         * features/s390x-linux64v1.c: Re-generated.
1263         * features/s390x-linux64v2.c: Re-generated.
1264         * features/s390x-te-linux64.c: Re-generated.
1265         * features/s390x-tevx-linux64.c: Re-generated.
1266         * features/s390x-vx-linux64.c: Re-generated.
1267         * features/sparc/sparc32-solaris.c: Re-generated.
1268         * features/sparc/sparc64-solaris.c: Re-generated.
1269         * features/tic6x-c62x.c: Re-generated.
1270         * features/tic6x-c62x-linux.c: Re-generated.
1271         * features/tic6x-c64x.c: Re-generated.
1272         * features/tic6x-c64x-linux.c: Re-generated.
1273         * features/tic6x-c64xp.c: Re-generated.
1274         * features/tic6x-c64xp-linux.c: Re-generated.
1275
1276 2017-07-26  Yao Qi  <yao.qi@linaro.org>
1277
1278         * i386-linux-tdep.c (i386_linux_read_description): New function.
1279         (i386_linux_core_read_description): Call
1280         i386_linux_read_description.
1281         * i386-linux-tdep.h (i386_linux_read_description): Declare.
1282         (tdesc_i386_linux, tdesc_i386_mmx_linux): Remove declarations.
1283         (tdesc_i386_avx_linux, tdesc_i386_mpx_linux): Likewise
1284         (tdesc_i386_avx_mpx_linux, tdesc_i386_avx_avx512_linux): Likewise.
1285         (tdesc_i386_avx_mpx_avx512_pku_linux): Likewise.
1286         * x86-linux-nat.c (x86_linux_read_description): Call
1287         i386_linux_read_description.
1288
1289 2017-07-26  Yao Qi  <yao.qi@linaro.org>
1290
1291         * NEWS: Mention it.
1292         * features/Makefile (%.c: %.xml): Pass the xml file name to
1293         command "maint print c-tdesc".
1294         * target-descriptions.c (maint_print_c_tdesc_cmd): Get file
1295         name from 'arg'.
1296
1297 2017-07-26  Yao Qi  <yao.qi@linaro.org>
1298
1299         * target-descriptions.c (target_desc): Add ctor and dtor.  Do
1300         in-class initialization.
1301         (tdesc_create_feature): Call new instead of XCNEW.
1302         (free_target_description): Ue delete.
1303
1304 2017-07-25  John Baldwin  <jhb@FreeBSD.org>
1305
1306         * configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo.
1307
1308 2017-07-25  Yao Qi  <yao.qi@linaro.org>
1309
1310         * amd64-tdep.c (amd64_init_abi): Make argument default_tdesc
1311         constant.
1312         (amd64_x32_init_abi): Likewise.
1313         * amd64-tdep.h (amd64_init_abi): Update declaration.
1314         (amd64_x32_init_abi): Likewise.
1315
1316 2017-07-25  Yao Qi  <yao.qi@linaro.org>
1317
1318         PR tdep/21717
1319         * arm-linux-nat.c (arm_linux_fetch_inferior_registers): Update
1320         condition for FPSCR.
1321         (arm_linux_store_inferior_registers): Likewise.
1322
1323 2017-07-22  Tom Tromey  <tom@tromey.com>
1324
1325         * break-catch-syscall.c (struct catch_syscall_inferior_data)
1326         <syscalls_counts>: Now a std::vector.
1327         (get_catch_syscall_inferior_data): Use "new".
1328         (catch_syscall_inferior_data_cleanup): Use "delete".
1329         (insert_catch_syscall, remove_catch_syscall)
1330         (clear_syscall_counts): Update.
1331
1332 2017-07-22  Tom Tromey  <tom@tromey.com>
1333
1334         * break-catch-syscall.c (syscall_catchpoint)
1335         <syscalls_to_be_caught>: Now a std::vector<int>
1336         (~syscall_catchpoint): Remove.
1337         (insert_catch_syscall, remove_catch_syscall)
1338         (breakpoint_hit_catch_syscall, print_one_catch_syscall)
1339         (print_mention_catch_syscall, print_recreate_catch_syscall):
1340         Update.
1341         (create_syscall_event_catchpoint): Change type of "filter"
1342         parameter.
1343         (catch_syscall_split_args): Return a std::vector.
1344         (catch_syscall_command_1, catching_syscall_number_1): Update.
1345
1346 2017-07-22  Tom Tromey  <tom@tromey.com>
1347
1348         * break-catch-throw.c (struct exception_catchpoint)
1349         <exception_rx>: Now a std::string.
1350         (~exception_catchpoint): Remove.
1351         (print_one_detail_exception_catchpoint): Update.
1352         (handle_gnu_v3_exceptions): Change type of except_rx.
1353         (extract_exception_regexp): Return a std::string.
1354         (catch_exception_command_1): Update.
1355
1356 2017-07-22  Tom Tromey  <tom@tromey.com>
1357
1358         * break-catch-sig.c (gdb_signal_type): Remove typedef.
1359         (struct signal_catchpoint) <signals_to_be_caught>: Now a
1360         std::vector.
1361         <catch_all>: Now a bool.
1362         (~signal_catchpoint): Remove.
1363         (signal_catchpoint_insert_location)
1364         (signal_catchpoint_remove_location)
1365         (signal_catchpoint_breakpoint_hit, signal_catchpoint_print_one)
1366         (signal_catchpoint_print_mention)
1367         (signal_catchpoint_print_recreate)
1368         (signal_catchpoint_explains_signal): Update.
1369         (create_signal_catchpoint): Change type of "filter" and
1370         "catch_all".
1371         (catch_signal_split_args): Return a std::vector.  Change type of
1372         "catch_all".
1373         (catch_signal_command): Update.
1374
1375 2017-07-20  Pedro Alves  <palves@redhat.com>
1376
1377         * ada-lang.c (ada_language_defn): Make extern.
1378         (_initialize_ada_language): Remove add_language call.
1379         * c-lang.c (c_language_defn, cplus_language_defn)
1380         (asm_language_defn, minimal_language_defn): Make extern.
1381         (_initialize_c_language): Delete.
1382         * completer.c (compare_cstrings): Delete, moved to utils.h.
1383         * d-lang.c (d_language_defn): Make extern.
1384         (_initialize_d_language): Remove add_language calls.
1385         * defs.h (enum language): Add comment.
1386         * f-lang.c (f_language_defn): Make extern.
1387         (_initialize_f_language): Remove add_language call.
1388         * go-lang.c (go_language_defn): Make extern.
1389         (_initialize_go_language): Remove add_language call.
1390         * language.c: Include <algorithm>.
1391         (languages): Redefine as const array.
1392         (languages_size, languages_allocsize, DEFAULT_ALLOCSIZE): Delete.
1393         (set_language_command): Handle "local".  Use for-range loop.
1394         (set_language): Remove loop.
1395         (language_enum): Rewrite.
1396         (language_def, language_str): Remove loops.
1397         (add_language): Delete.
1398         (add_set_language_command): New, based on add_languages.
1399         (skip_language_trampoline): Adjust.
1400         (local_language_defn): Delete.
1401         (language_gdbarch_post_init): Adjust.
1402         (_initialize_language): Remove add_language calls.  Call
1403         add_set_language_command.
1404         * language.h (add_language): Delete.
1405         (auto_language_defn)
1406         (unknown_language_defn, minimal_language_defn, ada_language_defn)
1407         (asm_language_defn, c_language_defn, cplus_language_defn)
1408         (d_language_defn, f_language_defn, go_language_defn)
1409         (m2_language_defn, objc_language_defn, opencl_language_defn)
1410         (pascal_language_defn, rust_language_defn): Declare.
1411         * m2-lang.c (m2_language_defn): Make extern.
1412         (_initialize_m2_language): Remove add_language call.
1413         * objc-lang.c (objc_language_defn): Make extern.
1414         (_initialize_objc_language): Remove add_language call.
1415         * opencl-lang.c (opencl_language_defn): Make extern.
1416         (_initialize_opencl_language): Remove add_language call.
1417         * p-lang.c (pascal_language_defn): Make extern.
1418         (_initialize_pascal_language): Delete.
1419         * rust-lang.c (rust_language_defn): Make extern.
1420         (_initialize_rust_language): Delete.
1421         * utils.h (compare_cstrings): New static inline function.
1422
1423 2017-07-20  Pedro Alves  <palves@redhat.com>
1424
1425         * ada-lang.c (ada_to_fixed_type_1): Adjust.
1426         (get_var_value): Constify parameters.
1427         (get_int_var_value): Change prototype.
1428         (to_fixed_range_type): Adjust.
1429         * ada-lang.h (get_int_var_value): Change prototype.
1430
1431 2017-07-20  Pedro Alves  <palves@redhat.com>
1432
1433         * dwarf2read.c (dw2_lookup_symbol): Use
1434         SYMBOL_MATCHES_SEARCH_NAME.
1435         * psymtab.c (psym_lookup_symbol): Use SYMBOL_MATCHES_SEARCH_NAME.
1436
1437 2017-07-20  Pedro Alves  <palves@redhat.com>
1438
1439         * block.c (block_iter_name_step, block_iter_name_first)
1440         (block_iter_name_next): Delete.
1441         (block_lookup_symbol_primary): Adjust to use
1442         dict_iter_match_first/dict_iter_match_next.
1443         * block.h (block_iter_name_first, block_iter_name_next): Delete
1444         declarations.
1445         (ALL_BLOCK_SYMBOLS_WITH_NAME): Adjust to use
1446         dict_iter_match_first/dict_iter_match_next.
1447
1448 2017-07-20  Pedro Alves  <palves@redhat.com>
1449
1450         * cp-support.c (cp_find_first_component_aux): Add missing case for
1451         end of string.
1452
1453 2017-07-18  David Blaikie  <dblaikie@gmail.com>
1454
1455         * dwarf2read.c (create_cus_hash_table): Re-add lost initialization
1456         of dwo_cu's dwo_file.
1457
1458 2017-07-18  Yao Qi  <yao.qi@linaro.org>
1459
1460         * remote.c (store_registers_using_G): Remove one line comment.
1461
1462 2017-07-18  Yao Qi  <yao.qi@linaro.org>
1463
1464         * regcache.c (regcache_cpy): Simplify it.
1465         (regcache::cpy_no_passthrough): Remove it.
1466         * regcache.h (cpy_no_passthrough): Remove it.
1467         (regcache_dup, regcache_cpy): Update comments.
1468
1469 2017-07-18  Pedro Alves  <palves@redhat.com>
1470
1471         * remote-sim.c (sim_command_completer): Adjust to work with a
1472         completion_tracker instead of a VEC.
1473
1474 2017-07-17  Pedro Alves  <palves@redhat.com>
1475
1476         * completer.c (complete_source_filenames): New function.
1477         (complete_address_and_linespec_locations): New function.
1478         (location_completer): Use complete_address_and_linespec_locations.
1479         (completion_tracker::build_completion_result): Honor the tracker's
1480         request to suppress append.
1481         * completer.h (completion_tracker::suppress_append_ws)
1482         (completion_tracker::set_suppress_append_ws): New methods.
1483         (completion_tracker::m_suppress_append_ws): New field.
1484         (complete_source_filenames): New declaration.
1485         * linespec.c (linespec_complete_what): New.
1486         (struct ls_parser) <complete_what, completion_word,
1487         completion_quote_char, completion_quote_end, completion_tracker>:
1488         New fields.
1489         (string_find_incomplete_keyword_at_end): New.
1490         (linespec_lexer_lex_string): Record quote char.  If in completion
1491         mode, don't throw.
1492         (linespec_lexer_consume_token): Advance the completion word point.
1493         (linespec_lexer_peek_token): Save/restore completion info.
1494         (save_stream_and_consume_token): New.
1495         (set_completion_after_number): New.
1496         (linespec_parse_basic): Set what to complete next depending on
1497         token.  Handle function and label completions specially.
1498         (parse_linespec): Disable objc shortcut in completion mode.  Set
1499         what to complete next depending on token type.  Skip keyword if in
1500         completion mode.
1501         (complete_linespec_component, linespec_complete): New.
1502         * linespec.h (linespec_complete): Declare.
1503
1504 2017-07-17  Pedro Alves  <palves@redhat.com>
1505
1506         * linespec.c (linespec_lexer_lex_string, find_toplevel_char):
1507         Handle 'operator<' / 'operator<<'.
1508
1509 2017-07-17  Pedro Alves  <palves@redhat.com>
1510
1511         * completer.c (collect_explicit_location_matches): Handle
1512         MATCH_LABEL.
1513         (convert_explicit_location_to_linespec): New, factored out from
1514         ...
1515         (convert_explicit_location_to_sals): ... this.
1516         (complete_label): New.
1517         (linespec_complete_label, find_label_symbols_in_block): New.
1518         (find_label_symbols): Add completion_mode parameter and adjust to
1519         call find_label_symbols_in_block.
1520         * linespec.h (linespec_complete_label): Declare.
1521
1522 2017-07-17  Pedro Alves  <palves@redhat.com>
1523
1524         * ada-lang.c (ada_collect_symbol_completion_matches): Add
1525         complete_symbol_mode parameter.
1526         * cli/cli-cmds.c (complete_command): Get the completion result out
1527         of the handle_brkchars tracker if used a custom word point.
1528         * completer.c: Include "linespec.h".
1529         (enum explicit_location_match_type) <MATCH_LINE>: New enumerator.
1530         (advance_to_expression_complete_word_point): New.
1531         (completion_tracker::completes_to_completion_word): New.
1532         (complete_files_symbols): Pass down
1533         complete_symbol_mode::EXPRESSION.
1534         (explicit_options, probe_options): New.
1535         (collect_explicit_location_matches): Complete on the
1536         explictit_loc->foo instead of word.  Use
1537         linespec_complete_function.  Handle MATCH_LINE.  Handle offering
1538         keyword and options completions.
1539         (backup_text_ptr): Delete.
1540         (skip_keyword): New.
1541         (complete_explicit_location): Remove 'word' parameter.  Add
1542         language, quoted_arg_start and quoted_arg_end parameters.
1543         Rewrite, parsing left to right.
1544         (location_completer): Rewrite.
1545         (location_completer_handle_brkchars): New function.
1546         (symbol_completer): Pass down complete_symbol_mode::EXPRESSION.
1547         (enum complete_line_internal_reason): Adjust comments.
1548         (completion_tracker::discard_completions): New.
1549         (completer_handle_brkchars_func_for_completer): Handle
1550         location_completer.
1551         (gdb_custom_word_point_brkchars)
1552         (gdb_org_rl_basic_quote_characters): New.
1553         (gdb_completion_word_break_characters_throw)
1554         (completion_find_completion_word): Handle trackers that use a
1555         custom word point.
1556         (completion_tracker::advance_custom_word_point_by): New.
1557         (completion_tracker::build_completion_result): Don't rely on
1558         readline appending the quote char.
1559         (gdb_rl_attempted_completion_function_throw): Handle trackers that
1560         use a custom word point.
1561         (gdb_rl_attempted_completion_function): Restore
1562         rl_basic_quote_characters.
1563         * completer.h (class completion_tracker): Extend intro comment.
1564         (completion_tracker::set_quote_char)
1565         (completion_tracker::quote_char)
1566         (completion_tracker::set_use_custom_word_point)
1567         (completion_tracker::use_custom_word_point)
1568         (completion_tracker::custom_word_point)
1569         (completion_tracker::set_custom_word_point)
1570         (completion_tracker::advance_custom_word_point_by)
1571         (completion_tracker::completes_to_completion_word)
1572         (completion_tracker::discard_completions): New methods.
1573         (completion_tracker::m_quote_char)
1574         (completion_tracker::m_use_custom_word_point)
1575         (completion_tracker::m_custom_word_point): New fields.
1576         (advance_to_expression_complete_word_point): Declare.
1577         * f-lang.c (f_collect_symbol_completion_matches): Add
1578         complete_symbol_mode parameter.
1579         * language.h (struct language_defn)
1580         <la_collect_symbol_completion_matches>: Add complete_symbol_mode
1581         parameter.
1582         * linespec.c (linespec_keywords): Add NULL terminator.  Make extern.
1583         (linespec_complete_function): New function.
1584         (linespec_lexer_lex_keyword): Adjust.
1585         * linespec.h (linespec_keywords, linespec_complete_function): New
1586         declarations.
1587         * location.c (find_end_quote): New function.
1588         (explicit_location_lex_one): Add explicit_completion_info
1589         parameter.  Save quoting info.  Don't throw if being called for
1590         completion.  Don't handle Ada operators here.
1591         (is_cp_operator, skip_op_false_positives, first_of)
1592         (explicit_location_lex_one_function): New function.
1593         (string_to_explicit_location): Replace 'dont_throw' parameter with
1594         an explicit_completion_info pointer parameter.  Handle it.  Don't
1595         use explicit_location_lex_one to lex function names.  Use
1596         explicit_location_lex_one_function instead.
1597         * location.h (struct explicit_completion_info): New.
1598         (string_to_explicit_location): Replace 'dont_throw' parameter with
1599         an explicit_completion_info pointer parameter.
1600         * symtab.c (default_collect_symbol_completion_matches_break_on):
1601         Add complete_symbol_mode parameter.  Handle LINESPEC mode.
1602         (default_collect_symbol_completion_matches)
1603         (collect_symbol_completion_matches): Add complete_symbol_mode
1604         parameter.
1605         (collect_symbol_completion_matches_type): Pass down
1606         complete_symbol_mode::EXPRESSION.
1607         (collect_file_symbol_completion_matches): Add complete_symbol_mode
1608         parameter.  Handle LINESPEC mode.
1609         * symtab.h (complete_symbol_mode): New.
1610         (default_collect_symbol_completion_matches_break_on)
1611         (default_collect_symbol_completion_matches)
1612         (collect_symbol_completion_matches)
1613         (collect_file_symbol_completion_matches): Add complete_symbol_mode
1614         parameter.
1615
1616 2017-07-17  Pedro Alves  <palves@redhat.com>
1617
1618         * utils.c (enum class strncmp_iw_mode): New.
1619         (strcmp_iw): Rename to ...
1620         (strncmp_iw_with_mode): ... this.  Add string2_len and mode
1621         parameters.  Handle them.
1622         (strncmp_iw): New.
1623         (strcmp_iw): Reimplement as wrapper around strncmp_iw_with_mode.
1624         * utils.h (strncmp_iw): Declare.
1625         (strcmp_iw): Move describing comments here.
1626
1627 2017-07-17  Pedro Alves  <palves@redhat.com>
1628
1629         * c-exp.y (operator_stoken): Use CP_OPERATOR_LEN and
1630         CP_OPERATOR_STR.
1631         * c-typeprint.c (is_type_conversion_operator): Use
1632         CP_OPERATOR_STR.
1633         * cp-support.c (LENGTH_OF_OPERATOR): Delete.
1634         (cp_find_first_component_aux): Use CP_OPERATOR_STR and
1635         CP_OPERATOR_LEN.
1636         * cp-support.h (CP_OPERATOR_STR, CP_OPERATOR_LEN): New.
1637         * gnu-v2-abi.c (gnuv2_is_operator_name): Use CP_OPERATOR_STR.
1638         * gnu-v3-abi.c (gnuv3_is_operator_name): Use CP_OPERATOR_STR.
1639         * linespec.c (linespec_lexer_lex_string): Use CP_OPERATOR_LEN and
1640         CP_OPERATOR_STR.
1641         * location.c: Include "cp-support.h".
1642         (explicit_location_lex_one): Use CP_OPERATOR_LEN and
1643         CP_OPERATOR_STR.
1644         * symtab.c (operator_chars): Use CP_OPERATOR_STR and
1645         CP_OPERATOR_LEN.
1646
1647 2017-07-17  Pedro Alves  <palves@redhat.com>
1648
1649         * cli/cli-cmds.c (complete_command): Use a completion tracker
1650         along with completion_find_completion_word for handle_brkchars
1651         phase.
1652         * completer.c (RL_QF_SINGLE_QUOTE, RL_QF_DOUBLE_QUOTE)
1653         (RL_QF_BACKSLASH, RL_QF_OTHER_QUOTE): New.
1654         (struct gdb_rl_completion_word_info): New.
1655         (gdb_rl_find_completion_word): New.
1656         (completion_find_completion_word): New.
1657         * completer.h (completion_find_completion_word): Declare.
1658
1659 2017-07-17  Pedro Alves  <palves@redhat.com>
1660
1661         * ada-lang.c (symbol_completion_match): Adjust comments.
1662         (symbol_completion_add): Replace vector parameter with
1663         completion_tracker parameter.  Use it.
1664         (ada_make_symbol_completion_list): Rename to...
1665         (ada_collect_symbol_completion_matches): ... this.  Add
1666         completion_tracker parameter and use it.
1667         (ada_language_defn): Adjust.
1668         * break-catch-syscall.c (catch_syscall_completer): Adjust
1669         prototype and work with completion_tracker instead of VEC.
1670         * breakpoint.c (condition_completer): Adjust prototype and work
1671         with completion_tracker instead of VEC.
1672         * c-lang.c (c_language_defn, cplus_language_defn)
1673         (asm_language_defn, minimal_language_defn): Adjust to renames.
1674         * cli/cli-cmds.c (complete_command): Rework using
1675         completion_tracker.  Catch exceptions when completing.
1676         * cli/cli-decode.c (integer_unlimited_completer)
1677         (complete_on_cmdlist, complete_on_enum): Adjust prototype and work
1678         with completion_tracker instead of VEC.
1679         * command.h (struct completion_tracker): Forward declare.
1680         (completer_ftype, completer_handle_brkchars_ftype): Change
1681         types.
1682         (complete_on_cmdlist, complete_on_enum): Adjust.
1683         * completer.c: Include <algorithm>.
1684         (struct gdb_completer_state): New.
1685         (current_completion): New global.
1686         (readline_line_completion_function): Delete.
1687         (noop_completer, filename_completer)
1688         (filename_completer_handle_brkchars, complete_files_symbols)
1689         (linespec_location_completer): Adjust to work with a
1690         completion_tracker instead of a VEC.
1691         (string_or_empty): New.
1692         (collect_explicit_location_matches): Adjust to work with a
1693         completion_tracker instead of a VEC.
1694         (explicit_location_completer): Rename to ...
1695         (complete_explicit_location): ... this and adjust to work with a
1696         completion_tracker instead of a VEC.
1697         (location_completer): Adjust to work with a completion_tracker
1698         instead of a VEC.
1699         (add_struct_fields): Adjust to work with a completion_list instead
1700         of VEC.
1701         (expression_completer): Rename to ...
1702         (complete_expression): ... this and adjust to work with a
1703         completion_tracker instead of a VEC.  Use complete_files_symbols.
1704         (expression_completer): Reimplement on top of complete_expression.
1705         (symbol_completer): Adjust to work with a completion_tracker
1706         instead of a VEC.
1707         (enum complete_line_internal_reason): Add describing comments.
1708         (complete_line_internal_normal_command): Adjust to work with a
1709         completion_tracker instead of a VEC.
1710         (complete_line_internal): Rename to ...
1711         (complete_line_internal_1): ... this and adjust to work with a
1712         completion_tracker instead of a VEC.  Assert TEXT is NULL in the
1713         handle_brkchars phase.
1714         (new_completion_tracker): Delete.
1715         (complete_line_internal): Reimplement as TRY/CATCH wrapper around
1716         complete_line_internal_1.
1717         (free_completion_tracker): Delete.
1718         (INITIAL_COMPLETION_HTAB_SIZE): New.
1719         (completion_tracker::completion_tracker)
1720         (completion_tracker::~completion_tracker): New.
1721         (maybe_add_completion): Delete.
1722         (completion_tracker::maybe_add_completion)
1723         (completion_tracker::add_completion)
1724         (completion_tracker::add_completions): New.
1725         (throw_max_completions_reached_error): Delete.
1726         (complete_line): Adjust to work with a completion_tracker instead
1727         of a VEC.  Don't create a completion_tracker_t or check for max
1728         completions here.
1729         (command_completer, command_completer_handle_brkchars)
1730         (signal_completer, reg_or_group_completer_1)
1731         (reg_or_group_completer, default_completer_handle_brkchars):
1732         Adjust to work with a completion_tracker.
1733         (gdb_completion_word_break_characters_throw): New.
1734         (gdb_completion_word_break_characters): Reimplement.
1735         (line_completion_function): Delete.
1736         (completion_tracker::recompute_lowest_common_denominator)
1737         (expand_preserving_ws)
1738         (completion_tracker::build_completion_result)
1739         (completion_result::completion_result)
1740         (completion_result::completion_result)
1741         (completion_result::~completion_result)
1742         (completion_result::completion_result)
1743         (completion_result::release_match_list, compare_cstrings)
1744         (completion_result::sort_match_list)
1745         (completion_result::reset_match_list)
1746         (gdb_rl_attempted_completion_function_throw)
1747         (gdb_rl_attempted_completion_function): New.
1748         * completer.h (completion_list, struct completion_result)
1749         (class completion_tracker): New.
1750         (complete_line): Add completion_tracker parameter.
1751         (readline_line_completion_function): Delete.
1752         (gdb_rl_attempted_completion_function): New.
1753         (noop_completer, filename_completer, expression_completer)
1754         (location_completer, symbol_completer, command_completer)
1755         (signal_completer, reg_or_group_completer): Update prototypes.
1756         (completion_tracker_t, new_completion_tracker)
1757         (make_cleanup_free_completion_tracker): Delete.
1758         (enum maybe_add_completion_enum): Delete.
1759         (maybe_add_completion): Delete.
1760         (throw_max_completions_reached_error): Delete.
1761         * corefile.c (complete_set_gnutarget): Adjust to work with a
1762         completion_tracker instead of a VEC.
1763         * cp-abi.c (cp_abi_completer): Adjust to work with a
1764         completion_tracker instead of a VEC.
1765         * d-lang.c (d_language_defn): Adjust.
1766         * disasm.c (disassembler_options_completer): Adjust to work with a
1767         completion_tracker instead of a VEC.
1768         * f-lang.c (f_make_symbol_completion_list): Rename to ...
1769         (f_collect_symbol_completion_matches): ... this.  Adjust to work
1770         with a completion_tracker instead of a VEC.
1771         (f_language_defn): Adjust.
1772         * go-lang.c (go_language_defn): Adjust.
1773         * guile/scm-cmd.c (cmdscm_add_completion, cmdscm_completer):
1774         Adjust to work with a completion_tracker instead of a VEC.
1775         * infrun.c (handle_completer): Likewise.
1776         * interps.c (interpreter_completer): Likewise.
1777         * interps.h (interpreter_completer): Likewise.
1778         * language.c (unknown_language_defn, auto_language_defn)
1779         (local_language_defn): Adjust.
1780         * language.h (language_defn::la_make_symbol_completion_list):
1781         Rename to ...
1782         (language_defn::la_collect_symbol_completion_matches): ... this
1783         and adjust to work with a completion_tracker instead of a VEC.
1784         * m2-lang.c (m2_language_defn): Adjust.
1785         * objc-lang.c (objc_language_defn): Adjust.
1786         * opencl-lang.c (opencl_language_defn): Adjust.
1787         * p-lang.c (pascal_language_defn): Adjust.
1788         * python/py-cmd.c (cmdpy_completer_helper): Handle NULL word.
1789         (cmdpy_completer_handle_brkchars, cmdpy_completer): Adjust to work
1790         with a completion_tracker.
1791         * rust-lang.c (rust_language_defn): Adjust.
1792         * symtab.c (free_completion_list, do_free_completion_list)
1793         (return_val, completion_tracker): Delete.
1794         (completion_list_add_name, completion_list_add_symbol)
1795         (completion_list_add_msymbol, completion_list_objc_symbol)
1796         (completion_list_add_fields, add_symtab_completions): Add
1797         completion_tracker parameter and use it.
1798         (default_make_symbol_completion_list_break_on_1): Rename to...
1799         (default_collect_symbol_completion_matches_break_on): ... this.
1800         Add completion_tracker parameter and use it instead of allocating
1801         a completion tracker here.
1802         (default_make_symbol_completion_list_break_on): Delete old
1803         implementation.
1804         (default_make_symbol_completion_list): Delete.
1805         (default_collect_symbol_completion_matches): New.
1806         (make_symbol_completion_list): Delete.
1807         (collect_symbol_completion_matches): New.
1808         (make_symbol_completion_type): Rename to ...
1809         (collect_symbol_completion_matches_type): ... this.  Add
1810         completion_tracker parameter and use it instead of VEC.
1811         (make_file_symbol_completion_list_1): Rename to...
1812         (collect_file_symbol_completion_matches): ... this.  Add
1813         completion_tracker parameter and use it instead of VEC.
1814         (make_file_symbol_completion_list): Delete.
1815         (add_filename_to_list): Use completion_list instead of a VEC.
1816         (add_partial_filename_data::list): Now a completion_list.
1817         (make_source_files_completion_list): Work with a completion_list
1818         instead of a VEC.
1819         * symtab.h: Include "completer.h".
1820         (default_make_symbol_completion_list_break_on)
1821         (default_make_symbol_completion_list, make_symbol_completion_list)
1822         (make_symbol_completion_type, make_file_symbol_completion_list)
1823         (make_source_files_completion_list): Delete.
1824         (default_collect_symbol_completion_matches_break_on)
1825         (default_collect_symbol_completion_matches)
1826         (collect_symbol_completion_matches)
1827         (collect_symbol_completion_matches_type)
1828         (collect_file_symbol_completion_matches)
1829         (make_source_files_completion_list): New.
1830         * top.c (init_main): Don't install a rl_completion_entry_function
1831         hook.  Install a rl_attempted_completion_function hook instead.
1832         * tui/tui-layout.c (layout_completer): Adjust to work with a
1833         completion_tracker.
1834         * tui/tui-regs.c (tui_reggroup_completer):
1835         * tui/tui-win.c (window_name_completer, focus_completer)
1836         (winheight_completer): Adjust to work with a completion_tracker.
1837         * value.c: Include "completer.h".
1838         (complete_internalvar): Adjust to work with a completion_tracker.
1839         * value.h (complete_internalvar): Likewise.
1840
1841 2017-07-17  Pedro Alves  <palves@redhat.com>
1842
1843         * cli/cli-decode.c (set_cmd_completer_handle_brkchars): Adjust to
1844         renames.
1845         * cli/cli-decode.h (struct cmd_list_element) <completer>: Move
1846         comments to completer_ftype's declaration.
1847         <completer_handle_brkchars>: Change type to
1848         completer_handle_brkchars_ftype.
1849         * command.h (completer_ftype): Add describing comment and give
1850         names to parameters.
1851         (completer_ftype_void): Rename to ...
1852         (completer_handle_brkchars_ftype) ... this.  Add describing comment.
1853         (set_cmd_completer_handle_brkchars): Adjust.
1854         * completer.c (filename_completer_handle_brkchars): New function.
1855         (complete_line_internal_normal_command): New function, factored
1856         out from ...
1857         (complete_line_internal): ... here.
1858         (command_completer_handle_brkchars)
1859         (default_completer_handle_brkchars)
1860         (completer_handle_brkchars_func_for_completer): New functions.
1861         * completer.h (set_gdb_completion_word_break_characters): Delete
1862         declaration.
1863         (completer_handle_brkchars_func_for_completer): New declaration.
1864         * python/py-cmd.c (cmdpy_completer_handle_brkchars): Adjust to use
1865         completer_handle_brkchars_func_for_completer.
1866
1867 2017-07-17  Pedro Alves  <palves@redhat.com>
1868
1869         * completer.c (symbol_completer): New function, based on
1870         make_symbol_completion_list_fn.
1871         * completer.h (symbol_completer): New declaration.
1872         * guile/scm-cmd.c (cmdscm_completers): Adjust.
1873         * python/py-cmd.c (completers): Adjust.
1874         * symtab.c (make_symbol_completion_list_fn): Delete.
1875         * symtab.h (make_symbol_completion_list_fn): Delete.
1876         * cli/cli-decode.c (add_cmd): Adjust.
1877
1878 2017-07-17  Pedro Alves  <palves@redhat.com>
1879
1880         * Makefile.in (COMMON_OBS): Add filename-seen-cache.o.
1881         * dwarf2read.c: Include "filename-seen-cache.h".
1882         * dwarf2read.c (dwarf2_per_objfile) <filenames_cache>: New field.
1883         (dw2_map_symbol_filenames): Build and use a filenames_seen_cache.
1884         * filename-seen-cache.c: New file.
1885         * filename-seen-cache.h: New file.
1886         * symtab.c: Include "filename-seen-cache.h".
1887         (struct filename_seen_cache, INITIAL_FILENAME_SEEN_CACHE_SIZE)
1888         (create_filename_seen_cache, clear_filename_seen_cache)
1889         (delete_filename_seen_cache, filename_seen): Delete, parts moved
1890         to filename-seen-cache.h/filename-seen-cache.c.
1891         (output_source_filename, sources_info)
1892         (maybe_add_partial_symtab_filename)
1893         (make_source_files_completion_list): Adjust to use
1894         filename_seen_cache.
1895
1896 2017-07-17  Pedro Alves  <palves@redhat.com>
1897
1898         * dwarf2read.c (dwarf2_per_objfile): In-class initialize all
1899         fields.
1900         (dwarf2_per_objfile::dwarf2_per_objfile(objfile*, const
1901         dwarf2_debug_sections*)): New.
1902         (dwarf2_per_objfile::dwarf2_per_objfile(const
1903         dwarf2_per_objfile&)): Declare as deleted.
1904         (dwarf2_per_objfile::operator=): Declare as deleted.
1905         (dwarf2_per_objfile::dwarf2_per_objfile)
1906         (dwarf2_per_objfile::~dwarf2_per_objfile)
1907         (dwarf2_per_objfile::free_cached_comp_units): New.
1908         (dwarf2_has_info): dwarf2_per_objfile initialization code moved to
1909         ctor.  Call dwarf2_per_objfile's ctor manually.
1910         (dwarf2_locate_sections): Deleted/refactored as ...
1911         (dwarf2_per_objfile::locate_sections): ... this new method.
1912         (free_cached_comp_units): Defer to
1913         dwarf2_per_objfile::free_cached_comp_units.
1914         (dwarf2_free_objfile): Call dwarf2_per_objfile's dtor manually.
1915
1916 2017-07-14  Tom Tromey  <tom@tromey.com>
1917
1918         PR rust/21764:
1919         * rust-exp.y (convert_ast_to_expression): Add "want_type"
1920         parameter.
1921         <UNOP_SIZEOF>: Split into separate case.
1922         <UNOP_VAR_VALUE>: Handle want_type.  Add error case.
1923
1924 2017-07-14  Tom Tromey  <tom@tromey.com>
1925
1926         PR rust/21763:
1927         * symtab.c (symbol_matches_domain): Add language_rust to special
1928         case.
1929         * rust-exp.y (convert_ast_to_expression) <OP_VAR_VALUE>: Don't
1930         treat LOC_TYPEDEF symbols as variables.
1931
1932 2017-07-14  Pedro Alves  <palves@redhat.com>
1933
1934         * symtab.c (make_file_symbol_completion_list_1): Iterate over
1935         symtabs matching all symtabs with SRCFILE as file name instead of
1936         only considering the first hit, with lookup_symtab.
1937
1938 2017-07-14  Simon Marchi  <simon.marchi@ericsson.com>
1939
1940         * ax-gdb.c (gen_aggregate_elt_ref): Remove operand_name and
1941         operator_name parameters.
1942         (gen_expr): Update function call.
1943
1944 2017-07-14  Simon Marchi  <simon.marchi@ericsson.com>
1945
1946         * dwarf2loc.h (dwarf2_compile_expr_to_ax): Remove gdbarch
1947         parameter.
1948         * symtab.h (struct symbol_computed_ops::tracepoint_var_ref):
1949         Likewise.
1950         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove gdbarch
1951         parameter, use agent_expr::gdbarch instead, update function
1952         calls.
1953         (locexpr_tracepoint_var_ref): Likewise.
1954         (loclist_tracepoint_var_ref): Likewise.
1955         * ax-gdb.c (gen_trace_static_fields): Likewise.
1956         (gen_traced_pop): Likewise.
1957         (gen_frame_args_address): Likewise.
1958         (gen_frame_locals_address): Likewise.
1959         (gen_var_ref): Likewise.
1960         (gen_struct_ref_recursive): Likewise.
1961         (gen_static_field): Likewise.
1962         (gen_maybe_namespace_elt): Likewise.
1963         (gen_expr): Likewise.
1964         (gen_trace_for_var): Likewise.
1965         (gen_trace_for_expr): Likewise.
1966         (gen_trace_for_return_address): Likewise.
1967
1968 2017-07-14  Simon Marchi  <simon.marchi@ericsson.com>
1969
1970         * ax-gdb.c (gen_deref, gen_address_of): Remove unused ax
1971         parameter.
1972         (gen_struct_ref, gen_expr, gen_expr_binop_rest): Update call.
1973
1974 2017-07-14  Simon Marchi  <simon.marchi@ericsson.com>
1975
1976         * ax-gdb.c (gen_usual_unary): Remove exp parameter, get gdbarch
1977         from ax, update calls.
1978         (gen_usual_arithmetic): Likewise.
1979         (gen_integral_promotions): Likewise.
1980         (gen_bitfield_ref): Likewise.
1981         (gen_primitive_field): Likewise.
1982         (gen_struct_ref_recursive): Likewise.
1983         (gen_struct_ref): Likewise.
1984         (gen_maybe_namespace_elt): Likewise.
1985         (gen_struct_elt_for_reference): Likewise.
1986         (gen_namespace_elt): Likewise.
1987         (gen_aggregate_elt_ref): Likewise.
1988         (gen_expr): Get gdbarch from ax, update calls.
1989         (gen_expr_binop_rest): Likewise.
1990
1991 2017-07-13  Pedro Alves  <palves@redhat.com>
1992
1993         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Pass tdesc_amd64
1994         as default tdesc.
1995         * amd64-dicos-tdep.c (amd64_dicos_init_abi):
1996         * amd64-fbsd-tdep.c (amd64fbsd_init_abi):
1997         * amd64-linux-tdep.c (amd64_linux_init_abi): Pass
1998         tdesc_amd64_linux as default tdesc.  Get final tdesc from the
1999         tdep.
2000         (amd64_x32_linux_init_abi): Pass tdesc_x32_linux as default tdesc.
2001         Get final tdesc from the tdep.
2002         * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Pass tdesc_amd64 as
2003         default tdesc.
2004         * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
2005         * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
2006         * amd64-tdep.c (amd64_init_abi): Add 'default_tdesc' parameter.
2007         Use it as default tdesc.
2008         (amd64_x32_init_abi): Add 'default_tdesc' parameter, and pass it
2009         down to amd_init_abi.  No longer handle fallback tdesc here.
2010         * amd64-tdep.h (tdesc_x32): Declare.
2011         (amd64_init_abi, amd64_x32_init_abi): Add 'default_tdesc'
2012         parameter.
2013         * amd64-windows-tdep.c (amd64_windows_init_abi): Pass tdesc_amd64
2014         as default tdesc.
2015
2016 2017-07-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2017
2018         * s390-linux-tdep.c (s390_process_record): Add support for
2019         instructions new in arch12.
2020
2021 2017-07-11  John Baldwin  <jhb@FreeBSD.org>
2022
2023         * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
2024         PT_GETFSBASE and PT_GETGSBASE.
2025         (amd64bsd_store_inferior_registers): Use PT_SETFSBASE and
2026         PT_SETGSBASE.
2027
2028 2017-07-11  John Baldwin  <jhb@FreeBSD.org>
2029
2030         * features/Makefile (amd64.dat, amd64-avx.dat, amd64-mpx.dat)
2031         (amd64-avx-mpx.dat, amd64-avx-avx512.dat)
2032         (amd64-avx-mpx-avx512-pku.dat): Add i386/64bit-segments.xml in
2033         those rules.
2034         * features/i386/amd64-avx-avx512.xml: Add 64bit-segments.xml.
2035         * features/i386/amd64-avx-mpx-avx512-pku.xml: Add 64bit-segments.xml.
2036         * features/i386/amd64-avx-mpx.xml: Add 64bit-segments.xml.
2037         * features/i386/amd64-avx.xml: Add 64bit-segments.xml.
2038         * features/i386/amd64-mpx.xml: Add 64bit-segments.xml.
2039         * features/i386/amd64.xml: Add 64bit-segments.xml.
2040         * features/i386/amd64-avx-avx512.c: Regenerated.
2041         * features/i386/amd64-avx-mpx-avx512-pku.c: Regenerated.
2042         * features/i386/amd64-avx-mpx.c: Regenerated.
2043         * features/i386/amd64-avx.c: Regenerated.
2044         * features/i386/amd64-mpx.c: Regenerated.
2045         * features/i386/amd64.c: Regenerated.
2046         * regformats/i386/amd64-avx-avx512.dat: Regenerated.
2047         * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
2048         * regformats/i386/amd64-avx-mpx.dat: Regenerated.
2049         * regformats/i386/amd64-avx.dat: Regenerated.
2050         * regformats/i386/amd64-mpx.dat: Regenerated.
2051         * regformats/i386/amd64.dat: Regenerated.
2052
2053 2017-07-10  Yao Qi  <yao.qi@linaro.org>
2054
2055         * features/i386/amd64-avx-avx512-linux.c: Re-generated.
2056         * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
2057
2058 2017-07-10  Anton Kolesov  <Anton.Kolesov@synopsys.com>
2059
2060         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add setenv and
2061         unsetenv.
2062         * gnulib/aclocal.m4: Regenerate.
2063         * gnulib/config.in: Regenerate.
2064         * gnulib/configure: Regenerate.
2065         * gnulib/import/Makefile.am: Regenerate.
2066         * gnulib/import/Makefile.in: Regenerate.
2067         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
2068         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
2069         * gnulib/import/m4/environ.m4: New file.
2070         * gnulib/import/m4/setenv.m4: New file.
2071         * gnulib/import/setenv.c: New file.
2072         * gnulib/import/unsetenv.c: New file.
2073
2074 2017-07-09  Simon Marchi  <simon.marchi@ericsson.com>
2075
2076         * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Read
2077         address when op is DW_OP_addr.
2078
2079 2017-07-09  Tom Tromey  <tom@tromey.com>
2080
2081         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Reverse size
2082         check and apply to outer type.
2083
2084 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
2085
2086         * fbsd-tdep.c (LWPINFO_OFFSET, LWPINFO_PL_FLAGS)
2087         (LWPINFO64_PL_SIGINFO, LWPINFO32_PL_SIGINFO, PL_FLAG_SI)
2088         (SIZE64_SIGINFO_T, SIZE32_SIGINFO_T, fbsd_core_xfer_siginfo): New.
2089         (fbsd_init_abi): Install gdbarch "core_xfer_siginfo" method.
2090
2091 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
2092
2093         * fbsd-tdep.c (fbsd_core_thread_name): Use thread_section_name.
2094
2095 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
2096
2097         * corelow.c (get_core_siginfo): Remove.
2098         (core_xfer_partial): Use the gdbarch "core_xfer_siginfo" method
2099         instead of get_core_siginfo.
2100         * gdbarch.sh (core_xfer_siginfo): New gdbarch callback.
2101         * gdbarch.h: Re-generate.
2102         * gdbarch.c: Re-generate.
2103         * linux-tdep.c (linux_core_xfer_siginfo): New.
2104         (linux_init_abi): Install gdbarch "core_xfer_siginfo" method.
2105
2106 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
2107
2108         * corelow.c (thread_section_name): Move to ...
2109         * gdbcore.h (thread_section_name): ... here.
2110
2111 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
2112
2113         * fbsd-nat.c [PT_LWPINFO && __LP64__] (union sigval32)
2114         (struct siginfo32): New.
2115         [PT_LWPINFO] (fbsd_siginfo_size, fbsd_convert_siginfo): New.
2116         (fbsd_xfer_partial) [PT_LWPINFO]: Handle TARGET_OBJECT_SIGNAL_INFO
2117         via ptrace(PT_LWPINFO).
2118
2119 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
2120
2121         * fbsd-tdep.c (fbsd_gdbarch_data_handle, struct fbsd_gdbarch_data)
2122         (init_fbsd_gdbarch_data, get_fbsd_gdbarch_data)
2123         (fbsd_get_siginfo_type): New.
2124         (fbsd_init_abi): Install gdbarch "get_siginfo_type" method.
2125         (_initialize_fbsd_tdep): New.
2126
2127 2017-07-06  David Blaikie  <dblaikie@gmail.com>
2128
2129         * dwarf2read.c (struct dwo_file): Use a htab of dwo_unit* (rather than
2130         a singular dwo_unit*) to support multiple CUs in the same way that
2131         multiple TUs are supported.
2132         (create_cus_hash_table): Replace create_dwo_cu with a function for
2133         parsing multiple CUs from a DWO file.
2134         (open_and_init_dwo_file): Use create_cus_hash_table rather than
2135         create_dwo_cu.
2136         (lookup_dwo_cutu): Lookup CU in the hash table in the dwo_file with
2137         htab_find, rather than comparing the signature to a singleton CU in
2138         the dwo_file.
2139
2140 2017-07-06  Pedro Alves  <palves@redhat.com>
2141
2142         * python/py-unwind.c (pyuw_dealloc_cache): Fix for loop condition.
2143
2144 2017-07-04  Pedro Alves  <palves@redhat.com>
2145
2146         * gdbtypes.c (recursive_dump_type): Don't reference TYPE_STATIC.
2147         * gdbtypes.h (TYPE_STATIC): Delete.
2148         (struct fn_field) <is_public, is_abstract, is_static, is_final,
2149         is_synchronized, is_native>: Delete.
2150         <dummy>: Bump.
2151         (TYPE_FN_FIELD_PUBLIC, TYPE_FN_FIELD_STATIC, TYPE_FN_FIELD_FINAL)
2152         (TYPE_FN_FIELD_SYNCHRONIZED, TYPE_FN_FIELD_NATIVE)
2153         (TYPE_FN_FIELD_ABSTRACT): Delete.
2154
2155 2017-07-03  Simon Marchi  <simon.marchi@ericsson.com>
2156
2157         * buffer.h (buffer_finish): Fix spelling mistakes.
2158
2159 2017-07-01  Eli Zaretskii  <eliz@gnu.org>
2160
2161         * .dir-locals.el: Automatically switch to C-style comments in
2162         versions of Emacs that support the feature.
2163
2164 2017-06-30  Sergio Durigan Junior  <sergiodj@redhat.com>
2165             Pedro Alves  <palves@redhat.com>
2166
2167         PR cli/21688
2168         * cli/cli-script.c (command_name_equals_not_inline): Remove function.
2169         (process_next_line): New variable 'inline_cmd'.
2170         Adjust 'if' clauses for "python", "compile" and "guile" to use
2171         'command_name_equals' and check for '!inline_cmd'.
2172
2173 2017-06-30  Sergio Durigan Junior  <sergiodj@redhat.com>
2174
2175         PR cli/21688
2176         * cli/cli-script.c (command_name_equals_not_inline): New function.
2177         (process_next_line): Adjust 'if' clauses for "python", "compile"
2178         and "guile" to use command_name_equals_not_inline.
2179
2180 2017-06-29  Pedro Alves  <palves@redhat.com>
2181
2182         * completer.c (expression_completer): Call
2183         linespec_location_completer instead of location_completer.
2184
2185 2017-06-29  Pedro Alves  <palves@redhat.com>
2186
2187         * completer.c (expression_completer): Remove code that recomputes
2188         'text' from 'word'.
2189
2190 2017-06-29  Yao Qi  <yao.qi@linaro.org>
2191
2192         * regformats/regdat.sh: Generate code with
2193         "ifndef IN_PROCESS_AGENT".
2194
2195 2017-06-28  Pedro Alves  <palves@redhat.com>
2196
2197         * command.h: Include "common/scoped_restore.h".
2198
2199 2017-06-28  Yao Qi  <yao.qi@linaro.org>
2200
2201         * mi/mi-cmd-break.c (mi_argv_to_format): Use obstack_grow_str
2202         instead of obstack_grow.
2203
2204 2017-06-28  Doug Gilmore  <Doug.Gilmore@imgtec.com>
2205
2206         PR gdb/21337
2207         * symfile.c (reread_symbols): Call objfiles_changed just before
2208         read_symbols.
2209
2210 2017-06-27  Pedro Alves  <palves@redhat.com>
2211
2212         * symtab.c (COMPLETION_LIST_ADD_SYMBOL)
2213         (MCOMPLETION_LIST_ADD_SYMBOL): Delete macros, replace with ...
2214         (completion_list_add_symbol, completion_list_add_msymbol):
2215         ... these new functions.
2216         (add_symtab_completions)
2217         (default_make_symbol_completion_list_break_on_1): Adjust.
2218
2219 2017-06-27  Pedro Alves  <palves@redhat.com>
2220
2221         * objfiles.c (get_objfile_bfd_data): Call bfd_alloc instead of
2222         bfd_zalloc.  Call objfile_per_bfd_storage's ctor.
2223         (free_objfile_per_bfd_storage): Call objfile_per_bfd_storage's
2224         dtor.
2225         * objfiles.h (objfile_per_bfd_storage): Add ctor.  Make
2226         'storage_obstack' field an auto_obstack.  In-class initialize all
2227         non-bitfield fields.  Make minsyms_read bool.
2228         * symfile.c (read_symbols): Adjust.
2229
2230 2017-06-27  Alan Hayward  <alan.hayward@arm.com>
2231
2232         * remote-sim.c (gdbsim_fetch_register): Use byte_vector.
2233         (gdbsim_store_register): Likewise.
2234
2235 2017-06-27  Pedro Alves  <palves@redhat.com>
2236
2237         * c-exp.y (name_obstack): Now an auto_obstack.
2238         (yylex): Use auto_obstack::clear.
2239         (c_parse): Use auto_obstack::clear instead of reinitializing and
2240         freeing the obstack.
2241         * c-lang.c (evaluate_subexp_c): Use auto_obstack.
2242         * d-exp.y (name_obstack): Now an auto_obstack.
2243         (yylex): Use auto_obstack::clear.
2244         (d_parse): Use auto_obstack::clear instead of reinitializing and
2245         freeing the obstack.
2246         * dwarf2loc.c (fetch_const_value_from_synthetic_pointer): Use
2247         auto_obstack.
2248         * dwarf2read.c (create_addrmap_from_index)
2249         (dwarf2_build_psymtabs_hard)
2250         (update_enumeration_type_from_children): Likewise.
2251         * gdb_obstack.h (auto_obstack): New type.
2252         * go-exp.y (name_obstack): Now an auto_obstack.
2253         (build_packaged_name): Use auto_obstack::clear.
2254         (go_parse): Use auto_obstack::clear instead of reinitializing and
2255         freeing the obstack.
2256         * linux-tdep.c (linux_make_mappings_corefile_notes): Use
2257         auto_obstack.
2258         * printcmd.c (printf_wide_c_string, ui_printf): Use auto_obstack.
2259         * rust-exp.y (work_obstack): Now an auto_obstack.
2260         (rust_parse, rust_lex_tests): Use auto_obstack::clear instead of
2261         reinitializing and freeing the obstack.
2262         * utils.c (do_obstack_free, make_cleanup_obstack_free): Delete.
2263         (host_char_to_target): Use auto_obstack.
2264         * utils.h (make_cleanup_obstack_free): Delete declaration.
2265         * valprint.c (generic_emit_char, generic_printstr): Use
2266         auto_obstack.
2267
2268 2017-06-27  Simon Marchi  <simon.marchi@ericsson.com>
2269
2270         * darwin-nat.c (darwin_check_new_threads): Don't handle dummy
2271         thread.
2272         (darwin_init_thread_list): Don't update dummy thread.
2273         (darwin_create_inferior, darwin_attach): Don't add a dummy thread.
2274
2275 2017-06-26  Simon Marchi  <simon.marchi@ericsson.com>
2276
2277         * record-full.c (netorder16): Remove.
2278
2279 2017-06-26  Simon Marchi  <simon.marchi@ericsson.com>
2280
2281         * common/diagnostics.h: Define macros for GCC.
2282         (DIAGNOSTIC_IGNORE_UNUSED_FUNCTION): New macro.
2283         * common/vec.h: Include diagnostics.h.
2284         (DIAGNOSTIC_IGNORE_UNUSED_VEC_FUNCTION): New macro.
2285         (DEF_VEC_I, DEF_VEC_P, DEF_VEC_O): Ignore -Wunused-function
2286         warning.
2287
2288 2017-06-26  Simon Marchi  <simon.marchi@ericsson.com>
2289
2290         * common/diagnostics.h (DIAGNOSTIC_IGNORE_DEPRECATED_REGISTER):
2291         New macro.
2292         * ada-lex.l: Ignore deprecated register warnings.
2293
2294 2017-06-25  Simon Marchi  <simon.marchi@ericsson.com>
2295
2296         * main.c (get_init_files): Replace "SYSTEM_GDBINIT +
2297         datadir_len" with "&SYSTEM_GDBINIT[datadir_len]".
2298
2299 2017-06-25  Simon Marchi  <simon.marchi@ericsson.com>
2300
2301         * dtrace-probe.c (dtrace_process_dof_probe): Put semi-colon on
2302         its own line.
2303
2304 2017-06-25  Simon Marchi  <simon.marchi@ericsson.com>
2305
2306         * nat/x86-dregs.c (x86_show_dr): Print registers one per line.
2307
2308 2017-06-23  Alan Hayward  <alan.hayward@arm.com>
2309
2310         * xtensa-tdep.c (XTENSA_MAX_REGISTER_SIZE): Add.
2311         (xtensa_register_write_masked): Use XTENSA_MAX_REGISTER_SIZE.
2312         (xtensa_register_read_masked): Likewise.
2313
2314 2017-06-22  Sergio Durigan Junior  <sergiodj@redhat.com>
2315
2316         * common/environ.c (gdb_environ::unset): Update comment.
2317
2318 2017-06-22  Alan Hayward  <alan.hayward@arm.com>
2319
2320         * python/py-unwind.c (pyuw_sniffer): Allocate space for
2321         registers.
2322
2323 2017-06-22  Alan Hayward  <alan.hayward@arm.com>
2324
2325         * record-full.c (record_full_exec_insn): Use byte_vector.
2326
2327 2017-06-22  Yao Qi  <yao.qi@linaro.org>
2328
2329         * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Regenerated.
2330         * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
2331
2332 2017-06-22  Alan Hayward  <alan.hayward@arm.com>
2333
2334         * remote.c (cached_reg): Move from here...
2335         * regcache.h (cached_reg): ...to here.
2336         * python/py-unwind.c (struct reg_info): Remove.
2337         (cached_frame_info): Use cached_reg_t.
2338         (pyuw_prev_register): Likewise.
2339         (pyuw_sniffer): Use cached_reg_t and allocate registers.
2340         (pyuw_dealloc_cache): Free all registers.
2341
2342 2017-06-22  Pedro Alves  <palves@redhat.com>
2343             Simon Marchi  <simon.marchi@ericsson.com>
2344
2345         * unittests/environ-selftests.c (run_tests): Ignore -Wself-move
2346         warning.
2347         * common/diagnostics.h: New file.
2348
2349 2017-06-22  Pedro Alves  <palves@redhat.com>
2350
2351         * common/agent.h: Add include guards.
2352
2353 2017-06-21  Simon Marchi  <simon.marchi@ericsson.com>
2354
2355         * target.h (struct target_ops) <to_xfer_partial>: Update doc to
2356         talk about addressable units instead of bytes.
2357
2358 2017-06-20  Sergio Durigan Junior  <sergiodj@redhat.com>
2359
2360         * common/environ.c (gdb_environ::unset): Use '::iterator' instead
2361         of '::const_iterator'.
2362
2363 2017-06-20  Sergio Durigan Junior  <sergiodj@redhat.com>
2364
2365         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
2366         'unittests/environ-selftests.c'.
2367         (SUBDIR_UNITTESTS_OBS): Add 'environ-selftests.o'.
2368         * charset.c (find_charset_names): Declare object 'iconv_env'.
2369         Update code to use 'iconv_env' object.  Remove call to
2370         'free_environ'.
2371         * common/environ.c: Include <utility>.
2372         (make_environ): Delete function.
2373         (free_environ): Delete function.
2374         (gdb_environ::clear): New function.
2375         (gdb_environ::operator=): New function.
2376         (gdb_environ::get): Likewise.
2377         (environ_vector): Delete function.
2378         (set_in_environ): Delete function.
2379         (gdb_environ::set): New function.
2380         (unset_in_environ): Delete function.
2381         (gdb_environ::unset): New function.
2382         (gdb_environ::envp): Likewise.
2383         * common/environ.h: Include <vector>.
2384         (struct gdb_environ): Delete; transform into...
2385         (class gdb_environ): ... this class.
2386         (free_environ): Delete prototype.
2387         (init_environ, get_in_environ, set_in_environ, unset_in_environ,
2388         environ_vector): Likewise.
2389         * infcmd.c (run_command_1): Update code to call
2390         'envp' from 'gdb_environ' class.
2391         (environment_info): Update code to call methods from 'gdb_environ'
2392         class.
2393         (unset_environment_command): Likewise.
2394         (path_info): Likewise.
2395         (path_command): Likewise.
2396         * inferior.c (inferior::~inferior): Delete call to 'free_environ'.
2397         (inferior::inferior): Initialize 'environment' using the host's
2398         information.
2399         * inferior.h: Remove forward declaration of 'struct gdb_environ'.
2400         Include "environ.h".
2401         (class inferior) <environment>: Change type from 'struct
2402         gdb_environ' to 'gdb_environ'.
2403         * mi/mi-cmd-env.c (mi_cmd_env_path): Update code to call
2404         methods from 'gdb_environ' class.
2405         * solib.c (solib_find_1): Likewise
2406         * unittests/environ-selftests.c: New file.
2407
2408 2017-06-20  Yao Qi  <yao.qi@linaro.org>
2409
2410         * features/i386/i386-linux.xml: Exchange the order of including
2411         32bit-linux.xml and 32bit-sse.xml.
2412         * features/i386/i386-linux.c: Regenerated.
2413
2414 2017-06-20  Yao Qi  <yao.qi@linaro.org>
2415
2416         * target-descriptions.c (tdesc_reg): Add ctor, dtor.
2417         Delete copy ctor and assignment operator.
2418         (tdesc_type): Likewise.
2419         (tdesc_feature): Likewise.
2420         (tdesc_free_reg): Remove.
2421         (tdesc_create_reg): Use new.
2422         (tdesc_free_type): Remove.
2423         (tdesc_create_vector): Use new.
2424         (tdesc_create_union): Likewise.
2425         (tdesc_create_flags): Likewise.
2426         (tdesc_create_enum): Likewise.
2427         (tdesc_free_feature): Delete.
2428         (free_target_description): Use delete.
2429
2430 2017-06-19  John Baldwin  <jhb@FreeBSD.org>
2431
2432         * mips-tdep.c (print_gp_register_row): Don't error for unavailable
2433         registers.
2434
2435 2017-06-19  Pedro Alves  <palves@redhat.com>
2436
2437         * dwarf2read.c (write_psymtabs_to_index): Construct file_closer
2438         after gdb::unlinker.
2439
2440 2017-06-19  Sergio Durigan Junior  <sergiodj@redhat.com>
2441
2442         * mi/mi-cm-env.c (_initialize_mi_cmd_env): Use getenv instead of
2443         gdb_environ to access an environment variable.
2444
2445 2017-06-18  Thomas Petazzoni  <thomas.petazzoni@free-electrons.com>
2446
2447         * nat/linux-ptrace.c (linux_fork_to_function): Add cast to
2448         gdb_byte*.
2449
2450 2017-06-17  Simon Marchi  <simon.marchi@ericsson.com>
2451
2452         * nat/fork-inferior.h (trace_start_error): Add ATTRIBUTE_PRINTF.
2453
2454 2017-06-17  Simon Marchi  <simon.marchi@ericsson.com>
2455
2456         * configure: Re-generate.
2457         * warning.m4 (build_warnings): Add -Wno-mismatched-tags.
2458
2459 2017-06-17  Simon Marchi  <simon.marchi@ericsson.com>
2460
2461         * configure: Re-generate.
2462         * warning.m4: Pass -Werror to compiler when checking for
2463         supported warning flags.
2464
2465 2017-06-17  Simon Marchi  <simon.marchi@ericsson.com>
2466
2467         * Makefile.in (COMPILE.pre): Add "-x c++".
2468
2469 2017-06-16  Alan Hayward  <alan.hayward@arm.com>
2470             Pedro Alves  <palves@redhat.com>
2471             Yao Qi  <yao.qi@linaro.org>
2472
2473         * defs.h (RequireLongest): New.
2474         (extract_integer): Declare function template.
2475         (extract_signed_integer): Remove the declaration, but define it
2476         static inline.
2477         (extract_unsigned_integer): Likewise.
2478         (store_integer): Declare function template.
2479         (store_signed_integer): Remove the declaration, but define it
2480         static inline.
2481         (store_unsigned_integer): Likewise.
2482         * findvar.c (extract_integer): New function template.
2483         (extract_signed_integer): Remove.
2484         (extract_unsigned_integer): Remove.
2485         (extract_integer<LONGEST>, extract_integer<ULONGEST>): Explicit
2486         instantiations.
2487         (store_integer): New function template.
2488         (store_signed_integer): Remove.
2489         (store_unsigned_integer): Remove.
2490         (store_integer): Explicit instantiations.
2491         * regcache.c (regcache_raw_read_signed): Update.
2492         (regcache::raw_read): New function.
2493         (regcache::raw_read_signed): Remove.
2494         (regcache::raw_read_unsigned): Remove.
2495         (regcache_raw_read_unsigned): Update.
2496         (regcache_raw_write_unsigned): Update.
2497         (regcache::raw_write_signed): Remove.
2498         (regcache::raw_write): New function.
2499         (regcache_cooked_read_signed): Update.
2500         (regcache::raw_write_unsigned): Remove.
2501         (regcache::cooked_read_signed): Remove.
2502         (regcache_cooked_read_unsigned): Update.
2503         (regcache::cooked_read_unsigned): Remove.
2504         (regcache_cooked_write_signed): Update.
2505         (regcache_cooked_write_unsigned): Update.
2506         * regcache.h (regcache) <raw_read_signed>: Remove.
2507         <raw_write_signed, raw_read_unsigned, raw_write_unsigned>: Remove.
2508         <raw_read, raw_write>: New.
2509         <cooked_read_signed, cooked_write_signed>: Remove.
2510         <cooked_write_unsigned, cooked_read_unsigned>: Remove.
2511         <cooked_read, cooked_write>: New.
2512         * sh64-tdep.c (sh64_pseudo_register_read): Update.
2513         (sh64_pseudo_register_write): Update.
2514
2515 2017-06-16  Anton Kolesov  <anton.kolesov@synopsys.com>
2516
2517         * arc-tdep.c (arc_disassembler_options): New variable.
2518         (arc_gdbarch_init): Set and use it. Use arc_delayed_print_insn instead
2519         of default_print_insn.
2520         (arc_delayed_print_insn): Set info->section when needed,
2521         use default_print_insn to retrieve a disassembler.
2522
2523 2017-06-14  Sergio Durigan Junior  <sergiodj@redhat.com>
2524
2525         PR gdb/21574
2526         * infcmd.c (_initialize_infcmd): Expand "help run" documentation
2527         to mention $SHELL and startup-with-shell.
2528
2529 2017-06-14  Max Filippov  <jcmvbkbc@gmail.com>
2530
2531         * MAINTAINERS: Move Maxim Grigoriev to the Past Maintainers.
2532
2533 2017-06-14  Yao Qi  <yao.qi@linaro.org>
2534
2535         * aarch64-tdep.c (aarch64_gdb_print_insn): Call
2536         default_print_insn instead of print_insn_aarch64.
2537         * arm-tdep.c (gdb_print_insn_arm): Call
2538         default_print_insn instead of print_insn_big_arm
2539         and print_insn_little_arm.
2540         * i386-tdep.c (i386_print_insn): Call default_print_insn
2541         instead of print_insn_i386.
2542         * ia64-tdep.c (ia64_print_insn): Call
2543         default_print_insn instead of print_insn_ia64.
2544         * mips-tdep.c (gdb_print_insn_mips): Call
2545         default_print_insn instead of print_insn_big_mips
2546         and print_insn_little_mips.
2547         * spu-tdep.c (gdb_print_insn_spu): Call default_print_insn
2548         instead of print_insn_spu.
2549
2550 2017-06-14  Pedro Alves  <palves@redhat.com>
2551
2552         * ada-lang.c: Include "common/byte-vector.h".
2553         (ada_value_primitive_packed_val): Use gdb::byte_vector.
2554         * charset.c (wchar_iterator::iterate): Resize the vector instead
2555         of reserving it.
2556         * common/byte-vector.h: Include "common/def-vector.h".
2557         (wchar_iterator::m_out): Now a gdb::def_vector<gdb_wchar_t>.
2558         * cli/cli-dump.c: Include "common/byte-vector.h".
2559         (dump_memory_to_file, restore_binary_file): Use gdb::byte_vector.
2560         * common/byte-vector.h: New file.
2561         * common/def-vector.h: New file.
2562         * common/default-init-alloc.h: New file.
2563         * dwarf2loc.c: Include "common/byte-vector.h".
2564         (rw_pieced_value): Use gdb::byte_vector, and resize the vector
2565         instead of reserving it.
2566         * dwarf2read.c: Include "common/byte-vector.h".
2567         (data_buf::m_vec): Now a gdb::byte_vector.
2568         * gdb_regex.c: Include "common/def-vector.h".
2569         (compiled_regex::compiled_regex): Use gdb::def_vector<char>.
2570         * mi/mi-main.c: Include "common/byte-vector.h".
2571         (mi_cmd_data_read_memory): Use gdb::byte_vector.
2572         * printcmd.c: Include "common/byte-vector.h".
2573         (print_scalar_formatted): Use gdb::byte_vector.
2574         * valprint.c: Include "common/byte-vector.h".
2575         (maybe_negate_by_bytes, print_decimal_chars): Use
2576         gdb::byte_vector.
2577
2578 2017-06-13  Simon Marchi  <simon.marchi@ericsson.com>
2579
2580         * darwin-nat.c: Include "nat/fork-inferior.h".
2581
2582 2017-06-13  Simon Marchi  <simon.marchi@ericsson.com>
2583
2584         * configure.nat: Factor out Darwin bits that are not
2585         architecture-specific.  Add fork-inferior.o.
2586
2587 2017-06-13  Simon Marchi  <simon.marchi@ericsson.com>
2588
2589         * configure.nat: Factor out AIX bits that are not
2590         architecture-specific.  Add fork-inferior.o.
2591
2592 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2593
2594         * dwarf2loc.c (rw_pieced_value): New.  Merge logic from...
2595         (read_pieced_value, write_pieced_value): ...here.  Reduce to
2596         wrappers that just call rw_pieced_value.
2597
2598 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2599
2600         * dwarf2loc.c (write_pieced_value): When writing the data for a
2601         memory piece, use write_memory_with_notification instead of
2602         write_memory.
2603
2604 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2605
2606         * valops.c (read_value_memory): Change embedded_offset to
2607         represent a bit offset instead of a byte offset.
2608         * value.h (read_value_memory): Adjust comment.
2609
2610 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2611
2612         * dwarf2loc.c (read_pieced_value): Remove unnecessary variables
2613         dest_offset_bits and source_offset_bits.
2614         (write_pieced_value): Likewise.
2615
2616 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2617
2618         * dwarf2loc.c (read_pieced_value): Respect the piece offset, as
2619         given by DW_OP_bit_piece.
2620         (write_pieced_value): Likewise.
2621
2622 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2623
2624         * dwarf2loc.c (read_pieced_value): Move the buffer allocation and
2625         some other preparations to the places where sufficient information
2626         is available.
2627         (write_pieced_value): Likewise.
2628
2629 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2630
2631         * dwarf2loc.c (bits_to_bytes): New function.
2632         (read_pieced_value): Fix offset calculations for register pieces
2633         on big-endian targets.
2634         (write_pieced_value): Likewise.
2635
2636 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2637
2638         * dwarf2loc.c (read_pieced_value): Remove buffer_size variable.
2639         (write_pieced_value): Likewise.
2640
2641 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2642
2643         * dwarf2loc.c (write_pieced_value): When writing to a bit-field,
2644         transfer the source value's least significant bits, instead of its
2645         lowest-addressed ones.  Rename type_len to max_offset.
2646         (read_pieced_value): Mirror above changes to write_pieced_value as
2647         applicable.
2648
2649 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2650
2651         * dwarf2loc.c (write_pieced_value): In DWARF_VALUE_MEMORY,
2652         truncate full bytes from dest_offset_bits before using it as an
2653         offset into the buffer.
2654
2655 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2656
2657         * dwarf2loc.c (write_pieced_value): Include transfer size in
2658         byte-wise check.
2659
2660 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2661
2662         * dwarf2loc.c (write_pieced_value): Fix copy/paste error in the
2663         calculation of this_size.
2664
2665 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2666
2667         * dwarf2loc.c (read_pieced_value): Respect parent value's offset
2668         when targeting a bit-field.
2669         (write_pieced_value): Likewise.
2670
2671 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2672
2673         * dwarf2loc.c (struct piece_closure) <addr_size>: Remove field.
2674         (allocate_piece_closure): Drop addr_size parameter.
2675         (dwarf2_evaluate_loc_desc_full): Adjust call to
2676         allocate_piece_closure.
2677
2678 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2679
2680         PR gdb/21226
2681         * dwarf2loc.c (read_pieced_value): Anchor stack value pieces at
2682         the LSB end, independent of endianness.
2683
2684 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
2685
2686         * dwarf2loc.c (write_pieced_value): Fix order of calculations for
2687         size capping.
2688
2689 2017-06-13  Yao Qi  <yao.qi@linaro.org>
2690
2691         * mips-linux-nat.c: Move include features/mips*-linux.c to
2692         mips-linux-tdep.c.
2693         (_initialize_mips_linux_nat): Move initialize_tdesc_mips* calls
2694         to mips-linux-tdep.c.
2695         * mips-linux-tdep.c: Include features/mips*-linux.c
2696         (_initialize_mips_linux_tdep): Call initialize_tdesc_mips*
2697         functions.
2698         * mips-linux-tdep.h (tdesc_mips_linux): Declare.
2699         (tdesc_mips_dsp_linux, tdesc_mips64_linux): Declare.
2700         (tdesc_mips64_dsp_linux): Declare.
2701
2702 2017-06-12  Tom Tromey  <tom@tromey.com>
2703
2704         * valprint.h (val_print_type_code_int): Remove.
2705         * valprint.c (generic_val_print_int): Always call
2706         val_print_scalar_formatted.
2707         (val_print_type_code_int): Remove.
2708         * printcmd.c (print_scalar_formatted): Handle options->format==0.
2709         * f-valprint.c (f_val_print): Use val_print_scalar_formatted.
2710         * c-valprint.c (c_val_print_int): Use val_print_scalar_formatted.
2711         * ada-valprint.c (ada_val_print_num): Use
2712         val_print_scalar_formatted.
2713
2714 2017-06-12  Tom Tromey  <tom@tromey.com>
2715
2716         * printcmd.c (print_scalar_formatted): Unify the two switches.
2717         Don't convert scalars to LONGEST.
2718
2719 2017-06-12  Tom Tromey  <tom@tromey.com>
2720
2721         PR exp/16225:
2722         * valprint.h (print_decimal_chars): Update.
2723         * valprint.c (maybe_negate_by_bytes): New function.
2724         (print_decimal_chars): Add "is_signed" argument.
2725         * printcmd.c (print_scalar_formatted): Update.
2726
2727 2017-06-12  Tom Tromey  <tom@tromey.com>
2728
2729         PR exp/16225:
2730         * valprint.h (print_binary_chars, print_hex_chars): Update.
2731         * valprint.c (val_print_type_code_int): Update.
2732         (print_binary_chars): Add "zero_pad" argument.
2733         (emit_octal_digit): New function.
2734         (print_octal_chars): Don't zero-pad.
2735         (print_decimal_chars): Likewise.
2736         (print_hex_chars): Add "zero_pad" argument.
2737         * sh64-tdep.c (sh64_do_fp_register): Update.
2738         * regcache.c (regcache::dump): Update.
2739         * printcmd.c (print_scalar_formatted): Update.
2740         * infcmd.c (default_print_one_register_info): Update.
2741
2742 2017-06-12  Pedro Alves  <palves@redhat.com>
2743             Alan Hayward  <alan.hayward@arm.com>
2744
2745         * mips-tdep.c (MAX_MIPS_ABI_REGSIZE): New.
2746         (mips_eabi_push_dummy_call): Rename local 'regsize' to
2747         'abi_regsize'.  Rename local array 'valbuf' to 'ref_valbuf', and
2748         use MAX_MIPS_ABI_REGSIZE instead of MAX_REGISTER_SIZE to size it.
2749         Assert that abi_regsize bytes fit in 'ref_valbuf'.
2750
2751 2017-06-12  Pedro Alves  <palves@redhat.com>
2752
2753         * dwarf2read.c (mapped_symtab::data): Now a vector of
2754         symtab_index_entry instead of vector of
2755         std::unique_ptr<symtab_index_entry>.  All users adjusted to check
2756         whether an element's name is NULL instead of checking whether the
2757         element itself is NULL.
2758         (find_slot): Change return type.  Adjust.
2759         (hash_expand, , add_index_entry, uniquify_cu_indices)
2760         (write_hash_table): Adjust.
2761
2762 2017-06-12  Pedro Alves  <palves@redhat.com>
2763
2764         * dwarf2read.c (recursively_count_psymbols): New function.
2765         (write_psymtabs_to_index): Call it to compute number of psyms and
2766         pass estimate size of psyms_seen to unordered_set's ctor.
2767
2768 2017-06-12  Pedro Alves  <palves@redhat.com>
2769
2770         * dwarf2read.c (write_hash_table): Check if key already exists
2771         before emplacing.
2772
2773 2017-06-12  Pedro Alves  <palves@redhat.com>
2774
2775         * dwarf2read.c (data_buf::append_space): Rename to...
2776         (data_buf::grow): ... this, and make private.  Adjust all callers.
2777         (data_buf::append_uint): New method.
2778         (add_address_entry, write_one_signatured_type)
2779         (write_psymtabs_to_index): Use it.
2780
2781 2017-06-12  Pedro Alves  <palves@redhat.com>
2782
2783         * dwarf2read.c (file_write(FILE *, const void *, size_t)): Delete.
2784         (file_write (FILE *, const std::vector<Elem>&)): Delete.
2785         (data_buf::file_write): Call ::fwrite directly.
2786
2787 2017-06-12  Pedro Alves  <palves@redhat.com>
2788
2789         * dwarf2read.c (uniquify_cu_indices): Use std::unique and
2790         std::vector::erase.
2791
2792 2017-06-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
2793
2794         Code cleanup: C++ify .gdb_index producer.
2795         * dwarf2read.c: Include <unordered_set> and <unordered_map>.
2796         (MAYBE_SWAP) [WORDS_BIGENDIAN]: Cast to offset_type.
2797         (struct strtab_entry, hash_strtab_entry, eq_strtab_entry)
2798         (create_strtab, add_string): Remove.
2799         (file_write, data_buf): New.
2800         (struct symtab_index_entry): Use std::vector for cu_indices.
2801         (struct mapped_symtab): Use std::vector for data.
2802         (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry)
2803         (create_symbol_hash_table, create_mapped_symtab, cleanup_mapped_symtab):
2804         Remove.
2805         (find_slot): Change return type.  Update it to the new data structures.
2806         (hash_expand, add_index_entry): Update it to the new data structures.
2807         (offset_type_compare): Remove.
2808         (uniquify_cu_indices): Update it to the new data structures.
2809         (c_str_view, c_str_view_hasher, vector_hasher): New.
2810         (add_indices_to_cpool): Remove.
2811         (write_hash_table): Update it to the new data structures.
2812         (struct psymtab_cu_index_map, hash_psymtab_cu_index)
2813         (eq_psymtab_cu_index): Remove.
2814         (psym_index_map): New typedef.
2815         (struct addrmap_index_data): Change addr_obstack pointer to data_buf
2816         reference and std::unordered_map for cu_index_htab.
2817         (add_address_entry, add_address_entry_worker, write_address_map)
2818         (write_psymbols): Update it to the new data structures.
2819         (write_obstack): Remove.
2820         (struct signatured_type_index_data): Change types_list to a data_buf
2821         reference and psyms_seen to a std::unordered_set reference.
2822         (write_one_signatured_type, recursively_write_psymbols)
2823         (write_psymtabs_to_index): Update it to the new data structures.
2824
2825 2017-06-11  Simon Marchi  <simon.marchi@ericsson.com>
2826
2827         * NEWS (Changes since GDB 8.0): Announce {set,show} debug
2828         separate-debug-file commands.
2829         * symfile.h (separate_debug_file_debug): New global.
2830         * symfile.c (separate_debug_file_debug): New global.
2831         (separate_debug_file_exists, find_separate_debug_file): Add
2832         debug output.
2833         (_initialize_symfile): Add "set debug separate-debug-file"
2834         command.
2835         * build-id.c (build_id_to_debug_bfd,
2836         find_separate_debug_file_by_buildid): Add debug output.
2837
2838 2017-06-10  Simon Marchi  <simon.marchi@polymtl.ca>
2839
2840         * gdbarch.sh (displaced_step_free_closure): Remove.
2841         * gdbarch.h, gdbarch.c: Re-generate.
2842         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't set
2843         displaced_step_free_closure.
2844         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
2845         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
2846         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
2847         * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
2848         * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
2849         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
2850         * arch-utils.h (simple_displaced_step_free_closure): Remove.
2851         * arch-utils.c (simple_displaced_step_free_closure): Remove.
2852         * infrun.c (displaced_step_clear): Call xfree instead of
2853         gdbarch_displaced_step_free_closure.
2854
2855 2017-06-08  Sergio Durigan Junior  <sergiodj@redhat.com>
2856
2857         * common/common-utils.c (stringify_argv): Check for "arg[0] !=
2858         NULL".
2859
2860 2017-06-08 Alan Hayward  <alan.hayward@arm.com>
2861
2862         * mn10300-tdep.c (MN10300_MAX_REGISTER_SIZE): Add.
2863         (mn10300_extract_return_value): Use MN10300_MAX_REGISTER_SIZE.
2864         (mn10300_push_dummy_call): Likewise.
2865
2866 2017-06-08  Alan Hayward  <alan.hayward@arm.com>
2867
2868         * mi/mi-main.c (register_changed_p): Use value_contents_eq.
2869
2870 2017-06-08  Alan Hayward  <alan.hayward@arm.com>
2871
2872         * mi/mi-main.c (register_changed_p): Use cooked_read_value.
2873
2874 2017-06-07  Sergio Durigan Junior  <sergiodj@redhat.com>
2875
2876         * NEWS (Changes since GDB 8.0): Announce that GDBserver is now
2877         able to start inferiors using a shell.
2878         (New remote packets): Announce new packet "QStartupWithShell".
2879         * remote.c: Add PACKET_QStartupWithShell.
2880         (extended_remote_create_inferior): Handle new
2881         PACKET_QStartupWithShell.
2882         (remote_protocol_features) <QStartupWithShell>: New entry for
2883         PACKET_QStartupWithShell.
2884         (_initialize_remote): Call "add_packet_config_cmd" for
2885         QStartupShell.
2886
2887 2017-06-07  Sergio Durigan Junior  <sergiodj@redhat.com>
2888             Pedro Alves  <palves@redhat.com>
2889
2890         * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-inferior.h"
2891         and "nat/fork-inferior.h".
2892         * common/common-inferior.h: New file, with contents from
2893         "gdb/inferior.h".
2894         * commom/common-utils.c: Include "common-utils.h".
2895         (stringify_argv): New function.
2896         * common/common-utils.h (stringify_argv): New prototype.
2897         * configure.nat: Add "fork-inferior.o" as a dependency for
2898         "*linux*", "fbsd*" and "nbsd*" hosts.
2899         * corefile.c (get_exec_file): Update comment.
2900         * darwin-nat.c (darwin_ptrace_him): Call "gdb_startup_inferior"
2901         instead of "startup_inferior".
2902         (darwin_create_inferior): Call "add_thread_silent" after
2903         "fork_inferior".
2904         * fork-child.c: Cleanup unnecessary includes.
2905         (SHELL_FILE): Move to "common/common-fork-child.c".
2906         (environ): Likewise.
2907         (exec_wrapper): Initialize.
2908         (get_exec_wrapper): New function.
2909         (breakup_args): Move to "common/common-fork-child.c"; rename to
2910         "breakup_args_for_exec".
2911         (escape_bang_in_quoted_argument): Move to
2912         "common/common-fork-child.c".
2913         (saved_ui): New variable.
2914         (prefork_hook): New function.
2915         (postfork_hook): Likewise.
2916         (postfork_child_hook): Likewise.
2917         (gdb_startup_inferior): Likewise.
2918         (fork_inferior): Move to "common/common-fork-child.c".  Update
2919         function to support gdbserver.
2920         (startup_inferior): Likewise.
2921         * gdbcore.h (get_exec_file): Remove declaration.
2922         * gnu-nat.c (gnu_create_inferior): Call "gdb_startup_inferior"
2923         instead of "startup_inferior".  Call "add_thread_silent" after
2924         "fork_inferior".
2925         * inf-ptrace.c: Include "nat/fork-inferior.h" and "utils.h".
2926         (inf_ptrace_create_inferior): Call "gdb_startup_inferior"
2927         instead of "startup_inferior".  Call "add_thread_silent" after
2928         "fork_inferior".
2929         * inferior.h: Include "common-inferior.h".
2930         (trace_start_error): Move to "common/common-utils.h".
2931         (trace_start_error_with_name): Likewise.
2932         (fork_inferior): Move prototype to "nat/fork-inferior.h".
2933         (startup_inferior): Likewise.
2934         (gdb_startup_inferior): New prototype.
2935         * nat/fork-inferior.c: New file, with contents from "fork-child.c".
2936         * nat/fork-inferior.h: New file.
2937         * procfs.c (procfs_init_inferior): Call "gdb_startup_inferior"
2938         instead of "startup_inferior".  Call "add_thread_silent" after
2939         "fork_inferior".
2940         * target.h (target_terminal_init): Move prototype to
2941         "target/target.h".
2942         (target_terminal_inferior): Likewise.
2943         (target_terminal_ours): Likewise.
2944         * target/target.h (target_terminal_init): New prototype, moved
2945         from "target.h".
2946         (target_terminal_inferior): Likewise.
2947         (target_terminal_ours): Likewise.
2948         * utils.c (gdb_flush_out_err): New function.
2949
2950 2017-06-07  Sergio Durigan Junior  <sergiodj@redhat.com>
2951
2952         * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-gdbthread.h".
2953         * common/common-gdbthread.h: New file, with parts from
2954         "gdb/gdbthread.h".
2955         * gdbthread.h: Include "common-gdbthread.h".
2956         (switch_to_thread): Moved to "common/common-gdbthread.h".
2957
2958 2017-06-07  Sergio Durigan Junior  <sergiodj@redhat.com>
2959
2960         * Makefile.in (SFILES): Add "common/job-control.c".
2961         (HFILES_NO_SRCDIR): Add "common/job-control.h".
2962         (COMMON_OBS): Add "job-control.o".
2963         * common/job-control.c: New file, with contents from
2964         "gdb/inflow.c".
2965         * common/job-control.h: New file, with contents from "terminal.h".
2966         * fork-child.c: Include "job-control.h".
2967         * inflow.c: Include "job-control.h".
2968         (gdb_setpgid): Move to "common/common-inflow.c".
2969         (_initialize_inflow): Move setting of "job_control" to
2970         "handle_job_control".
2971         * terminal.h (job_control): Moved to "common/common-terminal.h".
2972         (gdb_setpgid): Likewise.
2973         * top.c: Include "job_control.h".
2974         * utils.c: Likewise.
2975         (job_control): Moved to "job-control.c".
2976
2977 2017-06-07  Pedro Alves  <palves@redhat.com>
2978
2979         * Makefile.in (SFILES): Add gdb_regex.c.
2980         (COMMON_OBS): Add gdb_regex.o.
2981         * ada-lang.c (ada_add_standard_exceptions)
2982         (ada_add_exceptions_from_frame, name_matches_regex)
2983         (ada_add_global_exceptions, ada_exceptions_list_1): Change regex
2984         parameter type to compiled_regex.  Adjust.
2985         (ada_exceptions_list): Use compiled_regex.
2986         * break-catch-throw.c (exception_catchpoint::pattern): Now a
2987         std::unique_ptr<compiled_regex>.
2988         (exception_catchpoint::~exception_catchpoint): Remove regfree
2989         call.
2990         (check_status_exception_catchpoint): Adjust to use compiled_regex.
2991         (handle_gnu_v3_exceptions): Adjust to use compiled_regex.
2992         * breakpoint.c (solib_catchpoint::compiled): Now a
2993         std::unique_ptr<compiled_regex>.
2994         (solib_catchpoint::~solib_catchpoint): Remove regfree call.
2995         (check_status_catch_solib): Adjust to use compiled_regex.
2996         (add_solib_catchpoint): Adjust to use compiled_regex.
2997         * cli/cli-cmds.c (apropos_command): Use compiled_regex.
2998         * cli/cli-decode.c (apropos_cmd): Change regex parameter to
2999         compiled_regex reference.  Adjust to use it.
3000         * cli/cli-decode.h: Remove struct re_pattern_buffer forward
3001         declaration.  Include "gdb_regex.h".
3002         (apropos_cmd): Change regex parameter to compiled_regex reference.
3003         * gdb_regex.c: New file.
3004         * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Delete
3005         declarations.
3006         (class compiled_regex): New.
3007         * linux-tdep.c: Include "common/gdb_optional.h".
3008         (struct mapping_regexes): New, factored out from
3009         mapping_is_anonymous_p, and adjusted to use compiled_regex.
3010         (mapping_is_anonymous_p): Use mapping_regexes wrapped in a
3011         gdb::optional and remove cleanups.  Adjust to compiled_regex.
3012         * probe.c: Include "common/gdb_optional.h".
3013         (collect_probes): Use compiled_regex and gdb::optional and remove
3014         cleanups.
3015         * skip.c: Include "common/gdb_optional.h".
3016         (skiplist_entry::compiled_function_regexp): Now a
3017         gdb::optional<compiled_regex>.
3018         (skiplist_entry::compiled_function_regexp_is_valid): Delete field.
3019         (free_skiplist_entry): Remove regfree call.
3020         (compile_skip_regexp, skip_rfunction_p): Adjust to use
3021         compiled_regex and gdb::optional.
3022         * symtab.c: Include "common/gdb_optional.h".
3023         (search_symbols): Use compiled_regex and gdb::optional.
3024         * utils.c (do_regfree_cleanup, make_regfree_cleanup)
3025         (get_regcomp_error, compile_rx_or_error): Delete.  Some bits moved
3026         to gdb_regex.c.
3027
3028 2017-06-07  Alan Hayward  <alan.hayward@arm.com>
3029
3030         * regcache.c (regcache::save): Avoid buffer use.
3031         (regcache::dump): Likewise.
3032
3033 2017-06-07  Alan Hayward  <alan.hayward@arm.com>
3034
3035         * sh-tdep.c (sh_pseudo_register_read): Remove
3036         MAX_REGISTER_SIZE.
3037         (sh_pseudo_register_write): Likewise.
3038         * sh64-tdep.c (sh64_pseudo_register_read): Likewise.
3039         (sh64_pseudo_register_write): Likewise
3040
3041 2017-06-07  Alan Hayward  <alan.hayward@arm.com>
3042
3043         * aarch64-tdep.c (aarch64_store_return_value): Use
3044         V_REGISTER_SIZE.
3045         (aarch64_pseudo_read_value): Likewise.
3046         (aarch64_pseudo_write): Likewise.
3047
3048 2017-06-06  Yao Qi  <yao.qi@linaro.org>
3049
3050         * regformats/regdef.h (set_register_cache): Remove the
3051         declaration.
3052
3053 2017-06-06 Alan Hayward  <alan.hayward@arm.com>
3054
3055         * frame.c (frame_unwind_register_signed): Use
3056         frame_unwind_register_value.
3057
3058 2017-06-06  Pedro Alves  <palves@redhat.com>
3059
3060         PR breakpoints/21553
3061         * breakpoint.c (create_breakpoints_sal_default)
3062         (init_breakpoint_sal, create_breakpoint_sal): Use
3063         gdb::unique_xmalloc_ptr for string parameters.
3064         (create_breakpoint): Constify 'extra_string' and 'cond_string'
3065         parameters.  Replace cleanups with gdb::unique_xmalloc_ptr.
3066         (base_breakpoint_create_breakpoints_sal)
3067         (bkpt_create_breakpoints_sal, tracepoint_create_breakpoints_sal)
3068         (strace_marker_create_breakpoints_sal)
3069         (create_breakpoints_sal_default): Use gdb::unique_xmalloc_ptr for
3070         string parameters.
3071         * breakpoint.h (breakpoint_ops::create_breakpoints_sal): Use
3072         gdb::unique_xmalloc_ptr for string parameters.
3073         (create_breakpoint): Constify 'extra_string' and 'cond_string'
3074         parameters.
3075
3076 2017-06-06  Alan Hayward  <alan.hayward@arm.com>
3077
3078         * alpha-tdep.c (alpha_register_to_value): Use
3079         get_frame_register_value.
3080         (alpha_value_to_register): Use ALPHA_REGISTER_SIZE.
3081
3082 2017-06-06  Alan Hayward  <alan.hayward@arm.com>
3083
3084         * ia64-tdep.c (IA64_MAX_FP_REGISTER_SIZE) Add.
3085         (ia64_register_to_value): Use IA64_MAX_FP_REGISTER_SIZE.
3086         (ia64_value_to_register): Likewise.
3087         (ia64_extract_return_value): Likewise.
3088         (ia64_store_return_value): Likewise.
3089         (ia64_push_dummy_call): Likewise.
3090
3091 2017-06-04  Joel Brobecker  <brobecker@adacore.com>
3092
3093         GDB 8.0 released.
3094
3095 2017-06-03  Simon Marchi  <simon.marchi@ericsson.com>
3096
3097         * x86-linux-nat.c (struct arch_lwp_info): Remove.
3098
3099 2017-06-03  Simon Marchi  <simon.marchi@polymtl.ca>
3100
3101         * linux-nat.c (linux_nat_post_attach_wait): Remove FIRST
3102         parameter.
3103         (linux_nat_attach): Adjust call to linux_nat_post_attach_wait.
3104
3105 2017-06-02  Simon Marchi  <simon.marchi@ericsson.com>
3106
3107         * event-loop.c (poll_timers): Unallocate timer using delete
3108         instead of xfree.
3109
3110 2017-06-02  Simon Marchi  <simon.marchi@polymtl.ca>
3111
3112         * breakpoint.h (struct breakpoint_ops) <dtor>: Remove.
3113         (struct breakpoint) <~breakpoint>: New.
3114         (struct watchpoint): Inherit from breakpoint.
3115         <~watchpoint>: New.
3116         <base>: Remove.
3117         (struct tracepoint): Inherit from breakpoint.
3118         <base>: Remove.
3119         * breakpoint.c (longjmp_breakpoint_ops): Remove.
3120         (struct longjmp_breakpoint): Inherit from breakpoint.
3121         <~longjmp_breakpoint>: New.
3122         <base>: Remove.
3123         (new_breakpoint_from_type): Remove casts.
3124         (watchpoint_in_thread_scope): Remove reference to base field.
3125         (watchpoint_del_at_next_stop): Likewise.
3126         (update_watchpoint): Likewise.
3127         (watchpoint_check): Likewise.
3128         (bpstat_check_watchpoint): Likewise.
3129         (set_longjmp_breakpoint): Likewise.
3130         (struct fork_catchpoint): Inherit from breakpoint.
3131         <base>: Remove.
3132         (struct solib_catchpoint): Inherit from breakpoint.
3133         <~solib_catchpoint>: New.
3134         <base>: Remove.
3135         (dtor_catch_solib): Change to ...
3136         (solib_catchpoint::~solib_catchpoint): ... this.
3137         (breakpoint_hit_catch_solib): Remove reference to base field.
3138         (add_solib_catchpoint): Likewise.
3139         (create_fork_vfork_event_catchpoint): Likewise.
3140         (struct exec_catchpoint): Inherit from breakpoint.
3141         <~exec_catchpoint>: New.
3142         <base>: Remove.
3143         (dtor_catch_exec): Change to ...
3144         (exec_catchpoint::~exec_catchpoint): ... this.
3145         (dtor_watchpoint): Change to ...
3146         (watchpoint::~watchpoint): ... this.
3147         (watch_command_1): Remove reference to base field.
3148         (catch_exec_command_1): Likewise.
3149         (base_breakpoint_dtor): Change to ...
3150         (breakpoint::~breakpoint): ... this.
3151         (base_breakpoint_ops): Remove dtor field value.
3152         (longjmp_bkpt_dtor): Change to ...
3153         (longjmp_breakpoint::~longjmp_breakpoint): ... this.
3154         (strace_marker_create_breakpoints_sal): Remove reference to base
3155         field.
3156         (delete_breakpoint): Don't manually call breakpoint destructor.
3157         (create_tracepoint_from_upload): Remove reference to base field.
3158         (trace_pass_set_count): Likewise.
3159         (initialize_breakpoint_ops): Don't initialize
3160         momentary_breakpoint_ops, don't set dtors.
3161         * ada-lang.c (struct ada_catchpoint): Inherit from breakpoint.
3162         <~ada_catchpoint>: New.
3163         <base>: Remove.
3164         (create_excep_cond_exprs): Remove reference to base field.
3165         (dtor_exception): Change to ...
3166         (ada_catchpoint::~ada_catchpoint): ... this.
3167         (dtor_catch_exception): Remove.
3168         (dtor_catch_exception_unhandled): Remove.
3169         (dtor_catch_assert): Remove.
3170         (create_ada_exception_catchpoint): Remove reference to base
3171         field.
3172         (initialize_ada_catchpoint_ops): Don't set dtors.
3173         * break-catch-sig.c (struct signal_catchpoint): Inherit from
3174         breakpoint.
3175         <~signal_catchpoint>: New.
3176         <base>: Remove.
3177         (signal_catchpoint_dtor): Change to ...
3178         (signal_catchpoint::~signal_catchpoint): ... this.
3179         (create_signal_catchpoint): Remove reference to base field.
3180         (initialize_signal_catchpoint_ops): Don't set dtor.
3181         * break-catch-syscall.c (struct syscall_catchpoint): Inherit
3182         from breakpoint.
3183         <~syscall_catchpoint>: New.
3184         <base>: Remove.
3185         (dtor_catch_syscall): Change to ...
3186         (syscall_catchpoint::~syscall_catchpoint): ... this.
3187         (create_syscall_event_catchpoint): Remove reference to base
3188         field.
3189         (initialize_syscall_catchpoint_ops): Don't set dtor.
3190         * break-catch-throw.c (struct exception_catchpoint): Inherit
3191         from breakpoint.
3192         <~exception_catchpoint>: New.
3193         <base>: Remove.
3194         (dtor_exception_catchpoint): Change to ...
3195         (exception_catchpoint::~exception_catchpoint): ... this.
3196         (handle_gnu_v3_exceptions): Remove reference to base field.
3197         (initialize_throw_catchpoint_ops): Don't set dtor.
3198         * ctf.c (ctf_get_traceframe_address): Remove reference to base
3199         field.
3200         * remote.c (remote_get_tracepoint_status): Likewise.
3201         * tracefile-tfile.c (tfile_get_traceframe_address): Likewise.
3202         * tracefile.c (tracefile_fetch_registers): Likewise.
3203         * tracepoint.c (actions_command): Likewise.
3204         (validate_actionline): Likewise.
3205         (tfind_1): Likewise.
3206         (get_traceframe_location): Likewise.
3207         (find_matching_tracepoint_location): Likewise.
3208         (parse_tracepoint_status): Likewise.
3209         * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
3210
3211 2017-06-02  Simon Marchi  <simon.marchi@polymtl.ca>
3212
3213         * breakpoint.c (struct longjmp_breakpoint): New struct.
3214         (is_tracepoint_type): Change return type to bool.
3215         (is_longjmp_type): New function.
3216         (new_breakpoint_from_type): Handle longjmp kinds of breakpoints.
3217         (set_raw_breakpoint_without_location): Use
3218         new_breakpoint_from_type.
3219         (set_raw_breakpoint): Likewise.
3220
3221 2017-06-02  Simon Marchi  <simon.marchi@polymtl.ca>
3222
3223         * breakpoint.c (new_breakpoint_from_type): New function.
3224         (create_breakpoint_sal): Use new_breakpoint_from_type and
3225         unique_ptr.
3226         (create_breakpoint): Likewise.
3227
3228 2017-05-31  Simon Marchi  <simon.marchi@ericsson.com>
3229
3230         * memattr.c (mem_info_command): Rename to ...
3231         (info_mem_command): ... this.
3232         (mem_enable_command): Rename to ...
3233         (enable_mem_command): ... this.
3234         (mem_disable_command): Rename to ...
3235         (disable_mem_command): ... this.
3236         (mem_delete_command): Rename to ...
3237         (delete_mem_command): ... this.
3238         (_initialize_mem): Adjust function names.
3239
3240 2017-05-31  Markus Metzger  <markus.t.metzger@intel.com>
3241
3242         * btrace.c (handle_pt_insn_events): New.
3243         (ftrace_add_pt): Call handle_pt_insn_events.  Rename ERRCODE into
3244         STATUS.  Split into this and ...
3245         (handle_pt_insn_event_flags): ... this.
3246
3247 2017-05-31  Markus Metzger  <markus.t.metzger@intel.com>
3248
3249         * configure.ac: Check for pt_insn_event, struct pt_insn.enabled,
3250         and struct pt_insn.resynced.
3251         * configure: Regenerated.
3252         * config.in: Regenerated.
3253
3254 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3255
3256         * btrace.c (ftrace_find_call_by_number): New function.
3257         (ftrace_new_function): Store objects, not pointers.
3258         (ftrace_find_call_by_number, ftrace_new_return, ftrace_new_switch,
3259         ftrace_new_gap, ftrace_update_function,
3260         ftrace_compute_global_level_offset, btrace_stich_bts, btrace_clear,
3261         btrace_insn_get, btrace_insn_get_error, btrace_insn_end,
3262         btrace_insn_next, btrace_insn_prev, ptrace_find_insn_by_number,
3263         btrace_ends_with_single_insn, btrace_call_get): Account for
3264         btrace_thread_info::functions now storing objects.
3265         * btrace.h (struct btrace_thread_info): Add constructor.
3266         (struct btrace_thread_info) <functions>: Make std::vector.
3267         (struct btrace_thread_info) <prev, next, up, insn, errcode, flags):
3268         Initialize with default values.
3269         * record-btrace.c (record_btrace_frame_sniffer): Account for
3270         btrace_thread_info::functions now storing objects.
3271
3272 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3273
3274         * btrace.c: Remove typedef bfun_s.
3275         (ftrace_new_gap): Directly add gaps to the list of gaps.
3276         (btrace_bridge_gaps, btrace_compute_ftrace_bts, pt_btrace_insn_flags,
3277         ftrace_add_pt, btrace_compute_ftrace_pt, btrace_compute_ftrace_1,
3278         btrace_finalize_ftrace, btrace_compute_ftrace): Use std::vector
3279         instead of gdb VEC.
3280
3281 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3282
3283         * btrace.c (ftrace_fixup_caller, ftrace_new_return, ftrace_connect_bfun,
3284         ftrace_bridge_gap): Replace references to btrace_thread_info::segment
3285         with btrace_thread_info::next_segment and
3286         btrace_thread_info::prev_segment.
3287         * btrace.h: Remove struct btrace_func_link.
3288         (struct btrace_function): Replace pair of function segment pointers
3289         with pair of indices.
3290         * python/py-record-btrace.c (btpy_call_prev_sibling,
3291         btpy_call_next_sibling): Replace references to
3292         btrace_thread_info::segment with btrace_thread_info::next_segment and
3293         btrace_thread_info::prev_segment.
3294         * record-btrace.c (record_btrace_frame_this_id): Use
3295         btrace_find_call_by_number.
3296
3297 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3298
3299         * btrace.c (ftrace_new_function, ftrace_fixup_level,
3300         ftrace_connect_bfun, ftrace_bridge_gap, btrace_bridge_gaps,
3301         btrace_insn_next, btrace_insn_prev): Remove references to
3302         btrace_thread_info::flow.
3303         * btrace.h (struct btrace_function): Remove FLOW.
3304
3305 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3306
3307         * btrace.c (ftrace_find_call_by_number): New function.
3308         (ftrace_update_caller, ftrace_new_call, ftrace_new_tailcall,
3309         ftrace_get_caller, ftrace_find_call, ftrace_new_return,
3310         ftrace_match_backtrace, ftrace_connect_bfun, ftrace_connect_backtrace,
3311         ftrace_bridge_gap, btrace_bridge_gaps): Use btrace_function::up as an
3312         index.
3313         * btrace.h (struct btrace_function): Turn UP into an index.
3314         * python/py-record-btrace.c (btpy_call_up): Use btrace_function::up
3315         as an index.
3316         * record-btrace.c (record_btrace_frame_unwind_stop_reason,
3317         record_btrace_frame_prev_register, record_btrace_frame_sniffer,
3318         record_btrace_tailcall_frame_sniffe): Use btrace_find_call_by_number.
3319
3320 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3321
3322         * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
3323         ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
3324         ftrace_update_function, ftrace_compute_global_level_offset,
3325         btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt,
3326         btrace_stitch_bts, btrace_fetch, btrace_clear, btrace_insn_number,
3327         btrace_insn_end, btrace_is_empty): Remove references to
3328         btrace_thread_info::begin and btrace_thread_info::end.
3329         * btrace.h (struct btrace_thread_info): Remove BEGIN and END.
3330         (struct btrace_thread_info) <functions>: Adjust comment.
3331         * record-btrace.c (record_btrace_start_replaying): Remove reference to
3332         btrace_thread_info::begin.
3333
3334 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3335
3336         * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
3337         ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
3338         ftrace_update_function): Remove arguments that implicitly were always
3339         BTINFO->END.
3340         (btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt):
3341         Don't pass BTINFO->END.
3342
3343 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3344
3345         * btrace.c: (btrace_insn_get, btrace_insn_get_error, btrace_insn_number,
3346         btrace_insn_begin, btrace_insn_end, btrace_insn_next, btrace_insn_prev,
3347         btrace_find_insn_by_number): Replace function segment pointer with
3348         index.
3349         (btrace_insn_cmp): Simplify.
3350         * btrace.h: (struct btrace_insn_iterator) Rename index to
3351         insn_index.  Replace function segment pointer with index into function
3352         segment vector.
3353         * record-btrace.c (record_btrace_call_history): Replace function
3354         segment pointer use with index.
3355         (record_btrace_frame_sniffer): Retrieve function call segment through
3356         vector.
3357         (record_btrace_set_replay): Remove defunc't safety check.
3358
3359 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3360
3361         * btrace.c (btrace_ends_with_single_insn): New function.
3362         (btrace_call_get, btrace_call_number, btrace_call_begin,
3363         btrace_call_end, btrace_call_next, btrace_call_prev,
3364         btrace_find_call_by_number): Use index into call segment vector
3365         instead of pointer.
3366         (btrace_call_cmp): Simplify.
3367         * btrace.h (struct btrace_call_iterator): Replace function call segment
3368         pointer with index into vector.
3369         * record-btrace.c (record_btrace_call_history): Use index instead of
3370         pointer.
3371
3372 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3373
3374         * btrace.c (btrace_insn_begin, btrace_insn_end,
3375         btrace_find_insn_by_number): Add btinfo to iterator.
3376         * btrace.h (struct btrace_insn_iterator): Add btinfo.
3377
3378 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3379
3380         * btrace.c (ftrace_new_function): Add btrace_thread_info to arguments
3381         and save pointers directly.
3382         (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return,
3383         ftrace_new_switch, ftrace_new_gap, ftrace_update_function,
3384         ftrace_add_pt): Add btrace_thread_info to arguments.  Adjust for
3385         changed signature of functions.
3386         (btrace_compute_ftrace_pt): Adjust for changed signature of functions.
3387         (btrace_fetch): Remove code that adds btrace_function pointers to
3388         vector of btrace_functions.
3389         (btrace_clear): Simplify freeing vector of btrace_functions.
3390
3391 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
3392
3393         * btrace.c (btrace_fetch, btrace_clear, btrace_find_insn_by_number):
3394         Replace VEC_* with std::vector functions.
3395         * btrace.h: Add include: vector. Remove typedef for DEF_VEC_P.
3396         (struct btrace_thread_info)<functions>: Change type to std::vector.
3397
3398 2017-05-30  Simon Marchi  <simon.marchi@ericsson.com>
3399
3400         * NEWS (Changes in GDB 8.0): Remove extra empty line.  Move
3401         "Removed targets and native configurations" up.  Merge duplicate
3402         "New commands" sub-sections.  Add "New options" sub-sections.
3403
3404 2017-05-26  Alan Hayward  <alan.hayward@arm.com>
3405
3406         * defs.h (copy_integer_to_size): New declaration.
3407         * findvar.c (copy_integer_to_size): New function.
3408         (do_cint_test): New selftest function.
3409         (copy_integer_to_size_test): Likewise.
3410         (_initialize_findvar): Likewise.
3411         * mips-fbsd-tdep.c (mips_fbsd_supply_reg): Use raw_supply_integer.
3412         (mips_fbsd_collect_reg): Use raw_collect_integer.
3413         * mips-linux-tdep.c (supply_32bit_reg): Use raw_supply_integer.
3414         (mips64_fill_gregset): Use raw_collect_integer
3415         (mips64_fill_fpregset): Use raw_supply_integer.
3416         * regcache.c (regcache::raw_supply_integer): New function.
3417         (regcache::raw_collect_integer): Likewise.
3418         * regcache.h: (regcache::raw_supply_integer): New declaration.
3419         (regcache::raw_collect_integer): Likewise.
3420
3421 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3422
3423         * Makefile.in (SFILES): Add gdbarch-selftests.c.
3424         (COMMON_OBS): Add gdbarch-selftests.o.
3425         * frame.c [GDB_SELF_TESTS] (create_new_frame): New function.
3426         * frame.h [GDB_SELF_TESTS] (create_new_frame): Declare.
3427         * gdbarch-selftests.c: New file.
3428         * regcache.h (regcache) <~regcache>: Mark it virtual if
3429         GDB_SELF_TEST.
3430         <raw_write>: Likewise.
3431
3432 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3433
3434         * regcache.c (current_regcache): Change it to
3435         regcache::current_regcache.
3436         (regcache_observer_target_changed): Update.
3437         (regcache_thread_ptid_changed): Make it a regcache static
3438         method.
3439         (regcache_thread_ptid_changed): Update.
3440         (class regcache_access): New.
3441         (current_regcache_test): Update.
3442         (_initialize_regcache): Update.
3443         * regcache.h: Include forward_list.
3444         (regcache): Declare regcache_thread_ptid_changed and declare
3445         registers_changed_ptid as friend.
3446
3447 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3448
3449         * i387-tdep.c (i387_register_to_value): Use register_size
3450         instead of TYPE_LENGTH.
3451         * m68k-tdep.c (m68k_register_to_value): Likewise.
3452
3453 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3454
3455         * i387-tdep.c (i387_convert_register_p): Return false if type
3456         code isn't TYPE_CODE_FLT.
3457
3458 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3459
3460         * alpha-tdep.c (alpha_convert_register_p): Return true if type
3461         length is 4.
3462         (alpha_register_to_value): Remove type length check.
3463         (alpha_value_to_register): Likewise.
3464
3465 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3466
3467         * ia64-tdep.c (ia64_convert_register_p): Check type's code is
3468         TYPE_CODE_FLT.
3469
3470 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3471
3472         * m68k-tdep.c (m68k_convert_register_p): Check type's code is
3473         TYPE_CODE_FLT or not.
3474
3475 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3476
3477         * alpha-tdep.c (alpha_gdbarch_init): Use XCNEW instead of XNEW.
3478         * avr-tdep.c (avr_gdbarch_init): Likewise.
3479         * bfin-tdep.c (bfin_gdbarch_init): Likewise.
3480         * cris-tdep.c (cris_gdbarch_init): Likewise.
3481         * ft32-tdep.c (ft32_gdbarch_init): Likewise.
3482         * lm32-tdep.c (lm32_gdbarch_init): Likewise.
3483         * m32r-tdep.c (m32r_gdbarch_init): Likewise.
3484         * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
3485         * mep-tdep.c (mep_gdbarch_init): Likewise.
3486         * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
3487         * mips-tdep.c (mips_gdbarch_init): Likewise.
3488         * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
3489         * moxie-tdep.c (moxie_gdbarch_init): Likewise.
3490         * msp430-tdep.c (msp430_gdbarch_init): Likewise.
3491         * sh64-tdep.c (sh64_gdbarch_init): Likewise.
3492         * v850-tdep.c (v850_gdbarch_init): Likewise.
3493
3494 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3495
3496         * selftest-arch.c (tests_with_arch): Call registers_changed
3497         and reinit_frame_cache.
3498         * selftest.c (run_self_tests): Likewise.
3499
3500 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3501
3502         * rs6000-tdep.c (gdb_print_insn_powerpc): Remove.
3503         (rs6000_gdbarch_init): Don't call set_gdbarch_print_insn.
3504
3505 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3506
3507         * rl78-tdep.c (rl78_gdbarch_init): Don't call
3508         set_gdbarch_print_insn.
3509
3510 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3511
3512         * h8300-tdep.c (h8300_gdbarch_init): Don't call
3513         set_gdbarch_print_insn.
3514
3515 2017-05-24  Yao Qi  <yao.qi@linaro.org>
3516
3517         * alpha-tdep.c (alpha_gdbarch_init): Don't call
3518         set_gdbarch_print_insn.
3519         * arc-tdep.c (arc_gdbarch_init): Likewise.
3520         * arch-utils.c: include dis-asm.h.
3521         (default_print_insn): New function.
3522         * arch-utils.h (default_print_insn): Declare.
3523         * avr-tdep.c (avr_gdbarch_init): Don't call set_gdbarch_print_insn.
3524         * bfin-tdep.c (bfin_gdbarch_init): Likewise.
3525         * cris-tdep.c (cris_delayed_get_disassembler): Remove.
3526         (cris_gdbarch_init): Don't call set_gdbarch_print_insn.
3527         * frv-tdep.c (frv_gdbarch_init): Likewise.
3528         * ft32-tdep.c (ft32_gdbarch_init): Likewise.
3529         * gdbarch.sh (print_insn): Use default_print_insn.
3530         * gdbarch.c: Regenerated.
3531         * hppa-tdep.c (hppa_gdbarch_init): Likewise.
3532         * iq2000-tdep.c (iq2000_gdbarch_init): Likewise.
3533         * lm32-tdep.c (lm32_gdbarch_init): Likewise.
3534         * m32c-tdep.c (m32c_gdbarch_init): Likewise.
3535         * m32r-tdep.c (m32r_gdbarch_init): Likewise.
3536         * m68hc11-tdep.c (gdb_print_insn_m68hc11): Remove.
3537         (m68hc11_gdbarch_init): Don't call set_gdbarch_print_insn.
3538         * m68k-tdep.c (m68k_gdbarch_init): Likewise.
3539         * m88k-tdep.c (m88k_gdbarch_init): Likewise.
3540         * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
3541         * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
3542         * moxie-tdep.c (moxie_gdbarch_init): Likewise.
3543         * msp430-tdep.c (msp430_gdbarch_init): Likewise.
3544         * mt-tdep.c (mt_gdbarch_init): Likewise.
3545         * nds32-tdep.c (nds32_gdbarch_init): Likewise.
3546         * nios2-tdep.c (nios2_print_insn): Remove.
3547         (nios2_gdbarch_init): Don't call set_gdbarch_print_insn.
3548         * rx-tdep.c (rx_gdbarch_init): Likewise.
3549         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
3550         * score-tdep.c (score_print_insn): Remove.
3551         (score_gdbarch_init): Don't call set_gdbarch_print_insn.
3552         * sh-tdep.c (sh_gdbarch_init): Likewise.
3553         * sh64-tdep.c (sh64_gdbarch_init): Likewise.
3554         * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
3555         * tic6x-tdep.c (tic6x_print_insn): Remove.
3556         (tic6x_gdbarch_init): Don't call set_gdbarch_print_insn.
3557         * tilegx-tdep.c (tilegx_gdbarch_init): Likewise.
3558         * v850-tdep.c (v850_gdbarch_init): Likewise.
3559         * vax-tdep.c (vax_gdbarch_init): Likewise.
3560         * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
3561         * xtensa-tdep.c (xtensa_gdbarch_init): Likewise.
3562
3563 2017-05-23  John Baldwin  <jhb@FreeBSD.org>
3564
3565         * mips-fbsd-tdep.c (MIPS_PC_REGNUM): Remove.
3566         (MIPS_FP0_REGNUM): Remove.
3567         (MIPS_FSR_REGNUM): Remove.
3568         (mips_fbsd_supply_fpregs): Use mips_regnum.
3569         (mips_fbsd_supply_gregs): Likewise.
3570         (mips_fbsd_collect_fpregs): Likewise.
3571         (mips_fbsd_collect_gregs): Likewise.
3572
3573 2017-05-23  John Baldwin  <jhb@FreeBSD.org>
3574
3575         * mips-fbsd-nat.c (getregs_supplies): Fix upper bound comparison.
3576         (getpfpregs_supplies): New function.
3577         (mips_fbsd_fetch_inferior_registers): Remove early exit and use
3578         getfpregs_supplies.
3579         (mips_fbsd_store_inferior_registers): Likewise.
3580
3581 2017-05-22  Pedro Alves <palves@redhat.com>
3582
3583         * MAINTAINERS (Host/Native): Add John Baldwin as FreeBSD
3584         maintainer.
3585
3586 2017-05-22  Alan Hayward  <alan.hayward@arm.com>
3587
3588         * ppc-linux-nat.c (fetch_register): Use PPC_MAX_REGISTER_SIZE.
3589         (store_register): Likewise.
3590         * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
3591         (get_decimal_float_return_value): Likewise.
3592         (do_ppc_sysv_return_value): Likewise.
3593         (ppc64_sysv_abi_push_integer): Likewise.
3594         (ppc64_sysv_abi_push_freg): Likewise.
3595         (ppc64_sysv_abi_return_value_base): Likewise.
3596         (ppc64_sysv_abi_return_value): Likewise.
3597         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
3598         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
3599         * rs6000-nat.c: Likewise.
3600         * rs6000-tdep.c (rs6000_register_to_value): Likewise.
3601         (rs6000_value_to_register): Likewise.
3602         * ppc-tdep.h (PPC_MAX_REGISTER_SIZE): Add.
3603
3604 2017-05-21  Tom Tromey  <tom@tromey.com>
3605
3606         PR rust/21466:
3607         * rust-lang.c (rust_print_type) <TYPE_CODE_ARRAY>: Print unsized
3608         arrays as "[T]", not "[T; ]".
3609
3610 2017-05-19  Tom Tromey  <tom@tromey.com>
3611
3612         PR rust/21484:
3613         * rust-lang.c (exp_descriptor_rust): New function.
3614         (rust_language_defn): Use it.
3615         * p-lang.c (pascal_language_defn): Update.
3616         * opencl-lang.c (opencl_language_defn): Update.
3617         * objc-lang.c (objc_language_defn): Update.
3618         * m2-lang.c (m2_language_defn): Update.
3619         * language.h (struct language_defn)
3620         <la_watch_location_expression>: New member.
3621         * language.c (unknown_language_defn, auto_language_defn)
3622         (local_language_defn): Update.
3623         * go-lang.c (go_language_defn): Update.
3624         * f-lang.c (f_language_defn): Update.
3625         * d-lang.c (d_language_defn): Update.
3626         * c-lang.h (c_watch_location_expression): Declare.
3627         * c-lang.c (c_watch_location_expression): New function.
3628         (c_language_defn, cplus_language_defn, asm_language_defn)
3629         (minimal_language_defn): Use it.
3630         * breakpoint.c (watch_command_1): Call
3631         la_watch_location_expression.
3632         * ada-lang.c (ada_language_defn): Update.
3633
3634 2017-05-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3635
3636         PR tui/21482
3637         * gdb_curses.h (NOMACROS): Define.
3638         (NCURSES_NOMACROS): Define.
3639
3640 2017-05-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3641
3642         PR tui/21482
3643         * tui/tui-windata.c (tui_erase_data_content): Cast last mvwaddstr
3644         arg to char *.
3645         * tui/tui-wingeneral.c (box_win): Likewise.
3646         * tui/tui-winsource.c (tui_erase_source_content): Likewise.
3647         (tui_show_source_line): Likewise.
3648         (tui_show_exec_info_content): Likewise.
3649
3650 2017-05-19  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>
3651
3652         * sparc-tdep.c (sparc_structure_return_p)
3653         (sparc_arg_on_registers_p): New functions.
3654         (sparc32_store_arguments): Use them.
3655         * sparc64-tdep.c (sparc64_16_byte_align_p)
3656         (sparc64_store_floating_fields, sparc64_extract_floating_fields):
3657         Handle TYPE_CODE_ARRAY.
3658
3659 2017-05-17  Yao Qi  <yao.qi@linaro.org>
3660
3661         * cli/cli-decode.c (add_alias_cmd): New function.
3662         * command.h (add_alias_cmd): Declare.
3663         * infcmd.c (_initialize_infcmd): Don't call add_com_alias,
3664         instead call add_alias_cmd.
3665
3666 2017-05-17  Pedro Alves  <palves@redhat.com>
3667
3668         * Makefile.in (nat_extra_makefile_frag): Rename to ...
3669         (nat_makefile_frag): ... this.  All references updated.
3670         * configure.ac: Likewise.
3671         * configure.nat: Likewise.  Enhance comments.
3672         * configure: Regenerate.
3673
3674 2017-05-15  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3675
3676         * procfs.c (procfs_create_inferior): Change prototype to match
3677         definition.
3678
3679 2017-05-13  Eli Zaretskii  <eliz@gnu.org>
3680
3681         * tui/tui.c (tui_enable): Cast "unknown" to 'char *' to avoid a
3682         C++ compiler warning.
3683
3684 2017-05-12  Tom Tromey  <tom@tromey.com>
3685
3686         PR rust/21483:
3687         * rust-lang.c (rust_evaluate_subexp) <STRUCTOP_STRUCT>: Don't
3688         recurse, just call value_struct_elt directly.
3689
3690 2017-05-12  Tom Tromey  <tom@tromey.com>
3691
3692         * rust-lang.c (rust_dump_subexp_body) <STRUCTOP_ANONYMOUS,
3693         OP_RUST_ARRAY>: Fix.
3694
3695 2017-05-12  Tom Tromey  <tom@tromey.com>
3696
3697         * rust-lang.c (rust_print_subexp): Replace "return" with "break".
3698
3699 2017-05-09  Yao Qi  <yao.qi@linaro.org>
3700
3701         * regcache.c: Include <forward_list>.
3702         (struct regcache_list): Remove.
3703         (current_regcache): Update.
3704         (get_thread_arch_aspace_regcache): Update for std::forward_list.
3705         (regcache_thread_ptid_changed): Likewise.
3706         (registers_changed_ptid): Likewise.
3707         (current_regcache_size): Likewise.
3708
3709 2017-05-09  Yao Qi  <yao.qi@linaro.org>
3710
3711         * regcache.c [GDB_SELF_TEST]: Include selftest.h.
3712         (current_regcache_size): New function.
3713         (current_regcache_test): New function.
3714         (_initialize_regcache) [GDB_SELF_TEST]: Register the unit test.
3715
3716 2017-05-08  Alan Hayward  <alan.hayward@arm.com>
3717
3718         * mips-tdep.c (mips_o32_return_value): Remove unused buffer.
3719         (print_gp_register_row): Use get_frame_register_value.
3720
3721 2017-05-08  Alan Hayward  <alan.hayward@arm.com>
3722
3723         * mips-linux-tdep.c (mips_supply_gregset): Use raw_supply_zeroed.
3724         (mips_supply_fpregset): Likewise.
3725         (mips64_supply_gregset): Likewise.
3726
3727 2017-05-08  Alan Hayward  <alan.hayward@arm.com>
3728
3729         * mn10300-linux-tdep.c (am33_supply_gregset_method): Use 
3730         regcache->raw_supply_zeroed.
3731
3732 2017-05-06  Sergio Durigan Junior  <sergiodj@redhat.com>
3733
3734         * configure.nat: Rearrange 'case' statements to match
3735         host before cpu.
3736
3737 2017-05-06  Sergio Durigan Junior  <sergiodj@redhat.com>
3738
3739         * Makefile.in: Remove "@host_makefile_frag@".  Add variables
3740         NAT_FILE, NATDEPFILES, NAT_CDEPS, LOADLIBES, MH_CFLAGS, XM_CLIBS,
3741         NAT_GENERATED_FILES, HAVE_NATIVE_GCORE_HOST.  Add
3742         "@nat_extra_makefile_frag@".
3743         (Makefile): Remove dependency on "@frags@".
3744         ($(GNULIB_BUILDDIR)/Makefile): Likewise.
3745         (data-directory/Makefile): Likewise.
3746         * config/aarch64/linux.mh: Deleted; moved contents to
3747         "gdb/configure.nat".
3748         * config/alpha/alpha-linux.mh: Likewise.
3749         * config/alpha/nbsd.mh: Likewise.
3750         * config/arm/linux.mh: Likewise.
3751         * config/arm/nbsdelf.mh: Likewise.
3752         * config/i386/cygwin.mh: Likewise.
3753         * config/i386/cygwin64.mh: Likewise.
3754         * config/i386/darwin.mh: Likewise.
3755         * config/i386/fbsd.mh: Likewise.
3756         * config/i386/fbsd64.mh: Likewise.
3757         * config/i386/go32.mh: Likewise.
3758         * config/i386/i386gnu.mh: Likewise.
3759         * config/i386/i386sol2.mh: Likewise.
3760         * config/i386/linux.mh: Likewise.
3761         * config/i386/linux64.mh: Likewise.
3762         * config/i386/mingw.mh: Likewise.
3763         * config/i386/mingw64.mh: Likewise.
3764         * config/i386/nbsd64.mh: Likewise.
3765         * config/i386/nbsdelf.mh: Likewise.
3766         * config/i386/nto.mh: Likewise.
3767         * config/i386/obsd.mh: Likewise.
3768         * config/i386/obsd64.mh: Likewise.
3769         * config/i386/sol2-64.mh: Likewise.
3770         * config/ia64/linux.mh: Likewise.
3771         * config/m32r/linux.mh: Likewise.
3772         * config/m68k/linux.mh: Likewise.
3773         * config/m68k/nbsdelf.mh: Likewise.
3774         * config/m68k/obsd.mh: Likewise.
3775         * config/m88k/obsd.mh: Likewise.
3776         * config/mips/fbsd.mh: Likewise.
3777         * config/mips/linux.mh: Likewise.
3778         * config/mips/nbsd.mh: Likewise.
3779         * config/mips/obsd64.mh: Likewise.
3780         * config/pa/linux.mh: Likewise.
3781         * config/pa/nbsd.mh: Likewise.
3782         * config/pa/obsd.mh: Likewise.
3783         * config/powerpc/aix.mh: Likewise.
3784         * config/powerpc/fbsd.mh: Likewise.
3785         * config/powerpc/linux.mh: Likewise.
3786         * config/powerpc/nbsd.mh: Likewise.
3787         * config/powerpc/obsd.mh: Likewise.
3788         * config/powerpc/ppc64-linux.mh: Likewise.
3789         * config/powerpc/spu-linux.mh: Likewise.
3790         * config/s390/linux.mh: Likewise.
3791         * config/sh/nbsd.mh: Likewise.
3792         * config/sparc/fbsd.mh: Likewise.
3793         * config/sparc/linux.mh: Likewise.
3794         * config/sparc/linux64.mh: Likewise.
3795         * config/sparc/nbsd64.mh: Likewise.
3796         * config/sparc/nbsdelf.mh: Likewise.
3797         * config/sparc/obsd64.mh: Likewise.
3798         * config/sparc/sol2.mh: Likewise.
3799         * config/tilegx/linux.mh: Likewise.
3800         * config/vax/nbsdelf.mh: Likewise.
3801         * config/vax/obsd.mh: Likewise.
3802         * config/xtensa/linux.mh: Likewise.
3803         * config/i386/i386gnu.mn: New file, with excerpts from
3804         "config/i386/i386gnu.mh".
3805         * configure: Regenerate.
3806         * configure.ac: Rewrite code to use "gdb/configure.nat" instead of
3807         *.mh files under "gdb/config".
3808         * configure.nat: New file, with contents from the
3809         "gdb/config/*/*.mh" files.
3810
3811 2017-05-05  Tim Wiederhake  <tim.wiederhake@intel.com>
3812
3813         * btrace.c (btrace_clear): Free insn vector.
3814
3815 2017-05-05  Pedro Alves  <palves@redhat.com>
3816
3817         * warning.m4 (build_warnings): Add -Wno-error=maybe-uninitialized.
3818         * configure: Regenerate.
3819
3820 2017-05-04  Pedro Alves  <palves@redhat.com>
3821
3822         * Makefile.in (SFILES): Add progspace-and-thread.c.
3823         (HFILES_NO_SRCDIR): Add progspace-and-thread.h.
3824         (COMMON_OBS): Add progspace-and-thread.o.
3825         * breakpoint.c: Include "progspace-and-thread.h".
3826         (update_inserted_breakpoint_locations)
3827         (insert_breakpoint_locations, create_longjmp_master_breakpoint):
3828         Use scoped_restore_current_pspace_and_thread.
3829         (create_std_terminate_master_breakpoint): Use
3830         scoped_restore_current_program_space.
3831         (remove_breakpoint): Use scoped_restore_current_pspace_and_thread.
3832         (print_breakpoint_location): Use
3833         scoped_restore_current_program_space.
3834         (bp_loc_is_permanent): Use
3835         scoped_restore_current_pspace_and_thread.
3836         (resolve_sal_pc): Use scoped_restore_current_pspace_and_thread.
3837         (download_tracepoint_locations): Use
3838         scoped_restore_current_pspace_and_thread.
3839         (breakpoint_re_set): Use scoped_restore_current_pspace_and_thread.
3840         * exec.c (exec_close_1): Use scoped_restore_current_program_space.
3841         (enum step_over_calls_kind): Moved from inferior.h.
3842         (class scoped_restore_current_thread): New class.
3843         * gdbthread.h (make_cleanup_restore_current_thread): Delete
3844         declaration.
3845         (scoped_restore_current_thread): New class.
3846         * infcmd.c: Include "common/gdb_optional.h".
3847         (continue_1, proceed_after_attach): Use
3848         scoped_restore_current_thread.
3849         (notice_new_inferior): Use scoped_restore_current_thread.
3850         * inferior.c: Include "progspace-and-thread.h".
3851         (restore_inferior, save_current_inferior): Delete.
3852         (add_inferior_command, clone_inferior_command): Use
3853         scoped_restore_current_pspace_and_thread.
3854         * inferior.h (scoped_restore_current_inferior): New class.
3855         * infrun.c: Include "progspace-and-thread.h" and
3856         "common/gdb_optional.h".
3857         (follow_fork_inferior): Use
3858         scoped_restore_current_pspace_and_thread.
3859         (scoped_restore_exited_inferior): New class.
3860         (handle_vfork_child_exec_or_exit): Use
3861         scoped_restore_exited_inferior,
3862         scoped_restore_current_pspace_and_thread,
3863         scoped_restore_current_thread and scoped_restore.
3864         (fetch_inferior_event): Use scoped_restore_current_thread.
3865         * linespec.c (decode_line_full, decode_line_1): Use
3866         scoped_restore_current_program_space.
3867         * mi/mi-main.c: Include "progspace-and-thread.h".
3868         (exec_continue): Use scoped_restore_current_thread.
3869         (mi_cmd_exec_run): Use scoped_restore_current_pspace_and_thread.
3870         (mi_cmd_trace_frame_collected): Use scoped_restore_current_thread.
3871         * proc-service.c (ps_pglobal_lookup): Use
3872         scoped_restore_current_program_space.
3873         * progspace-and-thread.c: New file.
3874         * progspace-and-thread.h: New file.
3875         * progspace.c (release_program_space, clone_program_space): Use
3876         scoped_restore_current_program_space.
3877         (restore_program_space, save_current_program_space)
3878         (save_current_space_and_thread): Delete.
3879         (switch_to_program_space_and_thread): Moved to
3880         progspace-and-thread.c.
3881         * progspace.h (save_current_program_space)
3882         (save_current_space_and_thread): Delete declarations.
3883         (scoped_restore_current_program_space): New class.
3884         * remote.c (remote_btrace_maybe_reopen): Use
3885         scoped_restore_current_thread.
3886         * symtab.c: Include "progspace-and-thread.h".
3887         (skip_prologue_sal): Use scoped_restore_current_pspace_and_thread.
3888         * thread.c (print_thread_info_1): Use
3889         scoped_restore_current_thread.
3890         (struct current_thread_cleanup): Delete.
3891         (do_restore_current_thread_cleanup)
3892         (restore_current_thread_cleanup_dtor): Rename/convert both to ...
3893         (scoped_restore_current_thread::~scoped_restore_current_thread):
3894         ... this new dtor.
3895         (make_cleanup_restore_current_thread): Rename/convert to ...
3896         (scoped_restore_current_thread::scoped_restore_current_thread):
3897         ... this new ctor.
3898         (thread_apply_all_command): Use scoped_restore_current_thread.
3899         (thread_apply_command): Use scoped_restore_current_thread.
3900         * tracepoint.c (tdump_command): Use scoped_restore_current_thread.
3901         * varobj.c (value_of_root_1): Use scoped_restore_current_thread.
3902
3903 2017-05-04  Pedro Alves  <palves@redhat.com>
3904
3905         * thread.c (make_cleanup_restore_current_thread): Move
3906         find_thread_ptid call before the is_stopped call.  Assert that the
3907         thread is found.  Replace is_stopped call by checking the thread's
3908         state directly.  Remove unnecessary NULL-thread check.
3909
3910 2017-05-04  Pedro Alves  <palves@redhat.com>
3911
3912         * corelow.c (thread_section_name): New class.
3913         (get_core_register_section, get_core_siginfo): Use it.
3914
3915 2017-05-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
3916
3917         * corelow.c (sniff_core_bfd): Remove extra semicolon.
3918         (get_core_register_section): Remove xfree of NULL pointer.
3919
3920 2017-05-03  Alan Hayward  <alan.hayward@arm.com>
3921
3922         * frv-linux-tdep.c (frv_linux_supply_gregset): Use raw_supply_zeroed.
3923         * regcache.c (regcache::raw_supply_zeroed): New function.
3924         * regcache.h (regcache::raw_supply_zeroed): New declaration.
3925
3926 2017-05-03  Simon Marchi  <simon.marchi@ericsson.com>
3927
3928         * gdbarch.sh: Remove commented out definition of
3929         TARGET_CHAR_BIT.
3930         * gdbarch.h: Re-generate.
3931
3932 2017-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
3933
3934         * configure: Regenerate.
3935
3936 2017-05-02  Simon Marchi  <simon.marchi@ericsson.com>
3937
3938         * solib-target.c (solib_target_relocate_section_addresses):
3939         Remove num_section_bases, num_bases, segment_bases variables.
3940
3941 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
3942
3943         * common/gdb_vecs.h (DEF_VEC_I (CORE_ADDR)): Remove.
3944
3945 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
3946
3947         * solib-target.c: Include <vector>
3948         (struct lm_info_target) <~lm_info_target>: Remove.
3949         <segment_bases, section_bases>: Change type to
3950         std::vector<CORE_ADDR>.
3951         (library_list_start_segment, library_list_start_section,
3952         library_list_end_library,
3953         solib_target_relocate_section_addresses): Adjust.
3954
3955 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
3956
3957         * gdbarch.sh (software_single_step): Change return type to
3958         std::vector<CORE_ADDR>.
3959         * gdbarch.c, gdbarch.h: Re-generate.
3960         * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
3961         Adjust.
3962         (arm_deal_with_atomic_sequence_raw): Adjust.
3963         (thumb_get_next_pcs_raw): Adjust.
3964         (arm_get_next_pcs_raw): Adjust.
3965         (arm_get_next_pcs): Adjust.
3966         * arch/arm-get-next-pcs.h (arm_get_next_pcs): Adjust.
3967         * aarch64-tdep.c (aarch64_software_single_step): Adjust.
3968         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Adjust.
3969         (alpha_software_single_step): Adjust.
3970         * alpha-tdep.h (alpha_software_single_step): Adjust.
3971         * arm-linux-tdep.c (arm_linux_software_single_step): Adjust.
3972         * arm-tdep.c (arm_software_single_step): Adjust.
3973         (arm_breakpoint_kind_from_current_state): Adjust.
3974         * arm-tdep.h (arm_software_single_step): Adjust.
3975         * breakpoint.c (insert_single_step_breakpoint): Adjust.
3976         * cris-tdep.c (cris_software_single_step): Adjust.
3977         * mips-tdep.c (mips_deal_with_atomic_sequence): Adjust.
3978         (micromips_deal_with_atomic_sequence): Adjust.
3979         (deal_with_atomic_sequence): Adjust.
3980         (mips_software_single_step): Adjust.
3981         * mips-tdep.h (mips_software_single_step): Adjust.
3982         * moxie-tdep.c (moxie_software_single_step): Adjust.
3983         * nios2-tdep.c (nios2_software_single_step): Adjust.
3984         * ppc-tdep.h (ppc_deal_with_atomic_sequence): Adjust.
3985         * rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
3986         * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
3987         * s390-linux-tdep.c (s390_software_single_step): Adjust.
3988         * sparc-tdep.c (sparc_software_single_step): Adjust.
3989         * spu-tdep.c (spu_software_single_step): Adjust.
3990         * tic6x-tdep.c (tic6x_software_single_step): Adjust.
3991
3992 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
3993
3994         * gdbarch.sh: Use semi-colon as field separator instead of colon.
3995         * gdbarch.h: Re-generate.
3996
3997 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
3998
3999         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-instruction.o.
4000         (SUBDIR_PYTHON_SRCS): Add py-instruction.c.
4001         * python/py-instruction.c, python/py-instruction.h: New file.
4002         * python/py-record.c: Add py-instruction.h include.
4003         (gdbpy_initialize_record): Make gdb.Instruction a super class of
4004         gdb.RecordInstruction.
4005         * python/python-internal.h: Add gdbpy_initialize_instruction
4006         declaration.
4007         * python/python.c (do_start_initialization): Add
4008         gdbpy_initialize_instruction.
4009
4010 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
4011
4012         * python/py-record-btrace.c (BTPY_REQUIRE_VALID_CALL, btpy_call_type):
4013         Remove.
4014         (btrace_func_from_recpy_func): New function.
4015         (btpy_call_new, btpy_number, btpy_hash, btpy_richcompare): Remove.
4016         (btpy_call_level, btpy_call_symbol, btpy_call_instructions,
4017         btpy_call_up, btpy_call_prev_sibling, btpy_call_next_sibling): Rename to ...
4018         (recpy_bt_func_level, recpy_bt_func_symbol, recpy_bt_func_instructions,
4019         recpy_bt_func_up, recpy_bt_func_prev, recpy_bt_func_next): This.
4020         Also, use new helper functions.
4021         (btpy_list_item): Use new helper functions.
4022         (recpy_bt_function_call_history): Use new type name.
4023         (btpy_call_getset): Remove.
4024         (gdbpy_initialize_btrace): Remove code to initialize
4025         gdb.BtraceFunctionCall.
4026         * python/py-record-btrace.h (recpy_bt_func_number, recpy_btb_func_level,
4027         recpy_btb_func_symbol, recpy_bt_func_instructions, recpy_bt_func_up,
4028         recpy_bt_func_prev, recpy_bt_func_next): New export.
4029         * python/py-record.c (recpy_func_type): New static object.
4030         (recpy_func_new, recpy_func_level, recpy_func_symbol,
4031         recpy_func_instructions, recpy_func_up, recpy_func_prev,
4032         recpy_func_next): New function.
4033         (recpy_element_hash, recpy_element_richcompare): Updated comment.
4034         (recpy_func_getset): New static object.
4035         (gdbpy_initialize_record): Add code to initialize gdb.RecordInstruction.
4036         * python/py-record.h (recpy_func_type, recpy_func_new): New export.
4037
4038 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
4039
4040         * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN): Remove.
4041         (btpy_object, btpy_insn_type, btpy_new): Remove.
4042         (btpy_list_object): Use gdb.RecordInstruction type instead of
4043         gdb.BtraceInstruction type.
4044         (btrace_insn_from_recpy_insn): New function.
4045         (btpy_insn_or_gap_new): Adjust comment. Use recpy_insn_new instead of
4046         btpy_new.
4047         (btpy_call_new, btpy_list_item): Do not use btpy_new anymore.
4048         (btpy_number, btpy_hash, btpy_call_level, btpy_call_symbol,
4049         btpy_call_instructions, btpy_call_up, btpy_call_prev_sibling,
4050         btpy_call_next_sibling, btpy_richcompare): Use recpy_element_object
4051         instead of btpy_object.
4052         (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
4053         btpy_insn_data, btpy_insn_decode): Rename to ...
4054         (recpy_bt_insn_sal, recpy_bt_insn_pc, recpy_bt_insn_size,
4055         recpy_bt_insn_is_speculative, recpy_bt_insn_data,
4056         recpy_bt_insn_decode): This.  Also, use new helper functions.
4057         (btpy_list_position, recpy_bt_goto): Use recpy_element_object and
4058         recpy_insn_type.
4059         (btpy_insn_getset): Remove.
4060         (gdbpy_initialize_btrace): Remove code to initialize
4061         gdb.BtraceInstruction.  Use recpy_element_object.
4062         * python/py-record-btrace.h (recpy_bt_insn_number, recpy_bt_insn_sal,
4063         recpy_bt_insn_pc, recpy_bt_insn_data, recpy_bt_insn_decoded,
4064         recpy_bt_insn_size, recpy_bt_insn_is_speculative): New export.
4065         * python/py-record.c (recpy_insn_type): New static object.
4066         (recpy_insn_new, recpy_insn_sal, recpy_insn_pc, recpy_insn_data,
4067         recpy_insn_decoded, recpy_insn_size, recpy_insn_is_speculative,
4068         recpy_element_number, recpy_element_hash, recpy_element_richcompare):
4069         New function.
4070         (recpy_insn_getset): New static object.
4071         (gdbpy_initialize_record): Initialize gdb.RecordInstruction.
4072         * python/py-record.h (recpy_element_object): New typedef.
4073         (recpy_insn_type, recpy_insn_new): New export.
4074
4075 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
4076
4077         * py-record-btrace.c (btpy_insn_new): Removed.
4078         (btpy_insn_or_gap_new): New function.
4079         (btpy_insn_error): Removed.
4080         (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
4081         btpy_insn_data, btpy_insn_decode): Remove code path for gaps.
4082         (recpy_bt_replay_position, recpy_bt_begin, recpy_bt_end): Call
4083         btpy_insn_or_gap_new instead of btpy_insn_new.
4084         (btpy_insn_getset): Remove btpy_insn_error.
4085         * py-record.c (recpy_gap_type): New static object.
4086         (recpy_gap_object): New typedef.
4087         (recpy_gap_new, recpy_gap_number, recpy_gap_reason_code,
4088         recpy_gap_reason_string): New function.
4089         (recpy_gap_getset): New static object.
4090         (gdbpy_initialize_record): Initialize gdb.RecordGap type.
4091         * py-record.h (recpy_gap_new): New export.
4092
4093 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
4094
4095         * python/py-record.c (recpy_ptid): Remove.
4096         (recpy_record_getset): Remove recpy_ptid.
4097
4098 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
4099
4100         * btrace.c (btrace_fetch): Set inferior_ptid.
4101         * python/py-record-btrace.c: Add "py-record.h" include.
4102         (recpy_bt_format, recpy_bt_replay_position, recpy_bt_begin,
4103         recpy_bt_end, recpy_bt_instruction_history,
4104         recpy_bt_function_call_history, recpy_bt_goto): Use ptid stored
4105         in gdb.Record object instead of current ptid.
4106         * python/py-record.c: Include new "py-record.h" file.
4107         (recpy_record_object): Moved to py-record.h.
4108         * python/py-record.h: New file.
4109
4110 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
4111
4112         * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN,
4113         BTPY_REQUIRE_VALID_CALL, recpy_bt_function_call_history): Fix
4114         indentation.
4115
4116 2017-05-01  Joel Brobecker  <brobecker@adacore.com>
4117
4118         * MAINTAINERS: Move Daniel Jacobowitz and Mark Kettenis to
4119         the past maintainers section.
4120
4121 2017-04-28  Yao Qi  <yao.qi@linaro.org>
4122
4123         * infcmd.c (get_return_value): Use regcache ctor, and remove
4124         cleanup.
4125
4126 2017-04-28  Yao Qi  <yao.qi@linaro.org>
4127             Pedro Alves  <palves@redhat.com>
4128
4129         * regcache.c (regcache::regcache): New tag dispatch ctor.
4130         (do_cooked_read): Moved above.
4131         (regcache_dup): Use the tag dispatch ctor..
4132         * regcache.h (regcache): Declare ctor, delete copy ctor and
4133         assignment operator, remove friend regcache_dup.
4134
4135 2017-04-28  Yao Qi  <yao.qi@linaro.org>
4136
4137         * regcache.c (regcache_dup): Assert !src->m_readonly_p and
4138         call method save instead of regcache_cpy.
4139         * regcache.h (struct regcache): Make regcache_dup a friend.
4140
4141 2017-04-28  Yao Qi  <yao.qi@linaro.org>
4142
4143         * regcache.c (struct regcache): Move to regcache.h
4144         (regcache::arch): New method.
4145         (regcache_get_ptid): Update.
4146         (get_regcache_arch): Call arch method.
4147         (get_regcache_aspace): Call method aspace.
4148         (register_buffer): Change it to method.
4149         (regcache_save): Change it to regcache::save.
4150         (regcache_restore): Likewise.
4151         (regcache_cpy_no_passthrough): Remove the declaration.
4152         (regcache_cpy): Call methods restore and cpy_no_passthrough.
4153         (regcache_cpy_no_passthrough): Change it to method
4154         cpy_no_passthrough.
4155         (regcache_register_status): Change it to method
4156         get_register_status.
4157         (regcache_invalidate): Change it to method invalidate.
4158         (regcache_thread_ptid_changed): Use methods ptid and set_ptid.
4159         (regcache_raw_update): Change it to method raw_update.
4160         (regcache_raw_read): Likewise.
4161         (regcache_raw_read_signed): Likewise.
4162         (regcache_raw_read_unsigned): Likewise.
4163         (regcache_raw_write_signed): Likewise.
4164         (regcache_raw_write_unsigned): Likewise.
4165         (regcache_cooked_read): Likewise.
4166         (regcache_cooked_read_value): Likewise.
4167         (regcache_cooked_read_signed): Likewise.
4168         (regcache_cooked_read_unsigned): Likewise.
4169         (regcache_cooked_write_signed): Likewise.
4170         (regcache_cooked_write_unsigned): Likewise.
4171         (regcache_raw_set_cached_value): Likewise.
4172         (regcache_raw_write): Likewise.
4173         (regcache_cooked_write): Likewise.
4174         (regcache_xfer_part): Likewise.
4175         (regcache_raw_read_part): Likewise.
4176         (regcache_raw_write_part): Likewise.
4177         (regcache_cooked_read_part): Likewise.
4178         (regcache_cooked_write_part): Likewise.
4179         (regcache_raw_supply): Likewise.
4180         (regcache_raw_collect): Likewise.
4181         (regcache_transfer_regset): Likewise.
4182         (regcache_supply_regset): Likewise.
4183         (regcache_collect_regset): Likewise.
4184         (regcache_debug_print_register): Likewise.
4185         (enum regcache_dump_what): Move it to regcache.h.
4186         (regcache_dump): Change it to method dump.
4187         * regcache.h (enum regcache_dump_what): New.
4188         (class regcache): New.
4189         * target.c (target_fetch_registers): Call method
4190         debug_print_register.
4191         (target_store_registers): Likewise.
4192
4193 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
4194
4195         * windows-nat.c (struct lm_info_windows): Initialize field.
4196         (windows_make_so): Allocate lm_info_windows with new.
4197         (windows_free_so): Free lm_info_windows with delete.
4198
4199 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
4200
4201         * solib-darwin.c (struct lm_info_darwin): Initialize field.
4202         (darwin_current_sos): Allocate lm_info_darwin with new, remove
4203         cleanup.
4204         (darwin_free_so): Free lm_info_darwin with delete.
4205
4206 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
4207
4208         * solib-svr4.h (struct lm_info_svr4): Initialize fields.
4209         <l_addr_p>: Change type to bool.
4210         * solib-svr4.c (lm_info_read): Allocate lm_info_svr4 with new.
4211         (svr4_free_so): Free lm_info_svr4 with delete.
4212         (svr4_copy_library_list): Replace memcpy with call to copy
4213         constructor.
4214         (library_list_start_library, svr4_default_sos): Allocate
4215         lm_info_svr4 with new.
4216
4217 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
4218
4219         * solib-target.c (struct lm_info_target): Add destructor,
4220         initialize fields.
4221         <name>: Change type to std::string.
4222         (library_list_start_library): Allocate lm_info_target with new.
4223         (solib_target_free_library_list): Free lm_info_target with
4224         delete.
4225         (solib_target_current_sos): Adapt to std::string.
4226         (solib_target_free_so): Free lm_info_target with delete.
4227
4228 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
4229
4230         * solib-frv.c (struct lm_info_frv): Add destructor, initialize
4231         fields.
4232         (frv_current_sos): Allocate lm_info_frv with new.
4233         (frv_relocate_main_executable): Free lm_info_frv with delete,
4234         allocate with new.
4235         (frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
4236
4237 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
4238
4239         * solib-frv.c (struct lm_info_frv): Fix indentation.
4240
4241 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
4242
4243         * solib-dsbt.c (struct lm_info_dsbt): Add destructor, initialize
4244         map field.
4245         (dsbt_current_sos): Allocate lm_info_dsbt with new.
4246         (dsbt_relocate_main_executable): Free lm_info_dsbt with delete
4247         and allocate with new.
4248         (dsbt_clear_solib, dsbt_free_so): Free lm_info_dsbt with delete.
4249
4250 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
4251
4252         * solib-aix.c (struct lm_info_aix): Initialize fields in-class.
4253         <filename, member_name>: Change type to std::string.
4254         (solib_aix_new_lm_info, solib_aix_xfree_lm_info): Remove.
4255         (library_list_start_library): Allocate lm_info_aix with new.
4256         (solib_aix_free_library_list, solib_aix_free_so): Free with delete.
4257         (solib_aix_current_sos): Adapt to std::string, copy lm_info_aix
4258         with copy constructor.
4259
4260 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
4261
4262         * solist.h (struct lm_info): Remove.
4263         (struct lm_info_base): New class.
4264         (struct so_list) <lm_info>: Change type to lm_info_base *.
4265         * nto-tdep.c (struct lm_info): Remove.
4266         (lm_addr): Adjust.
4267         * solib-aix.c (struct lm_info): Rename to ...
4268         (struct lm_info_aix): ... this.  Extend lm_info_base.
4269         (lm_info_p): Rename to ...
4270         (lm_info_aix_p): ... this, and adjust.
4271         (solib_aix_new_lm_info, solib_aix_xfree_lm_info,
4272         solib_aix_parse_libraries, library_list_start_library,
4273         solib_aix_free_library_list, solib_aix_parse_libraries,
4274         solib_aix_get_library_list,
4275         solib_aix_relocate_section_addresses, solib_aix_free_so,
4276         solib_aix_get_section_offsets,
4277         solib_aix_solib_create_inferior_hook, solib_aix_current_sos):
4278         Adjust.
4279         (struct solib_aix_inferior_data) <library_list>: Adjust.
4280         * solib-darwin.c (struct lm_info): Rename to ...
4281         (struct lm_info_darwin): ... this.  Extend lm_info_base.
4282         (darwin_current_sos, darwin_relocate_section_addresses): Adjust.
4283         * solib-dsbt.c (struct lm_info): Rename to ...
4284         (struct lm_info_dsbt): ... this.  Extend lm_info_base.
4285         (struct dsbt_info) <main_executable_lm_info): Adjust.
4286         (dsbt_current_sos, dsbt_relocate_main_executable, dsbt_free_so,
4287         dsbt_relocate_section_addresses): Adjust.
4288         * solib-frv.c (struct lm_info): Rename to ...
4289         (struct lm_info_frv): ... this.  Extend lm_info_base.
4290         (main_executable_lm_info): Adjust.
4291         (frv_current_sos, frv_relocate_main_executable, frv_free_so,
4292         frv_relocate_section_addresses, frv_fdpic_find_global_pointer,
4293         find_canonical_descriptor_in_load_object,
4294         frv_fdpic_find_canonical_descriptor): Adjust.
4295         * solib-svr4.c (struct lm_info): Move to solib-svr4.h, renamed
4296         to lm_info_svr4.
4297         (lm_info_read, lm_addr_check, svr4_keep_data_in_core,
4298         svr4_clear_so, svr4_copy_library_list,
4299         library_list_start_library, svr4_default_sos, svr4_read_so_list,
4300         svr4_current_sos, svr4_fetch_objfile_link_map,
4301         solist_update_incremental): Adjust.
4302         * solib-svr4.h (struct lm_info_svr4): Move here from
4303         solib-svr4.c.
4304         * solib-target.c (struct lm_info): Rename to ...
4305         (struct lm_info_target): ... this.  Extend lm_info_base.
4306         (lm_info_p): Rename to ...
4307         (lm_info_target_p): ... this.
4308         (solib_target_parse_libraries, library_list_start_segment,
4309         library_list_start_section, library_list_start_library,
4310         library_list_end_library, solib_target_free_library_list,
4311         solib_target_current_sos, solib_target_free_so,
4312         solib_target_relocate_section_addresses): Adjust.
4313         * windows-nat.c (struct lm_info): Rename to ...
4314         (struct lm_info_windows): ... this.  Extend lm_info_base.
4315         (windows_make_so, handle_load_dll, handle_unload_dll,
4316         windows_xfer_shared_libraries): Adjust.
4317
4318 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
4319
4320         * solib-darwin.c (struct darwin_so_list): Remove.
4321         (darwin_current_sos): Allocate an so_list object instead of a
4322         darwin_so_list, separately allocate an lm_info object.
4323         (darwin_free_so): Free lm_info.
4324
4325 2017-04-28  John Baldwin  <jhb@FreeBSD.org>
4326
4327         * mips-tdep.c (print_gp_register_row): Replace printf_filtered
4328         with fprintf_filtered.
4329
4330 2017-04-28  Yao Qi  <yao.qi@linaro.org>
4331
4332         * regcache.c (regcache::regcache): New function.
4333         (regcache::~regcache): New function.
4334         (regcache_xmalloc_1): Remove.
4335         (regcache_xmalloc): Call new regcache.
4336         (regcache_xfree): Call delete regcache.
4337         (get_thread_arch_aspace_regcache): Call new regcache.
4338
4339 2017-04-28  Yao Qi  <yao.qi@linaro.org>
4340
4341         * mips-linux-nat.c (mips_linux_new_thread): Use ptid method
4342         lwp instead of ptid_get_lwp.
4343
4344 2017-04-28  Yao Qi  <yao.qi@linaro.org>
4345
4346         * mips-linux-nat.c (mips_linux_new_thread): Get lwpid from
4347         lwp_info instead of getting from inferior_ptid.
4348
4349 2017-04-27  Keith Seitz  <keiths@redhat.com>
4350
4351         * gdbtypes.c (LVALUE_REFERENCE_TO_RVALUE_BINDING_BADNESS)
4352         DIFFERENT_REFERENCE_TYPE_BADNESS): Remove.
4353         (CV_CONVERSION_BADNESS): Define.
4354         (rank_one_type): Remove overly restrictive rvalue reference
4355         rank checks.
4356         Add cv-qualifier checks and subranks for type equality.
4357         * gdbtypes.h (REFERENCE_CONVERSION_RVALUE,
4358         REFERENCE_CONVERSION_CONST_LVALUE, CV_CONVERSION_BADNESS,
4359         CV_CONVERSION_CONST, CV_CONVERSION_VOLATILE): Declare.
4360
4361 2017-04-27  Simon Marchi  <simon.marchi@ericsson.com>
4362
4363         * python/py-inferior.c (inferior_to_inferior_object): Increment reference
4364         count when creating the object.
4365
4366 2017-04-27  Sangamesh Mallayya  <sangamesh.swamy@in.ibm.com>
4367             Ulrich Weigand  <uweigand@de.ibm.com>
4368
4369         * xcoffread.c (read_xcoff_symtab): Read correct function auxiliary
4370         entry if xlc -qfuncsect or gcc -ffunction-sections compiler option
4371         is used in AIX.
4372         (read_xcoff_symtab): Handle C_WEAKEXT storage class.
4373         (process_xcoff_symbol): Likewise.
4374         (scan_xcoff_symtab): Likewise.
4375
4376 2017-04-26  Alan Hayward  <alan.hayward@arm.com>
4377
4378         * ia64-tdep.c (examine_prologue): Use get_frame_register_unsigned.
4379         (ia64_sigtramp_frame_prev_register): Use read_memory_unsigned_integer.
4380         (ia64_access_reg): Use get_frame_register_unsigned.
4381         (ia64_access_rse_reg): Likewise.
4382         (ia64_libunwind_frame_prev_register): Likewise.
4383
4384 2017-04-26  Jiong Wang  <jiong.wang@arm.com>
4385
4386         * gdbarch.sh: New gdbarch method execute_dwarf_cfa_vendor_op.
4387         * gdbarch.c: Regenerated.
4388         * gdbarch.h: Regenerated.
4389         * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Made the
4390         visibility external.
4391         (execute_cfa_program): Call execute_dwarf_cfa_vendor_op for CFI
4392         between DW_CFA_lo_user and DW_CFA_high_user inclusive.
4393         (enum cfa_how_kind): Move to ...
4394         (struct dwarf2_frame_state_reg_info): Likewise.
4395         (struct dwarf2_frame_state): Likewise.
4396         * dwarf2-frame.h: ... here.
4397         (dwarf2_frame_state_alloc_regs): New declaration.
4398         * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): New function.
4399         (sparc32_gdbarch_init): Register execute_dwarf_cfa_vendor_op hook.
4400
4401 2017-04-26  Alan Hayward  <alan.hayward@arm.com>
4402
4403         * xtensa-tdep.c (xtensa_pseudo_register_read): Use
4404         regcache_raw_read_unsigned.
4405         (xtensa_pseudo_register_write): Likewise.
4406
4407 2017-04-26  Alan Hayward  <alan.hayward@arm.com>
4408
4409         * nds32-tdep.c (nds32_pseudo_register_read): Abort on errors.
4410         (nds32_pseudo_register_write): Likewise.
4411
4412 2017-04-25  Yao Qi  <yao.qi@linaro.org>
4413
4414         * regcache.c (struct regcache) <readonly_p>: Change its type
4415         to bool.
4416         (regcache_xmalloc_1): Update parameter type and callers update.
4417
4418 2017-04-25  Yao Qi  <yao.qi@linaro.org>
4419
4420         * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
4421         set_gdbarch_wchar_bit.
4422         * arm-tdep.c (arm_gdbarch_init): Likewise.
4423
4424 2017-04-25  Pedro Alves  <palves@redhat.com>
4425
4426         * common/poison.h [!HAVE_IS_TRIVIALLY_COPYABLE] (IsRelocatable)
4427         (BothAreRelocatable, memcopy, memmove): Don't define.
4428         * common/traits.h (__has_feature, HAVE_IS_TRIVIALLY_COPYABLE): New
4429         macros.
4430
4431 2017-04-25  Pedro Alves  <palves@redhat.com>
4432
4433         * common/common-defs.h: Include "common/poison.h".
4434         * common/function-view.h: (Not, Or, Requires): Move to traits.h
4435         and adjust.
4436         * common/poison.h: New file.
4437         * common/traits.h: Include <type_traits>.
4438         (Not, Or, Requires): New, moved from common/function-view.h.
4439
4440 2017-04-25  Pedro Alves  <palves@redhat.com>
4441
4442         * breakpoint.h (struct breakpoint): In-class initialize all
4443         fields.  Make boolean fields "bool".
4444         * breakpoint.c (init_raw_breakpoint_without_location): Remove
4445         memset call and initializations no longer necessary.
4446
4447 2017-04-25  Pedro Alves  <palves@redhat.com>
4448
4449         * btrace.c (pt_btrace_insn_flags): Change parameter type to
4450         reference.
4451         (pt_btrace_insn): New function.
4452         (ftrace_add_pt): Remove memset call and use pt_btrace_insn.
4453
4454 2017-04-25  Pedro Alves  <palves@redhat.com>
4455
4456         * ada-lang.c (ada_catchpoint_location): Now a "class".  Remove
4457         "base" field and inherit from "bp_location" instead.  Add
4458         non-default ctor.
4459         (allocate_location_exception): Use new non-default ctor.
4460         * breakpoint.c (get_first_locp_gte_addr): Remove memset call.
4461         (init_bp_location): Convert to ...
4462         (bp_location::bp_location): ... this new ctor, and remove memset
4463         call.
4464         (base_breakpoint_allocate_location): Use the new non-default ctor.
4465         * breakpoint.h (bp_location): Now a class.  Declare default and
4466         non-default ctors.  In-class initialize all members.
4467         (init_bp_location): Remove declaration.
4468
4469 2017-04-25  Pedro Alves  <palves@redhat.com>
4470
4471         * common/enum-flags.h (enum_flags): Don't implement copy ctor and
4472         assignment operator.
4473
4474 2017-04-24  Yao Qi  <yao.qi@linaro.org>
4475
4476         * doublest.c (convert_doublest_to_floatformat): Call
4477         floatformat_totalsize_bytes.
4478
4479 2017-04-22  Tom Tromey  <tom@tromey.com>
4480
4481         * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
4482         ui_out_emit_list.
4483         * stack.c (print_frame): Use ui_out_emit_list.
4484         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
4485         ui_out_emit_list.
4486         * mi/mi-main.c (print_one_inferior)
4487         (mi_cmd_data_list_register_names)
4488         (mi_cmd_data_list_register_values, mi_cmd_list_features)
4489         (mi_cmd_list_target_features, mi_cmd_trace_frame_collected): Use
4490         ui_out_emit_list.
4491         * mi/mi-interp.c (mi_on_normal_stop_1): Use ui_out_emit_list.
4492         (mi_output_solib_attribs): Use ui_out_emit_list,
4493         ui_out_emit_tuple.
4494         * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_list.
4495         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
4496         (mi_cmd_stack_list_args, list_args_or_locals): Use
4497         ui_out_emit_list.
4498         * disasm.c (do_assembly_only): Use ui_out_emit_list.
4499         * breakpoint.c (print_solib_event, output_thread_groups): Use
4500         ui_out_emit_list.
4501
4502 2017-04-22  Tom Tromey  <tom@tromey.com>
4503
4504         * mi/mi-main.c (print_variable_or_computed): Use ui_out_emit_tuple.
4505         * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_tuple.
4506         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_out_emit_tuple.
4507
4508 2017-04-22  Tom Tromey  <tom@tromey.com>
4509
4510         * tracepoint.c (tvariables_info_1)
4511         (print_one_static_tracepoint_marker): Use ui_out_emit_tuple.
4512
4513 2017-04-22  Tom Tromey  <tom@tromey.com>
4514
4515         * stack.c (print_frame_arg): Use ui_out_emit_tuple,
4516         annotate_arg_emitter.
4517         * breakpoint.c (print_mention_watchpoint)
4518         (print_mention_masked_watchpoint): Use ui_out_emit_tuple.
4519         * annotate.h (struct annotate_arg_emitter): New.
4520
4521 2017-04-22  Tom Tromey  <tom@tromey.com>
4522
4523         * record-btrace.c (record_btrace_insn_history)
4524         (record_btrace_insn_history_range, record_btrace_call_history)
4525         (record_btrace_call_history_range): Use ui_out_emit_tuple.
4526         * thread.c (do_captured_list_thread_ids, print_thread_info_1): Use
4527         ui_out_emit_tuple.
4528         * stack.c (print_frame_info): Use ui_out_emit_tuple.
4529         * solib.c (info_sharedlibrary_command): Use ui_out_emit_tuple.
4530         * skip.c (skip_info): Use ui_out_emit_tuple.
4531         * remote.c (show_remote_cmd): Use ui_out_emit_tuple.
4532         * progspace.c (print_program_space): Use ui_out_emit_tuple.
4533         * probe.c (info_probes_for_ops): Use ui_out_emit_tuple.
4534         * osdata.c (info_osdata): Use ui_out_emit_tuple.
4535         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
4536         ui_out_emit_tuple.
4537         * mi/mi-main.c (print_one_inferior, list_available_thread_groups)
4538         (output_register, mi_cmd_data_read_memory)
4539         (mi_cmd_data_read_memory_bytes, mi_load_progress)
4540         (mi_cmd_trace_frame_collected): Use ui_out_emit_tuple.
4541         * mi/mi-cmd-var.c (mi_cmd_var_list_children, varobj_update_one):
4542         Use ui_out_emit_tuple.
4543         * mi/mi-cmd-stack.c (mi_cmd_stack_list_args): Use
4544         ui_out_emit_tuple.
4545         * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
4546         (mi_cmd_info_gdb_mi_command): Use ui_out_emit_tuple.
4547         * linux-thread-db.c (info_auto_load_libthread_db): Use
4548         ui_out_emit_tuple.
4549         * inferior.c (print_inferior): Use ui_out_emit_tuple.
4550         * gdb_bfd.c (print_one_bfd): Use ui_out_emit_tuple.
4551         * disasm.c (do_mixed_source_and_assembly_deprecated)
4552         (do_mixed_source_and_assembly): Use ui_out_emit_tuple.
4553         * cp-abi.c (list_cp_abis): Use ui_out_emit_tuple.
4554         * cli/cli-setshow.c (cmd_show_list): Use ui_out_emit_tuple.
4555         * breakpoint.c (print_one_breakpoint_location)
4556         (print_one_breakpoint): Use ui_out_emit_tuple.
4557         * auto-load.c (print_script, info_auto_load_cmd): Use
4558         ui_out_emit_tuple.
4559         * ada-tasks.c (print_ada_task_info): Use ui_out_emit_tuple.
4560
4561 2017-04-21  Simon Marchi  <simon.marchi@ericsson.com>
4562
4563         * thread.c (print_thread_info_1): Remove dead code.
4564
4565 2017-04-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
4566
4567         * aarch64-tdep.c (selftests::aarch64_process_record_test): Make it #if
4568         GDB_SELF_TEST.
4569         * arm-tdep.c (selftests::arm_record_test): Likewise.
4570
4571 2017-04-21  Yao Qi  <yao.qi@linaro.org>
4572
4573         * regcache.c (regcache_restore): Remove argument 2.  Replace
4574         argument 3 with regcache.  Get register status from
4575         src->register_status and get register contents from
4576         register_buffer (src, regnum).
4577         (regcache_cpy): Update.
4578
4579 2017-04-19  Pedro Alves  <palves@redhat.com>
4580
4581         * gdbthread.h (thread): Add missing closing parenthesis in
4582         comment.
4583
4584 2017-04-19  Pedro Alves  <palves@redhat.com>
4585
4586         * common/refcounted-object.h: New file.
4587         * gdbthread.h: Include "common/refcounted-object.h".
4588         (thread_info): Inherit from refcounted_object and add comments.
4589         (thread_info::incref, thread_info::decref)
4590         (thread_info::m_refcount): Delete.
4591         (thread_info::deletable): Use the refcounted_object::refcount()
4592         method.
4593         * inferior.c (current_inferior_): Add comment.
4594         (set_current_inferior): Increment/decrement refcounts.
4595         (prune_inferiors, remove_inferior_command): Skip inferiors marked
4596         not-deletable instead of comparing with the current inferior.
4597         (initialize_inferiors): Increment the initial inferior's refcount.
4598         * inferior.h (struct inferior): Forward declare.
4599         Include "common/refcounted-object.h".
4600         (current_inferior, set_current_inferior): Move declaration to
4601         before struct inferior's definition, and fix comment.
4602         (inferior): Inherit from refcounted_object.  Add comments.
4603         * thread.c (switch_to_thread_no_regs): Reference the thread's
4604         inferior pointer directly instead of doing a ptid lookup.
4605         (switch_to_no_thread): New function.
4606         (switch_to_thread(thread_info *)): New function, factored out
4607         from ...
4608         (switch_to_thread(ptid_t)): ... this.
4609         (restore_current_thread): Delete.
4610         (current_thread_cleanup): Remove 'inf_id' and 'was_removable'
4611         fields, and add 'inf' field.
4612         (do_restore_current_thread_cleanup): Check whether old->inf is
4613         alive instead of looking up an inferior by ptid.  Use
4614         switch_to_thread and switch_to_no_thread.
4615         (restore_current_thread_cleanup_dtor): Use old->inf directly
4616         instead of lookup up an inferior by id.  Decref the inferior.
4617         Don't restore 'removable'.
4618         (make_cleanup_restore_current_thread): Same the inferior pointer
4619         in old, instead of the inferior number.  Incref the inferior.
4620         Don't save/clear 'removable'.
4621
4622 2017-04-19  Pedro Alves  <palves@redhat.com>
4623
4624         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
4625         unittests/scoped_restore-selftests.c.
4626         (SUBDIR_UNITTESTS_OBS): Add scoped_restore-selftests.o.
4627         * common/scoped_restore.h (scoped_restore_base): Make "class".
4628         (scoped_restore_base::release): New public method.
4629         (scoped_restore_base::scoped_restore_base): New protected ctor.
4630         (scoped_restore_base::m_saved_var): New protected field.
4631         (scoped_restore_tmpl::scoped_restore_tmpl(T*)): Initialize the
4632         scoped_restore_base base class instead of m_saved_var directly.
4633         (scoped_restore_tmpl::scoped_restore_tmpl(T*, T2)): Likewise.
4634         (scoped_restore_tmpl::scoped_restore_tmpl(const
4635         scoped_restore_tmpl<T>&)): Likewise.
4636         (scoped_restore_tmpl::~scoped_restore_tmpl): Use the saved_var
4637         method.
4638         (scoped_restore_tmpl::saved_var): New method.
4639         (scoped_restore_tmpl::m_saved_var): Delete.
4640         * inferior.h (inferior::detaching): Now a bool.
4641         * infrun.c (prepare_for_detach): Use a scoped_restore instead of a
4642         cleanup.
4643         * unittests/scoped_restore-selftests.c: New file.
4644
4645 2017-04-19  Pedro Alves  <palves@redhat.com>
4646
4647         * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS):
4648         Re-sort in alphabetic order.
4649
4650 2017-04-18  Pedro Alves  <palves@redhat.com>
4651
4652         * xml-support.c (obstack_xml_printf): Delete.
4653         * xml-support.h (obstack_xml_printf): Delete.
4654
4655 2017-04-18  Pedro Alves  <palves@redhat.com>
4656
4657         * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
4658         vdebug, verror, body_text, start_element, end_element, name,
4659         user_data, set_is_xinclude, set_error, expat_parser>: New methods.
4660         <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
4661         is_xinclude>: Make private and add m_ prefix.
4662         (gdb_xml_parser::body_text): New method, based on ...
4663         (gdb_xml_body_text): ... this.  Adjust.
4664         (gdb_xml_parser::vdebug): New method, based on ...
4665         (gdb_xml_debug): ... this.  Adjust.
4666         (gdb_xml_parser::verror): New method, based on ...
4667         (gdb_xml_error): ... this.  Adjust.
4668         (gdb_xml_parser::start_element): New method, based on ...
4669         (gdb_xml_start_element): ... this.  Adjust.
4670         (gdb_xml_start_element_wrapper): Defer to
4671         gdb_xml_parser::start_element and gdb_xml_parser::set_error.
4672         (gdb_xml_parser::end_element): New method, based on ...
4673         (gdb_xml_end_element_wrapper): ... this.  Adjust.
4674         (gdb_xml_parser::~gdb_xml_parser): Adjust.
4675         (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
4676         (gdb_xml_parser::use_dtd): New method, based on ...
4677         (gdb_xml_use_dtd): ... this.  Adjust.
4678         (gdb_xml_parser::parse): New method, based on ...
4679         (gdb_xml_parse): ... this.  Adjust.
4680         (gdb_xml_parse_quick): Adjust to call the parser's parse method.
4681         (xinclude_start_include): Adjust to call the parser's name method.
4682         (xml_xinclude_default, xml_xinclude_start_doctype)
4683         (xml_xinclude_end_doctype): Adjust to call the parser's user_data
4684         method.
4685         (xml_process_xincludes): Adjust to call parser methods.
4686         * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
4687         declarations.
4688
4689 2017-04-18  Pedro Alves  <palves@redhat.com>
4690
4691         * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
4692         gdb::optional<std::string>.
4693         * xml-support.c: Include <string>.
4694         (scope_level::scope_level(scope_level &&))
4695         (scope_level::~scope_level): Delete.
4696         (scope_level::body): Now a std::string.
4697         (gdb_xml_body_text, gdb_xml_end_element): Adjust.
4698         (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
4699         parameter.
4700         (xinclude_parsing_data::~xinclude_parsing_data): Delete.
4701         (xinclude_parsing_data::output): Now a std::string reference.
4702         (xinclude_start_include): Adjust.
4703         (xml_xinclude_default): Adjust.
4704         (xml_process_xincludes): Add 'output' parameter, and return bool.
4705         * xml-support.h (xml_process_xincludes): Add 'output' parameter,
4706         and return bool.
4707         * xml-tdesc.c: Include <unordered_map> and <string>.
4708         (tdesc_xml_cache): Delete.
4709         (tdesc_xml_cache_s): Delete.
4710         (xml_cache): Now an std::unordered_map.
4711         (tdesc_parse_xml): Adjust to use std::string and unordered_map.
4712         (target_fetch_description_xml): Change return type to
4713         gdb::optional<std::string>, and adjust.
4714         * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
4715         (target_fetch_description_xml): Change return type to
4716         gdb::optional<std::string>.
4717
4718 2017-04-18  Pedro Alves  <palves@redhat.com>
4719
4720         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
4721         unittests/optional-selftests.c.
4722         (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
4723         * unittests/optional-selftests.c: New file.
4724         * unittests/optional/assignment/1.cc: New file.
4725         * unittests/optional/assignment/2.cc: New file.
4726         * unittests/optional/assignment/3.cc: New file.
4727         * unittests/optional/assignment/4.cc: New file.
4728         * unittests/optional/assignment/5.cc: New file.
4729         * unittests/optional/assignment/6.cc: New file.
4730         * unittests/optional/assignment/7.cc: New file.
4731         * unittests/optional/cons/copy.cc: New file.
4732         * unittests/optional/cons/default.cc: New file.
4733         * unittests/optional/cons/move.cc: New file.
4734         * unittests/optional/cons/value.cc: New file.
4735         * unittests/optional/in_place.cc: New file.
4736         * unittests/optional/observers/1.cc: New file.
4737         * unittests/optional/observers/2.cc: New file.
4738
4739 2017-04-18  Pedro Alves  <palves@redhat.com>
4740
4741         * common/gdb_optional.h: Include common/traits.h.
4742         (in_place_t): New type.
4743         (in_place): New constexpr variable.
4744         (optional::optional): Remove member initialization of
4745         m_instantiated.
4746         (optional::optional(in_place_t...)): New constructor.
4747         (optional::~optional): Use reset.
4748         (optional::optional(const optional&)): New.
4749         (optional::optional(const optional&&)): New.
4750         (optional::optional(T &)): New.
4751         (optional::optional(T &&)): New.
4752         (operator::operator=(const optional &)): New.
4753         (operator::operator=(optional &&)): New.
4754         (operator::operator= (const T &))
4755         (operator::operator= (T &&))
4756         (operator::emplace (Args &&... args)): Return a T&.  Use reset.
4757         (operator::reset): New.
4758         (operator::m_instantiated):: Add in-class initializer.
4759         * common/traits.h: Include <type_traits>.
4760         (struct And): New types.
4761
4762 2017-04-18  Pedro Alves  <palves@redhat.com>
4763
4764         * xml-support.c: Include <vector>.
4765         (scope_level::scope_level(const gdb_xml_element *))
4766         (scope_level::scope_level(scope_level&&)): New.
4767         (scope_level::~scope_level): New.
4768         (scope_level_s): Delete.
4769         (gdb_xml_parser::scopes): Now a std::vector.
4770         (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
4771         Use std::vector.
4772         (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
4773         scope cleanup code.
4774         (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
4775         of the scopes member.  Use std::vector::emplace_back.
4776
4777 2017-04-18  Pedro Alves  <palves@redhat.com>
4778
4779         * xml-support.c (gdb_xml_parser): Add ctor/dtor.  Make is_xinclude
4780         a bool.
4781         (gdb_xml_end_element): Change type of first parameter.
4782         (gdb_xml_cleanup): Rename to ...
4783         (gdb_xml_parser::~gdb_xml_parser): ... this.
4784         (gdb_xml_create_parser_and_cleanup): Delete with ...
4785         (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
4786         to this new ctor.
4787         (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
4788         using gdb_xml_create_parser_and_cleanup.
4789         (xinclude_parsing_data): Add ctor/dtor.
4790         (xml_xinclude_cleanup): Delete.
4791         (xml_process_xincludes): Create a local xinclude_parsing_data
4792         instead of heap-allocating one.  Create a local gdb_xml_parser
4793         instead of heap-allocating one with
4794         gdb_xml_create_parser_and_cleanup.
4795
4796 2017-04-18  John Baldwin  <jhb@FreeBSD.org>
4797
4798         PR threads/20743
4799         * fbsd-nat.c (resume_one_thread_cb): Remove.
4800         (resume_all_threads_cb): Remove.
4801         (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
4802         iterate_over_threads.
4803
4804 2017-04-17  Joel Brobecker  <brobecker@adacore.com>
4805
4806         * NEWS: Create a new section for the next release branch.
4807         Rename the section of the current branch, now that it has
4808         been cut.
4809
4810 2017-04-17  Joel Brobecker  <brobecker@adacore.com>
4811
4812         GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
4813         * version.in: Bump version to 8.0.50.DATE-git.
4814
4815 2017-04-13  Sergio Durigan Junior  <sergiodj@redhat.com>
4816
4817         PR gdb/21385
4818         * windows-nat.c (windows_create_inferior): Declare 'allargs'
4819         independently of the host, and fix build breakage on Cygwin.
4820
4821 2017-04-13  Pedro Alves  <palves@redhat.com>
4822
4823         * inferior.c (free_inferior): Convert to ...
4824         (inferior::~inferior): ... this dtor.
4825         (inferior::inferior): New ctor, factored out from ...
4826         (add_inferior_silent): ... here.  Allocate the inferior with a new
4827         expression.
4828         (delete_inferior): Call delete instead of free_inferior.
4829         * inferior.h (gdb_environ, continuation): Forward declare.
4830         (inferior): Now a class.  Add in-class initialization to all
4831         members.  Make boolean fields bool, except 'detaching'.
4832         (inferior::inferior): New explicit ctor.
4833         (inferior::~inferior): New.
4834
4835 2017-04-13  Pedro Alves  <palves@redhat.com>
4836
4837         * inferior.c (init_inferior_list): Delete.
4838         * inferior.h (init_inferior_list): Delete.
4839
4840 2017-04-13  Pedro Alves  <palves@redhat.com>
4841
4842         PR threads/13217
4843         * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
4844         (top level): Call it twice, with different thread sets.
4845
4846 2017-04-13  Pedro Alves  <palves@redhat.com>
4847
4848         * thread.c: Include <algorithm>.
4849         (thread_array_cleanup): Delete.
4850         (scoped_inc_dec_ref): New class.
4851         (live_threads_count): New function.
4852         (set_thread_refcount): Delete.
4853         (tp_array_compar_ascending): Now a bool.
4854         (tp_array_compar): Convert to a std::sort comparison function.
4855         (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
4856         and live_threads_count.
4857
4858 2017-04-13  Pedro Alves  <palves@redhat.com>
4859
4860         * infrun.c (follow_fork_inferior): Also switch the current
4861         inferior.
4862
4863 2017-04-13  Pedro Alves  <palves@redhat.com>
4864
4865         * breakpoint.c (watch_command_1): Save watchpoint-frame info
4866         before calling create_internal_breakpoint.
4867
4868 2017-04-13  Pedro Alves  <palves@redhat.com>
4869
4870         * fork-child.c (execv_argv): New class.
4871         (breakup_args): Refactored as ...
4872         (execv_argv::init_for_no_shell): .. this method of execv_argv.
4873         Copy arguments to storage and replace separators with NULL
4874         terminators in place.
4875         (escape_bang_in_quoted_argument): Adjust to return bool.
4876         (execv_argv::execv_argv): New ctor.
4877         (execv_argv::init_for_shell): New method, factored out from
4878         fork_inferior.  Don't strdup strings into the vector.
4879         (fork_inferior): Eliminate "shell" local and use execv_argv.  Use
4880         Remove free_vector_argv call.
4881
4882 2017-04-13  Yao Qi  <yao.qi@linaro.org>
4883
4884         * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
4885         tdep->rx_psw_type.
4886
4887 2017-04-13  Yao Qi  <yao.qi@linaro.org>
4888
4889         * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
4890         * rx-tdep.c (rx_gdbarch_init): Likewise.
4891
4892 2017-04-13  Pedro Alves  <palves@redhat.com>
4893
4894         * breakpoint.h (struct breakpoint): Reindent.
4895
4896 2017-04-13  Pedro Alves  <palves@redhat.com>
4897
4898         * breakpoint.c (bp_location): Rename to ...
4899         (bp_locations): ... this.  All references updated.
4900         (bp_location_count): Rename to ...
4901         (bp_locations_count): ... this.  All references updated.
4902         (bp_location_placed_address_before_address_max): Rename to ...
4903         (bp_locations_placed_address_before_address_max): ... this.  All
4904         references updated.
4905         (bp_location_shadow_len_after_address_max): Rename to ...
4906         (bp_locations_shadow_len_after_address_max): ... this.  All
4907         references updated.
4908         (bp_location_compare_addrs): Rename to ...
4909         (bp_locations_compare_addrs): ... this.  All references updated.
4910         (bp_location_compare):Rename to ...
4911         (bp_locations_compare): ... this.  All references updated.
4912         (bp_location_target_extensions_update): Rename to ...
4913         (bp_locations_target_extensions_update): ... this.  All references
4914         updated.
4915
4916 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
4917
4918         * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
4919         * common/common.m4: Check headers 'termios.h', 'termio.h' and
4920         'sgtty.h'.
4921         * common/gdb_termios.h: New file, with parts of "terminal.h".
4922         * inflow.c: Include "gdb_termios.h".
4923         * ser-unix.c: Include "gdb_termios.h".
4924         * terminal.h: Move terminal-related defines to
4925         "common/gdb_termios.h".
4926
4927 2017-04-12  Tom Tromey  <tom@tromey.com>
4928
4929         * probe.c (parse_probes): Update.
4930         * location.h (delete_event_location): Don't declare.
4931         (event_location_deleter::operator()): Update.
4932         * location.c (event_location_deleter::operator()): Rename from
4933         delete_event_location.
4934         * linespec.h (linespec_result) <location>: Change type to
4935         event_location_up.
4936         * linespec.c (canonicalize_linespec, event_location_to_sals)
4937         (decode_objc): Update.
4938         (linespec_result): Don't call delete_event_location.
4939         * breakpoint.c (create_breakpoints_sal)
4940         (bkpt_probe_create_sals_from_location)
4941         (strace_marker_create_sals_from_location): Update.
4942
4943 2017-04-12  Tom Tromey  <tom@tromey.com>
4944
4945         * linespec.h (struct linespec_result): Add constructor and
4946         destructor.
4947         (init_linespec_result, destroy_linespec_result)
4948         (make_cleanup_destroy_linespec_result): Don't declare.
4949         * linespec.c (init_linespec_result): Remove.
4950         (linespec_result::~linespec_result): Rename from
4951         destroy_linespec_result.  Update.
4952         (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
4953         Remove.
4954         * breakpoint.c (create_breakpoint, break_range_command)
4955         (decode_location_default): Update.
4956         * ax-gdb.c (agent_command_1): Update.
4957
4958 2017-04-12  Tom Tromey  <tom@tromey.com>
4959
4960         * remote.c (remote_download_tracepoint): Update.
4961         * python/py-breakpoint.c (bppy_get_location): Update.
4962         * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
4963         (gdbscm_breakpoint_location): Update.
4964         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
4965         * breakpoint.h (struct breakpoint) <location, location_range_end>:
4966         Change type to event_location_up.
4967         * breakpoint.c (create_overlay_event_breakpoint)
4968         (create_longjmp_master_breakpoint)
4969         (create_std_terminate_master_breakpoint)
4970         (create_exception_master_breakpoint)
4971         (breakpoint_event_location_empty_p, print_breakpoint_location)
4972         (print_one_breakpoint_location, create_thread_event_breakpoint)
4973         (init_breakpoint_sal, create_breakpoint)
4974         (print_recreate_ranged_breakpoint, break_range_command)
4975         (init_ada_exception_breakpoint, say_where): Update.
4976         (base_breakpoint_dtor): Don't call delete_event_location.
4977         (bkpt_print_recreate, tracepoint_print_recreate)
4978         (dprintf_print_recreate, update_static_tracepoint)
4979         (breakpoint_re_set_default): Update.
4980
4981 2017-04-12  Tom Tromey  <tom@tromey.com>
4982
4983         * compile/compile-loc2c.c (compute_stack_depth_worker): Change
4984         type of "to_do".  Update.
4985         (compute_stack_depth): Use std::vector.
4986
4987 2017-04-12  Tom Tromey  <tom@tromey.com>
4988
4989         * printcmd.c (find_instruction_backward): Use std::vector.
4990
4991 2017-04-12  Tom Tromey  <tom@tromey.com>
4992
4993         * symfile.c (objfilep): Remove typedef.
4994         (reread_symbols): Use a std::vector.
4995
4996 2017-04-12  Tom Tromey  <tom@tromey.com>
4997
4998         * mi/mi-main.c (exec_direction_forward): Remove.
4999         (exec_reverse_continue, mi_execute_command): Use scoped_restore.
5000         * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
5001         scoped_restore.
5002         * guile/guile.c (guile_repl_command, guile_command)
5003         (gdbscm_execute_gdb_command): Use scoped_restore.
5004         * go-exp.y (go_parse): Use scoped_restore.
5005         * d-exp.y (d_parse): Use scoped_restore.
5006         * cli/cli-decode.c (cmd_func): Use scoped_restore.
5007         * c-exp.y (c_parse): Use scoped_restore.
5008
5009 2017-04-12  Tom Tromey  <tom@tromey.com>
5010
5011         * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
5012         (mi_parse): Update return type.
5013         (mi_parse_free): Remove.
5014         * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
5015         (mi_parse::~mi_parse): Rename from mi_parse_free.
5016         (mi_parse_cleanup): Remove.
5017         (mi_parse): Return a unique_ptr.  Use new.
5018         * mi/mi-main.c (mi_execute_command): Update.
5019
5020 2017-04-12  Tom Tromey  <tom@tromey.com>
5021
5022         * location.c (explicit_location_lex_one): Return a
5023         unique_xmalloc_ptr.
5024         (string_to_explicit_location): Update.  Remove cleanups.
5025
5026 2017-04-12  Tom Tromey  <tom@tromey.com>
5027
5028         * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
5029         (compare_value_and_voffset): Change type.  Update.
5030         (compute_vtable_size): Change type of "offset_vec".
5031         (gnuv3_print_vtable): Use std::vector.  Remove cleanups.
5032         (gnuv3_get_typeid): Remove extraneous declaration.
5033
5034 2017-04-12  Tom Tromey  <tom@tromey.com>
5035
5036         * charset.h (wchar_iterator): Fix comment.
5037
5038 2017-04-12  Tom Tromey  <tom@tromey.com>
5039
5040         * charset.c (iconv_wrapper): New class.
5041         (cleanup_iconv): Remove.
5042         (convert_between_encodings): Use it.
5043
5044 2017-04-12  Tom Tromey  <tom@tromey.com>
5045
5046         * symfile.h (increment_reading_symtab): Update type.
5047         * symfile.c (decrement_reading_symtab): Remove.
5048         (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
5049         * psymtab.c (psymtab_to_symtab): Update.
5050         * dwarf2read.c (dw2_instantiate_symtab): Update.
5051
5052 2017-04-12  Tom Tromey  <tom@tromey.com>
5053
5054         * jit.c (struct jit_reader): Declare separately.  Add constructor
5055         and destructor.  Change type of "handle".
5056         (loaded_jit_reader): Define separately.
5057         (jit_reader_load): Update.  New "new".
5058         (jit_reader_unload_command): Use "delete".
5059         * gdb-dlfcn.h (struct dlclose_deleter): New.
5060         (gdb_dlhandle_up): New typedef.
5061         (gdb_dlopen, gdb_dlsym): Update types.
5062         (gdb_dlclose): Remove.
5063         * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
5064         (gdb_dlsym): Change type of "handle".
5065         (make_cleanup_dlclose): Remove.
5066         (dlclose_deleter::operator()): Rename from gdb_dlclose.
5067         * compile/compile-c-support.c (load_libcc): Update.
5068
5069 2017-04-12  Tom Tromey  <tom@tromey.com>
5070
5071         * symtab.h (find_pcs_for_symtab_line): Change return type.
5072         * symtab.c (find_pcs_for_symtab_line): Change return type.
5073         * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
5074         type of "vec".  Update.
5075         (ltpy_get_pcs_for_line): Update.
5076         * linespec.c (decode_digits_ordinary): Update.
5077
5078 2017-04-12  Tom Tromey  <tom@tromey.com>
5079
5080         * tracepoint.c (actions_command): Update.
5081         * python/python.c (python_command, python_interactive_command):
5082         Update.
5083         * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
5084         * guile/guile.c (guile_command): Update.
5085         * defs.h (read_command_lines, read_command_lines_1): Return
5086         command_line_up.
5087         (command_lines_deleter): New struct.
5088         (command_line_up): New typedef.
5089         * compile/compile.c (compile_code_command)
5090         (compile_print_command): Update.
5091         * cli/cli-script.h (get_command_line, copy_command_lines): Return
5092         command_line_up.
5093         (make_cleanup_free_command_lines): Remove.
5094         * cli/cli-script.c (get_command_line, read_command_lines_1)
5095         (copy_command_lines): Return command_line_up.
5096         (while_command, if_command, read_command_lines, define_command)
5097         (document_command): Update.
5098         (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
5099         Remove.
5100         * breakpoint.h (breakpoint_set_commands): Change type of
5101         "commands".
5102         * breakpoint.c (breakpoint_set_commands): Change type of
5103         "commands".  Update.
5104         (do_map_commands_command, update_dprintf_command_list)
5105         (create_tracepoint_from_upload): Update.
5106
5107 2017-04-12  Tom Tromey  <tom@tromey.com>
5108
5109         * tracepoint.c (scope_info): Update.
5110         * spu-tdep.c (spu_catch_start): Update.
5111         * python/python.c (gdbpy_decode_line): Update.
5112         * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
5113         * python/py-breakpoint.c (bppy_init): Update.
5114         * probe.c (parse_probes): Update.
5115         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
5116         * location.h (event_location_deleter): New struct.
5117         (event_location_up): New typedef.
5118         (new_linespec_location, new_address_location, new_probe_location)
5119         (new_explicit_location, copy_event_location)
5120         (string_to_event_location, string_to_event_location_basic)
5121         (string_to_explicit_location): Update return type.
5122         (make_cleanup_delete_event_location): Remove.
5123         * location.c (new_linespec_location, new_address_location)
5124         (new_probe_location, new_explicit_location, copy_event_location):
5125         Return event_location_up.
5126         (delete_event_location_cleanup)
5127         (make_cleanup_delete_event_location): Remove.
5128         (string_to_explicit_location, string_to_event_location_basic)
5129         (string_to_event_location): Return event_location_up.
5130         * linespec.c (canonicalize_linespec, event_location_to_sals)
5131         (decode_line_with_current_source)
5132         (decode_line_with_last_displayed, decode_objc): Update.
5133         * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
5134         * completer.c (location_completer): Update.
5135         * cli/cli-cmds.c (edit_command, list_command): Update.
5136         * breakpoint.c (create_overlay_event_breakpoint)
5137         (create_longjmp_master_breakpoint)
5138         (create_std_terminate_master_breakpoint)
5139         (create_exception_master_breakpoint)
5140         (create_thread_event_breakpoint): Update.
5141         (init_breakpoint_sal): Update.  Remove some dead code.
5142         (create_breakpoint_sal): Change type of "location".  Update.
5143         (create_breakpoints_sal, create_breakpoint, break_command_1)
5144         (dprintf_command, break_range_command, until_break_command)
5145         (init_ada_exception_breakpoint)
5146         (strace_marker_create_sals_from_location)
5147         (update_static_tracepoint, trace_command, ftrace_command)
5148         (strace_command, create_tracepoint_from_upload): Update.
5149         * break-catch-throw.c (re_set_exception_catchpoint): Update.
5150         * ax-gdb.c (agent_command_1): Update.
5151
5152 2017-04-12  Pedro Alves  <palves@redhat.com>
5153
5154         * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
5155         * configure.tgt: Handle i[34567]86-*-go32* and
5156         i[34567]86-*-msdosdjgpp*.
5157         * i386-tdep.c (i386_svr4_reg_to_regnum):
5158         Make extern.
5159         (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
5160         i386-go32-tdep.c.
5161         (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
5162         * i386-go32-tdep.c: New file.
5163         * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
5164         declarations.
5165
5166 2017-04-12  Simon Marchi  <simon.marchi@ericsson.com>
5167
5168         * aix-thread.c (pd_status2str): Change return type to const char *.
5169
5170 2017-04-12  Pedro Alves  <palves@redhat.com>
5171
5172         * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
5173         calls to set_gdbarch_gnu_triplet_regexp.
5174
5175 2017-04-12  Pedro Alves  <palves@redhat.com>
5176
5177         PR gdb/21323
5178         * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
5179         New enum value.
5180         (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
5181         * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
5182         * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
5183         * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
5184         * gdbarch.h, gdbarch.c: Regenerate.
5185         * aarch64-tdep.c (aarch64_gdbarch_init): Override
5186         gdbarch_wchar_bit and gdbarch_wchar_signed.
5187         * alpha-tdep.c (alpha_gdbarch_init): Likewise.
5188         * arm-tdep.c (arm_gdbarch_init): Likewise.
5189         * avr-tdep.c (avr_gdbarch_init): Likewise.
5190         * h8300-tdep.c (h8300_gdbarch_init): Likewise.
5191         * i386-nto-tdep.c (i386nto_init_abi): Likewise.
5192         * i386-tdep.c (i386_go32_init_abi): Likewise.
5193         * m32r-tdep.c (m32r_gdbarch_init): Likewise.
5194         * moxie-tdep.c (moxie_gdbarch_init): Likewise.
5195         * nds32-tdep.c (nds32_gdbarch_init): Likewise.
5196         * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
5197         * sh-tdep.c (sh_gdbarch_init): Likewise.
5198         * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
5199         * sparc64-tdep.c (sparc64_init_abi): Likewise.
5200         * windows-tdep.c (windows_init_abi): Likewise.
5201         * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
5202
5203 2017-04-12  Pedro Alves  <palves@redhat.com>
5204
5205         PR c++/21323
5206         * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
5207         cplus_primitive_type_char32_t>: New enum values.
5208         (cplus_language_arch_info): Register cplus_primitive_type_char16_t
5209         and cplus_primitive_type_char32_t.
5210         * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
5211         32, use the archtecture's built-in type for char16_t and char32_t,
5212         respectively.  Otherwise, fallback to init_integer_type as before,
5213         but make the type unsigned, and issue a complaint.
5214         * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
5215
5216 2017-04-12  Alan Hayward  <alan.hayward@arm.com>
5217
5218         * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
5219         (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
5220
5221 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
5222
5223         * windows-nat.c (windows_create_inferior): Declare 'toexec' as
5224         'const char *'.
5225
5226 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
5227
5228         * common/common-utils.c (free_vector_argv): New function.
5229         * common/common-utils.h: Include <vector>.
5230         (free_vector_argv): New prototype.
5231         * darwin-nat.c (darwin_create_inferior): Rewrite function
5232         prototype in order to constify "exec_file" and accept a
5233         "std::string" for "allargs".
5234         * fork-child.c: Include <vector>.
5235         (breakup_args): Rewrite function, using C++.
5236         (fork_inferior): Rewrite function header, constify "exec_file_arg"
5237         and accept "std::string" for "allargs".  Update the code to
5238         calculate "argv" based on "allargs".  Update calls to "exec_fun"
5239         and "execvp".
5240         * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
5241         order to constify "exec_file" and accept a "std::string" for
5242         "allargs".
5243         * go32-nat.c (go32_create_inferior): Likewise.
5244         * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
5245         * infcmd.c (run_command_1): Constify "exec_file".  Use
5246         "std::string" for inferior arguments.
5247         * inferior.h (fork_inferior): Update prototype.
5248         * linux-nat.c (linux_nat_create_inferior): Rewrite function
5249         prototype in order to constify "exec_file" and accept a
5250         "std::string" for "allargs".
5251         * nto-procfs.c (procfs_create_inferior): Likewise.
5252         * procfs.c (procfs_create_inferior): Likewise.
5253         * remote-sim.c (gdbsim_create_inferior): Likewise.
5254         * remote.c (extended_remote_run): Update code to accept
5255         "std::string" as argument.
5256         (extended_remote_create_inferior): Rewrite function prototype in
5257         order to constify "exec_file" and accept a "std::string" for
5258         "allargs".
5259         * rs6000-nat.c (super_create_inferior): Likewise.
5260         (rs6000_create_inferior): Likewise.
5261         * target.h (struct target_ops) <to_create_inferior>: Likewise.
5262         * windows-nat.c (windows_create_inferior): Likewise.
5263
5264 2017-04-11  Pedro Alves  <palves@redhat.com>
5265
5266         * thread.c: Fix whitespace throughout.
5267
5268 2017-04-11  Philipp Rudo  <prudo@linux.vnet.ibm.com>
5269
5270         * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
5271
5272 2017-04-11  Alan Hayward  <alan.hayward@arm.com>
5273
5274         * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
5275
5276 2017-04-10  Sergio Durigan Junior  <sergiodj@redhat.com>
5277
5278         PR gdb/21364
5279         * osdata.c (info_osdata): Check if 'type' is an empty string
5280         instead of NULL.
5281
5282 2017-04-10  Pedro Alves  <palves@redhat.com>
5283
5284         * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
5285         (ptid_to_global_thread_id, in_thread_list)
5286         (do_captured_list_thread_ids, set_resumed, set_running)
5287         (set_executing, set_stop_requested, finish_thread_state)
5288         (validate_registers_access, can_access_registers_ptid)
5289         (print_thread_info_1, switch_to_thread)
5290         (do_restore_current_thread_cleanup)
5291         (make_cleanup_restore_current_thread, thread_command)
5292         (thread_name_command): Use operator== instead of ptid_equal.
5293
5294 2017-04-10  Pedro Alves  <palves@redhat.com>
5295
5296         * thread.c (struct current_thread_cleanup) <next>: Delete field.
5297         (current_thread_cleanup_chain): Delete.
5298         (restore_current_thread_cleanup_dtor)
5299         (make_cleanup_restore_current_thread): Remove references to
5300         current_thread_cleanup_chain.
5301
5302 2017-04-10  Alan Hayward  <alan.hayward@arm.com>
5303
5304         * msp430-tdep.c (msp430_pseudo_register_read): Never return
5305         REG_UNKNOWN.
5306
5307 2017-04-10  Yao Qi  <yao.qi@linaro.org>
5308
5309         PR gdb/19942
5310         * gdbthread.h (thread_info::deletable): New method.
5311         (thread_info::incref): New method.
5312         (thread_info::decref): New method.
5313         (thread_info::refcount): Move it to private.
5314         * infrun.c (save_stop_context): Call inc_refcount.
5315         (release_stop_context_cleanup): Likewise.
5316         * thread.c (set_thread_exited): New function.
5317         (init_thread_list): Delete "tp" only it is deletable, otherwise
5318         call set_thread_exited.
5319         (delete_thread_1): Call set_thread_exited.
5320         (current_thread_cleanup) <inferior_pid>: Remove.
5321         <thread>: New field.
5322         (restore_current_thread_ptid_changed): Removed.
5323         (do_restore_current_thread_cleanup): Adjust.
5324         (restore_current_thread_cleanup_dtor): Don't call
5325         find_thread_ptid.
5326         (set_thread_refcount): Use dec_refcount.
5327         (make_cleanup_restore_current_thread): Adjust.
5328         (thread_apply_all_command): Call inc_refcount.
5329         (_initialize_thread): Don't call
5330         observer_attach_thread_ptid_changed.
5331
5332 2017-04-10  Yao Qi  <yao.qi@linaro.org>
5333
5334         * thread.c (delete_thread_1): Hoist code on marking thread as
5335         exited.
5336
5337 2017-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
5338
5339         * windows-nat.c (windows_detach): Initialize ptid with
5340         minus_one_ptid.
5341
5342 2017-04-07  Simon Marchi  <simon.marchi@ericsson.com>
5343
5344         * unittests/ptid-selftests.c: Fix erroneous assert messages.
5345
5346 2017-04-07  Alan Hayward  <alan.hayward@arm.com>
5347
5348         * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
5349         (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
5350         (bfin_pseudo_register_write): Likewise
5351
5352 2017-04-06  Simon Marchi  <simon.marchi@ericsson.com>
5353
5354         * common/ptid.h (struct ptid): Change to...
5355         (class ptid_t): ... this.
5356         <ptid_t>: New constructors.
5357         <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
5358         matches>: New methods.
5359         <make_null, make_minus_one>: New static methods.
5360         <pid>: Rename to...
5361         <m_pid>: ...this.
5362         <lwp>: Rename to...
5363         <m_lwp>: ...this.
5364         <tid>: Rename to...
5365         <m_tid>: ...this.
5366         (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
5367         ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
5368         as references, move comment to class ptid_t.
5369         * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
5370         ptid_t static methods.
5371         (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
5372         ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
5373         Take ptid arguments as references, implement using ptid_t methods.
5374         * unittests/ptid-selftests.c: New file.
5375         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
5376         unittests/ptid-selftests.c.
5377         (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
5378
5379 2017-04-06  Thomas Preud'homme  <thomas.preudhomme@arm.com>
5380
5381         * python/python.c (python_run_simple_file): Cast mode literal to
5382         non-const char pointer as expected by PyFile_FromString.
5383
5384 2017-04-05  Simon Marchi  <simon.marchi@ericsson.com>
5385
5386         * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
5387         minus_one_ptid and null_ptid.
5388
5389 2017-04-05  Pedro Alves  <palves@redhat.com>
5390
5391         * warning.m4 (build_warnings): Remove -Wno-write-strings.
5392         * configure: Regenerate.
5393
5394 2017-04-05  Pedro Alves  <palves@redhat.com>
5395
5396         * ada-exp.y (yyerror): Constify.
5397         * ada-lang.c (bound_name, get_selections)
5398         (ada_variant_discrim_type)
5399         (ada_variant_discrim_name, ada_value_struct_elt)
5400         (ada_lookup_struct_elt_type, is_unchecked_variant)
5401         (ada_which_variant_applies, standard_exc, ada_get_next_arg)
5402         (catch_ada_exception_command_split)
5403         (catch_ada_assert_command_split, catch_assert_command)
5404         (ada_op_name): Constify.
5405         * ada-lang.h (ada_yyerror, get_selections)
5406         (ada_variant_discrim_name, ada_value_struct_elt): Constify.
5407         * arc-tdep.c (arc_print_frame_cache): Constify.
5408         * arm-tdep.c (arm_skip_stub): Constify.
5409         * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
5410         (gen_aggregate_elt_ref): Constify.
5411         * bcache.c (print_bcache_statistics): Constify.
5412         * bcache.h (print_bcache_statistics): Constify.
5413         * break-catch-throw.c (catch_exception_command_1):
5414         * breakpoint.c (struct ep_type_description::description):
5415         Constify.
5416         (add_solib_catchpoint): Constify.
5417         (catch_fork_command_1): Add cast.
5418         (add_catch_command): Constify.
5419         * breakpoint.h (add_catch_command, add_solib_catchpoint):
5420         Constify.
5421         * bsd-uthread.c (bsd_uthread_state): Constify.
5422         * buildsym.c (patch_subfile_names): Constify.
5423         * buildsym.h (next_symbol_text_func, patch_subfile_names):
5424         Constify.
5425         * c-exp.y (yyerror): Constify.
5426         (token::oper): Constify.
5427         * c-lang.h (c_yyerror, cp_print_class_member): Constify.
5428         * c-varobj.c (cplus_describe_child): Constify.
5429         * charset.c (find_charset_names): Add cast.
5430         (find_charset_names): Constify array and add const_cast.
5431         * cli/cli-cmds.c (complete_command, cd_command): Constify.
5432         (edit_command): Constify.
5433         * cli/cli-decode.c (lookup_cmd): Constify.
5434         * cli/cli-dump.c (dump_memory_command, dump_value_command):
5435         Constify.
5436         (struct dump_context): Constify.
5437         (add_dump_command, restore_command): Constify.
5438         * cli/cli-script.c (get_command_line): Constify.
5439         * cli/cli-script.h (get_command_line): Constify.
5440         * cli/cli-utils.c (check_for_argument): Constify.
5441         * cli/cli-utils.h (check_for_argument): Constify.
5442         * coff-pe-read.c (struct read_pe_section_data): Constify.
5443         * command.h (lookup_cmd): Constify.
5444         * common/print-utils.c (decimal2str): Constify.
5445         * completer.c (gdb_print_filename): Constify.
5446         * corefile.c (set_gnutarget): Constify.
5447         * cp-name-parser.y (yyerror): Constify.
5448         * cp-valprint.c (cp_print_class_member): Constify.
5449         * cris-tdep.c (cris_register_name, crisv32_register_name):
5450         Constify.
5451         * d-exp.y (yyerror): Constify.
5452         (struct token::oper): Constify.
5453         * d-lang.h (d_yyerror): Constify.
5454         * dbxread.c (struct header_file_location::name): Constify.
5455         (add_old_header_file, add_new_header_file, last_function_name)
5456         (dbx_next_symbol_text, add_bincl_to_list)
5457         (find_corresponding_bincl_psymtab, set_namestring)
5458         (find_stab_function_addr, read_dbx_symtab, start_psymtab)
5459         (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
5460         * defs.h (command_line_input, print_address_symbolic)
5461         (deprecated_readline_begin_hook): Constify.
5462         * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
5463         Constify.
5464         * event-top.c (handle_line_of_input): Constify and add cast.
5465         * exceptions.c (catch_errors): Constify.
5466         * exceptions.h (catch_errors): Constify.
5467         * expprint.c (print_subexp_standard, op_string, op_name)
5468         (op_name_standard, dump_raw_expression, dump_raw_expression):
5469         * expression.h (op_name, op_string, dump_raw_expression):
5470         Constify.
5471         * f-exp.y (yyerror): Constify.
5472         (struct token::oper): Constify.
5473         (struct f77_boolean_val::name): Constify.
5474         * f-lang.c (f_word_break_characters): Constify.
5475         * f-lang.h (f_yyerror): Constify.
5476         * fork-child.c (fork_inferior): Add cast.
5477         * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
5478         (new_variant): Constify.
5479         * gdbarch.sh (pstring_ptr, pstring_list): Constify.
5480         * gdbarch.c: Regenerate.
5481         * gdbcore.h (set_gnutarget): Constify.
5482         * go-exp.y (yyerror): Constify.
5483         (token::oper): Constify.
5484         * go-lang.h (go_yyerror): Constify.
5485         * go32-nat.c (go32_sysinfo): Constify.
5486         * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
5487         * guile/scm-cmd.c (cmdscm_function): Constify.
5488         * guile/scm-param.c (pascm_param_value): Constify.
5489         * h8300-tdep.c (h8300_register_name, h8300s_register_name)
5490         (h8300sx_register_name): Constify.
5491         * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
5492         Constify.
5493         * ia64-tdep.c (ia64_register_names): Constify.
5494         * infcmd.c (construct_inferior_arguments): Constify.
5495         (path_command, attach_post_wait): Constify.
5496         * language.c (show_range_command, show_case_command)
5497         (unk_lang_error): Constify.
5498         * language.h (language_defn::la_error)
5499         (language_defn::la_name_of_this): Constify.
5500         * linespec.c (decode_line_2): Constify.
5501         * linux-thread-db.c (thread_db_err_str): Constify.
5502         * lm32-tdep.c (lm32_register_name): Constify.
5503         * m2-exp.y (yyerror): Constify.
5504         * m2-lang.h (m2_yyerror): Constify.
5505         * m32r-tdep.c (m32r_register_names): Constify and make static.
5506         * m68hc11-tdep.c (m68hc11_register_names): Constify.
5507         * m88k-tdep.c (m88k_register_name): Constify.
5508         * macroexp.c (appendmem): Constify.
5509         * mdebugread.c (fdr_name, add_data_symbol, parse_type)
5510         (upgrade_type, parse_external, parse_partial_symbols)
5511         (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
5512         (new_symbol): Constify.
5513         * memattr.c (mem_info_command): Constify.
5514         * mep-tdep.c (register_name_from_keyword): Constify.
5515         * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
5516         Constify.
5517         * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
5518         * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
5519         * mi/mi-main.c (captured_mi_execute_command): Constify and add
5520         cast.
5521         (mi_execute_async_cli_command): Constify.
5522         * mips-tdep.c (mips_register_name): Constify.
5523         * mn10300-tdep.c (register_name, mn10300_generic_register_name)
5524         (am33_register_name, am33_2_register_name)
5525         * moxie-tdep.c (moxie_register_names): Constify.
5526         * nat/linux-osdata.c (osdata_type): Constify fields.
5527         * nto-tdep.c (nto_parse_redirection): Constify.
5528         * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
5529         (lookup_child_selector): Constify.
5530         (objc_methcall::name): Constify.
5531         * objc-lang.h (lookup_objc_class, lookup_child_selector)
5532         (lookup_struct_typedef): Constify.
5533         * objfiles.c (pc_in_section): Constify.
5534         * objfiles.h (pc_in_section): Constify.
5535         * p-exp.y (struct token::oper): Constify.
5536         (yyerror): Constify.
5537         * p-lang.h (pascal_yyerror): Constify.
5538         * parser-defs.h (op_name_standard): Constify.
5539         (op_print::string): Constify.
5540         (exp_descriptor::op_name): Constify.
5541         * printcmd.c (print_address_symbolic): Constify.
5542         * psymtab.c (print_partial_symbols): Constify.
5543         * python/py-breakpoint.c (stop_func): Constify.
5544         (bppy_get_expression): Constify.
5545         * python/py-cmd.c (cmdpy_completer::name): Constify.
5546         (cmdpy_function): Constify.
5547         * python/py-event.c (evpy_add_attribute)
5548         (gdbpy_initialize_event_generic): Constify.
5549         * python/py-event.h (evpy_add_attribute)
5550         (gdbpy_initialize_event_generic): Constify.
5551         * python/py-evts.c (add_new_registry): Constify.
5552         * python/py-finishbreakpoint.c (outofscope_func): Constify.
5553         * python/py-framefilter.c (get_py_iter_from_func): Constify.
5554         * python/py-inferior.c (get_buffer): Add cast.
5555         * python/py-param.c (parm_constant::name): Constify.
5556         * python/py-unwind.c (fprint_frame_id): Constify.
5557         * python/python.c (gdbpy_parameter_value): Constify.
5558         * remote-fileio.c (remote_fio_func_map): Make 'name' const.
5559         * remote.c (memory_packet_config::name): Constify.
5560         (show_packet_config_cmd, remote_write_bytes)
5561         (remote_buffer_add_string):
5562         * reverse.c (exec_reverse_once): Constify.
5563         * rs6000-tdep.c (variant::name, variant::description): Constify.
5564         * rust-exp.y (rustyyerror): Constify.
5565         * rust-lang.c (rust_op_name): Constify.
5566         * rust-lang.h (rustyyerror): Constify.
5567         * serial.h (serial_ops::name): Constify.
5568         * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
5569         (sh_sh3e_register_name, sh_sh2e_register_name)
5570         (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
5571         (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
5572         (sh_sh4_register_name, sh_sh4_nofpu_register_name)
5573         (sh_sh4al_dsp_register_name): Constify.
5574         * sh64-tdep.c (sh64_register_name): Constify.
5575         * solib-darwin.c (lookup_symbol_from_bfd): Constify.
5576         * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
5577         * stabsread.c (patch_block_stabs, read_type_number)
5578         (ref_map::stabs, ref_add, process_reference)
5579         (symbol_reference_defined, define_symbol, define_symbol)
5580         (error_type, read_type, read_member_functions, read_cpp_abbrev)
5581         (read_one_struct_field, read_struct_fields, read_baseclasses)
5582         (read_tilde_fields, read_struct_type, read_array_type)
5583         (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
5584         (read_huge_number, read_range_type, read_args, common_block_start)
5585         (find_name_end): Constify.
5586         * stabsread.h (common_block_start, define_symbol)
5587         (process_one_symbol, symbol_reference_defined, ref_add):
5588         * symfile.c (get_section_index, add_symbol_file_command):
5589         * symfile.h (get_section_index): Constify.
5590         * target-descriptions.c (tdesc_type::name): Constify.
5591         (tdesc_free_type): Add cast.
5592         * target.c (find_default_run_target):
5593         (add_deprecated_target_alias, find_default_run_target)
5594         (target_announce_detach): Constify.
5595         (do_option): Constify.
5596         * target.h (add_deprecated_target_alias): Constify.
5597         * thread.c (print_thread_info_1): Constify.
5598         * top.c (deprecated_readline_begin_hook, command_line_input):
5599         Constify.
5600         (init_main): Add casts.
5601         * top.h (handle_line_of_input): Constify.
5602         * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
5603         * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
5604         (tfind_command): Rename to ...
5605         (tfind_command_1): ... this and constify.
5606         (tfind_command): New function.
5607         (tfind_end_command, tfind_start_command): Adjust.
5608         (encode_source_string): Constify.
5609         * tracepoint.h (encode_source_string): Constify.
5610         * tui/tui-data.c (tui_partial_win_by_name): Constify.
5611         * tui/tui-data.h (tui_partial_win_by_name): Constify.
5612         * tui/tui-source.c (tui_set_source_content_nil): Constify.
5613         * tui/tui-source.h (tui_set_source_content_nil): Constify.
5614         * tui/tui-win.c (parse_scrolling_args): Constify.
5615         * tui/tui-windata.c (tui_erase_data_content): Constify.
5616         * tui/tui-windata.h (tui_erase_data_content): Constify.
5617         * tui/tui-winsource.c (tui_erase_source_content): Constify.
5618         * tui/tui.c (tui_enable): Add cast.
5619         * utils.c (defaulted_query): Constify.
5620         (init_page_info): Add cast.
5621         (puts_debug, subset_compare): Constify.
5622         * utils.h (subset_compare): Constify.
5623         * varobj.c (varobj_format_string): Constify.
5624         * varobj.h (varobj_format_string): Constify.
5625         * vax-tdep.c (vax_register_name): Constify.
5626         * windows-nat.c (windows_detach): Constify.
5627         * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
5628         * xml-support.c (gdb_xml_end_element): Constify.
5629         * xml-tdesc.c (tdesc_start_reg): Constify.
5630         * xstormy16-tdep.c (xstormy16_register_name): Constify.
5631         * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
5632         * xtensa-tdep.h (xtensa_register_t::name): Constify.
5633
5634 2017-04-05  Pedro Alves  <palves@redhat.com>
5635
5636         * proc-api.c (struct trans): Constify.
5637         (procfs_note): Constify.
5638         * proc-events.c (struct trans, syscall_table):
5639         * proc-flags.c (struct trans): Constify.
5640         * proc-utils.h (procfs_note): Constify.
5641         * proc-why.c (struct trans): Constify.
5642         * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
5643         (procfs_detach): Constify.
5644         * sol-thread.c (struct string_map): Constify.
5645         (td_err_string, td_state_string): Constify.
5646
5647 2017-04-05  Pedro Alves  <palves@redhat.com>
5648
5649         * proc-api.c (procfs_filename): Don't initialize
5650         procfs_filename.
5651         (prepare_to_trace): Assume procfs_filename is non-NULL.
5652         (_initialize_proc_api): Give procfs_filename a default value here.
5653
5654 2017-04-05  Pedro Alves  <palves@redhat.com>
5655
5656         * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
5657         'cond_string' parameter.
5658         (extract_exception_regexp): Constify 'string' parameter.
5659         (catch_exception_command_1): Constify.
5660         * breakpoint.c (init_catchpoint)
5661         (create_fork_vfork_event_catchpoint): Constify 'cond_string'
5662         parameter.
5663         (ep_parse_optional_if_clause, catch_fork_command_1)
5664         (catch_exec_command_1): Constify.
5665         * breakpoint.h (init_catchpoint): Constify 'cond_string'
5666         parameter.
5667         (ep_parse_optional_if_clause): Constify.
5668         * cli/cli-utils.c (remove_trailing_whitespace)
5669         (check_for_argument): Constify.
5670         * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
5671         non-const overload.
5672         (check_for_argument): Likewise.
5673
5674 2017-04-05  Pedro Alves  <palves@redhat.com>
5675
5676         * event-top.c (command_line_handler): Add cast to execute_command
5677         call.
5678         * record-btrace.c (cmd_record_btrace_bts_start)
5679         (cmd_record_btrace_pt_start, cmd_record_btrace_start)
5680         (cmd_record_btrace_start): Add cast to execute_command call.
5681         * record-full.c (record_full_goto_insn):
5682         * record.c (record_start, record_stop): Add cast to
5683         execute_command_to_string calls.
5684         (cmd_record_start): Add cast to execute_command calls.
5685
5686 2017-04-05  Pedro Alves  <palves@redhat.com>
5687
5688         * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
5689         static inline function.
5690         * python/py-arch.c (archpy_disassemble): Constify 'keywords'
5691         array and use gdb_PyArg_ParseTupleAndKeywords.
5692         * python/py-cmd.c (cmdpy_init): Likewise.
5693         * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
5694         * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
5695         (infpy_search_memory): Likewise.
5696         * python/py-objfile.c (objfpy_add_separate_debug_file)
5697         (gdbpy_lookup_objfile): Likewise.
5698         * python/py-symbol.c (gdbpy_lookup_symbol)
5699         (gdbpy_lookup_global_symbol): Likewise.
5700         * python/py-type.c (gdbpy_lookup_type): Likewise.
5701         * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
5702         * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
5703         Likewise.
5704
5705 2017-04-05  Pedro Alves  <palves@redhat.com>
5706
5707         * python/python-internal.h (gdb_PyGetSetDef): New type.
5708         * python/py-block.c (block_object_getset)
5709         (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
5710         * python/py-event.c (event_object_getset)
5711         (finish_breakpoint_object_getset): Likewise.
5712         * python/py-inferior.c (inferior_object_getset): Likewise.
5713         * python/py-infthread.c (thread_object_getset): Likewise.
5714         * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
5715         * python/py-linetable.c (linetable_entry_object_getset): Likewise.
5716         * python/py-objfile.c (objfile_getset): Likewise.
5717         * python/py-progspace.c (pspace_getset): Likewise.
5718         * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
5719         Likewise.
5720         * python/py-record.c (recpy_record_getset): Likewise.
5721         * python/py-symbol.c (symbol_object_getset): Likewise.
5722         * python/py-symtab.c (symtab_object_getset, sal_object_getset):
5723         Likewise.
5724         * python/py-type.c (type_object_getset, field_object_getset):
5725         Likewise.
5726         * python/py-value.c (value_object_getset): Likewise.
5727
5728 2017-04-05  Pedro Alves  <palves@redhat.com>
5729
5730         * python/python-internal.h (gdb_PyObject_CallMethod)
5731         (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
5732         New functions.
5733         (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
5734         (PySys_GetObject, PySys_SetPath): New macros.
5735
5736 2017-04-05  Pedro Alves  <palves@redhat.com>
5737
5738         * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
5739         info_osdata_command.
5740         * osdata.c (info_osdata_command): Rename to ...
5741         (info_osdata): ... this.  Constify 'type' parameter, and remove
5742         the 'from_tty' parameter.  Accept NULL TYPE.
5743         (info_osdata_command): New function.
5744         * osdata.h (info_osdata_command): Remove declaration.
5745         (info_osdata): New declaration.
5746
5747 2017-04-05  Pedro Alves  <palves@redhat.com>
5748
5749         * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
5750         (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
5751         (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
5752         parameter.
5753         * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
5754         (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
5755         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
5756         parameter.
5757         * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
5758         (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
5759         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
5760         (mi_cmd_file_list_exec_source_files)
5761         (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
5762         * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
5763         (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
5764         parameter.
5765         * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
5766         (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
5767         (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
5768         (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
5769         (mi_cmd_stack_info_frame): Constify 'command' parameter.
5770         * mi/mi-cmd-target.c (mi_cmd_target_file_get)
5771         (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
5772         'command' parameter.
5773         * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
5774         (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
5775         (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
5776         (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
5777         (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
5778         (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
5779         (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
5780         (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
5781         (mi_cmd_var_set_update_range): Constify 'command' parameter.
5782         * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
5783         * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
5784         parameter.
5785         * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
5786         (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
5787         (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
5788         (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
5789         (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
5790         (mi_cmd_target_flash_erase, mi_cmd_thread_select)
5791         (mi_cmd_thread_list_ids, mi_cmd_thread_info)
5792         (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
5793         (mi_cmd_data_list_changed_registers)
5794         (mi_cmd_data_write_register_values)
5795         (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
5796         (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
5797         (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
5798         (mi_cmd_list_features, mi_cmd_list_target_features)
5799         (mi_cmd_add_inferior, mi_cmd_remove_inferior)
5800         (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
5801         (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
5802         (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
5803         (mi_cmd_trace_frame_collected): Constify 'command'
5804         parameter.
5805         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
5806         'command' parameter.
5807
5808 2017-04-05  Pedro Alves  <palves@redhat.com>
5809
5810         * ada-lang.c (ada_completer_word_break_characters): Now a const
5811         array.
5812         (ada_get_gdb_completer_word_break_characters): Constify.
5813         * completer.c (gdb_completer_command_word_break_characters)
5814         (gdb_completer_file_name_break_characters)
5815         (gdb_completer_quote_characters): Now const arrays.
5816         (get_gdb_completer_quote_characters): Constify.
5817         (set_rl_completer_word_break_characters): New function.
5818         (set_gdb_completion_word_break_characters)
5819         (complete_line_internal): Use it.
5820         * completer.h (get_gdb_completer_quote_characters): Constify.
5821         (set_rl_completer_word_break_characters): Declare.
5822         * f-lang.c (f_word_break_characters): Constify.
5823         * language.c (default_word_break_characters): Constify.
5824         * language.h (language_defn::la_word_break_characters): Constify.
5825         (default_word_break_characters): Constify.
5826         * top.c (init_main): Use set_rl_completer_word_break_characters.
5827
5828 2017-04-05  Pedro Alves  <palves@redhat.com>
5829
5830         * aix-thread.c (aix_thread_pid_to_str)
5831         (aix_thread_extra_thread_info): Constify.
5832         * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
5833         * bsd-uthread.c (bsd_uthread_extra_thread_info)
5834         (bsd_uthread_pid_to_str): Constify.
5835         * corelow.c (core_pid_to_str): Constify.
5836         * darwin-nat.c (darwin_pid_to_str): Constify.
5837         * fbsd-nat.c (fbsd_pid_to_str): Constify.
5838         * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
5839         Constify.
5840         * gnu-nat.c (gnu_pid_to_str): Constify.
5841         * go32-nat.c (go32_pid_to_str): Constify.
5842         * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
5843         * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
5844         * inferior.c (inferior_pid_to_str): Constify.
5845         * linux-nat.c (linux_nat_pid_to_str): Constify.
5846         * linux-tdep.c (linux_core_pid_to_str): Constify.
5847         * linux-thread-db.c (thread_db_pid_to_str)
5848         (thread_db_extra_thread_info): Constify.
5849         * nto-tdep.c (nto_extra_thread_info): Constify.
5850         * nto-tdep.h (nto_extra_thread_info): Constify.
5851         * obsd-nat.c (obsd_pid_to_str): Constify.
5852         * procfs.c (procfs_pid_to_str): Constify.
5853         * ravenscar-thread.c (ravenscar_extra_thread_info)
5854         (ravenscar_pid_to_str): Constify.
5855         * remote-sim.c (gdbsim_pid_to_str): Constify.
5856         * remote.c (remote_threads_extra_info, remote_pid_to_str):
5857         Constify.
5858         * sol-thread.c (solaris_pid_to_str): Constify.
5859         * sol2-tdep.c (sol2_core_pid_to_str): Constify.
5860         * sol2-tdep.h (sol2_core_pid_to_str): Constify.
5861         * target.c (default_pid_to_str, target_pid_to_str)
5862         (normal_pid_to_str, default_pid_to_str): Constify.
5863         * target.h (target_ops::to_pid_to_str)
5864         (target_ops::to_extra_thread_info): Constify.
5865         (target_pid_to_str, normal_pid_to_str): Constify.
5866         * windows-nat.c (windows_pid_to_str): Constify.
5867         * gdbarch.sh (core_pid_to_str): Constify.
5868         * target-delegates.c: Regenerate.
5869         * gdbarch.h, gdbarch.c: Regenerate.
5870
5871 2017-04-05  Pedro Alves  <palves@redhat.com>
5872
5873         * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
5874         the memory of the temporary warning_pre_print override.
5875         * utils.c (warning_pre_print): Constify.
5876         * utils.h (warning_pre_print): Constify.
5877
5878 2017-04-05  Pedro Alves  <palves@redhat.com>
5879
5880         * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
5881         (shell_command): New function.
5882         (make_command): Use std::string.
5883         (init_cli_cmds): Register shell_command instead of shell_escape.
5884
5885 2017-04-05  Pedro Alves  <palves@redhat.com>
5886
5887         * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
5888         * tracepoint.c (default_collect): Don't initialize.
5889
5890 2017-04-05  Pedro Alves  <palves@redhat.com>
5891
5892         * macroexp.c (macro_buffer::shared): Now a bool.
5893         (init_buffer): Update.
5894         (init_shared_buffer): Constify 'addr' parameter.
5895         (substitute_args, expand, macro_expand, macro_expand_next): Remove
5896         casts.
5897
5898 2017-04-05  Pedro Alves  <palves@redhat.com>
5899
5900         * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
5901         * disasm.c (set_disassembler_options): Constify local.
5902         * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
5903
5904 2017-04-05  Sergio Durigan Junior  <sergiodj@redhat.com>
5905
5906         PR gdb/21352
5907         * tracefile.c (tsave_command): Fix argument parsing for '-r'
5908         option.
5909
5910 2017-04-05  Yao Qi  <yao.qi@linaro.org>
5911
5912         * frame.c (frame_unwind_register_unsigned): Call
5913         frame_unwind_register_value.
5914
5915 2017-04-05  Yao Qi  <yao.qi@linaro.org>
5916
5917         * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
5918         Use gdb_test_multiple, and don't match anchor.
5919
5920 2017-04-05  Pedro Alves  <palves@redhat.com>
5921
5922         * MAINTAINERS (Global Maintainers): Add Simon Marchi.
5923         (Write After Approval): Remove Simon Marchi.
5924
5925 2017-04-05  Pedro Alves  <palves@redhat.com>
5926
5927         * common/gdb_optional.h (optional::optional): Make constexpr and
5928         initialize m_dummy.
5929
5930 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
5931
5932         * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
5933         (amd64fbsd_jmp_buf_reg_offset): Remove.
5934         (amd64fbsd_supply_uthread): Remove function.
5935         (amd64fbsd_collect_uthread): Remove function.
5936         (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
5937         * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
5938         (x86_64-*-freebsd*): Remove bsd-uthread.o.
5939         (fbsd-nat.c): Update comment.
5940         * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
5941         (i386fbsd_jmp_buf_reg_offset): Remove.
5942         (i386fbsd_supply_uthread): Remove function.
5943         (i386fbsd_collect_uthread): Remove function.
5944         (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
5945
5946 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
5947
5948         * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
5949         (ALLDEPFILES): Remove alpha-fbsd-tdep.c
5950         * NEWS: Mention that support for FreeBSD/alpha was removed.
5951         * alpha-fbsd-tdep.c: Delete file.
5952         * config/alpha/fbsd.mh: Delete file.
5953         * configure.host: Delete alpha*-*-freebsd* and
5954         alpha*-*-kfreebsd*-gnu.
5955         * configure.tgt: Delete alpha*-*-freebsd* and
5956         alpha*-*-kfreebsd*-gnu.
5957
5958 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
5959
5960         * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
5961         amd64bsd_store_inferior_registers): Use ptid from regcache.
5962
5963 2017-04-04  Pedro Alves  <palves@redhat.com>
5964
5965         * dwarf2read.c (lnp_state_machine): Now a class.  Initialize all
5966         data fields, make them private and add "m_" prefixes.
5967         (lnp_state_machine::lnp_state_machine): New ctor.
5968         (record_line, check_line_address, handle_set_discriminator)
5969         (handle_set_address, handle_advance_pc, handle_special_opcode)
5970         (handle_advance_line, handle_set_file, handle_negate_stmt)
5971         (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
5972         (end_sequence, advance_line): New methods.
5973         (m_gdbarch, m_record_lines_p): New fields.
5974         (lnp_reader_state): Delete.
5975         (dwarf_record_line): Rename to ...
5976         (lnp_state_machine::record_line): ... adjust.
5977         (init_lnp_state_machine): Delete.
5978         (lnp_state_machine::lnp_state_machine): New.
5979         (check_line_address): Rename to ...
5980         (lnp_state_machine::check_line_address): This.
5981         (dwarf_decode_lines_1): Remove reference to "reader_state".
5982         Adjust lnp_state_machine having a non-default ctor.  Use bool.
5983         State machine internal state manipulation moved to
5984         lnp_state_machine methods.
5985
5986 2017-04-04  Pedro Alves  <palves@redhat.com>
5987
5988         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
5989         unittests/offset-type-selftests.c.
5990         (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
5991         * common/offset-type.h: New file.
5992         * common/preprocessor.h: New file.
5993         * common/traits.h: New file.
5994         * common/valid-expr.h: New file.
5995         * dwarf2expr.c: Include "common/underlying.h".  Adjust to use
5996         sect_offset and cu_offset strong typedefs throughout.
5997         * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
5998         typedefs throughout.
5999         * dwarf2loc.c: Include "common/underlying.h".  Adjust to use
6000         sect_offset and cu_offset strong typedefs throughout.
6001         * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
6002         typedefs throughout.
6003         * gdbtypes.h: Include "common/offset-type.h".
6004         (cu_offset): Now an offset type (strong typedef) instead of a
6005         struct.
6006         (sect_offset): Likewise.
6007         (union call_site_parameter_u): Rename "param_offset" field to
6008         "param_cu_off".
6009         * unittests/offset-type-selftests.c: New file.
6010
6011 2017-04-04  Pedro Alves  <palves@redhat.com>
6012
6013         * common/underlying.h: New file.
6014         * dwarf2read.c: Include "common/gdb_optional.h" and
6015         "common/underlying.h".
6016         (dir_index, file_name_index): New types.
6017         (file_entry): Use them.
6018         (file_entry::include): Use to_underlying.
6019         (line_header::add_file_name): Use dir_index.
6020         (read_formatted_entries): Use gdb::optional.  Read form before
6021         writting to file_entry.
6022         (dwarf_decode_line_header): Use dir_index.
6023         (lnp_state_machine::current_file): Use to_underlying.
6024         (lnp_state_machine::file): Change type to file_name_index.
6025         (dwarf_record_line): Use to_underlying.
6026         (init_lnp_state_machine): Use file_name_index.
6027         (dwarf_decode_lines_1): Use dir_index and file_name_index.
6028
6029 2017-04-04  Pedro Alves  <palves@redhat.com>
6030
6031         * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
6032         operator bool, has_value and get methods.
6033
6034 2017-04-04  Pedro Alves  <palves@redhat.com>
6035
6036         * dwarf2read.c (struct file_entry): Add ctors, and initialize all
6037         fields.
6038         (line_header): Initialize all data fields.  Change type of
6039         standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
6040         Change type of include_dirs to std::vector<const char *>.  Remove
6041         num_include_dirs, include_dirs_size.  Change type of file_names to
6042         std::vector<file_entry>.  Remove num_file_names, file_names_size.
6043         (line_header::line_header): New.
6044         (line_header::add_include_dir, line_header::add_file_name): New
6045         methods.
6046         (line_header::include_dir_at): Remove NULL check.
6047         (line_header::file_name_at): Add const overload.
6048         (line_header_up): New unique_ptr typedef.
6049         (dw2_get_file_names_reader): Use line_header_up.  Adjust to use
6050         std::vector.  Remove free_line_header call.
6051         (dwarf2_build_include_psymtabs): Use line_header_up.  Remove
6052         free_line_header call.
6053         (free_cu_line_header): Delete.
6054         (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
6055         (setup_type_unit_groups): Use line_header_up instead of cleanups.
6056         Adjust to use std::vector.
6057         (free_line_header): Delete.
6058         (free_line_header_voidp): Use delete.
6059         (add_include_dir): Replace with ...
6060         (line_header::add_include_dir): ... this method.  Use std::vector.
6061         (add_file_name): Replace with ...
6062         (line_header::add_file_name): ... this method.  Use std::vector.
6063         (add_include_dir_stub): Delete.
6064         (read_formatted_entries): Remove memset.
6065         (dwarf_decode_line_header): Return a line_header_up instead of a
6066         raw pointer.  Remove cleanup handling.  Pass lambdas to
6067         read_formatted_entries.  Adjust to use line_header methods.
6068         (dwarf_decode_lines_1): Adjust to use line_header methods.
6069         (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
6070         use std::vector.
6071
6072 2017-04-04  Simon Marchi  <simon.marchi@polymtl.ca>
6073
6074         * remote.c (set_general_thread, set_continue_thread): Use ptid_t
6075         instead of struct ptid.
6076
6077 2017-05-04  Alan Hayward  <alan.hayward@arm.com>
6078
6079         * frame.c (get_frame_register_bytes): Unwind using value.
6080         (put_frame_register_bytes): Likewise.
6081
6082 2017-03-30  Iain Buclaw  <ibuclaw@gdcproject.org>
6083
6084         * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
6085         aggregate-like.
6086
6087 2017-03-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
6088
6089         * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
6090
6091 2017-03-29  Yao Qi  <yao.qi@linaro.org>
6092
6093         * gdbthread.h (struct thread_info): Declare constructor and
6094         destructor.  Add some in-class member initializers.
6095         * thread.c (free_thread): Remove.
6096         (init_thread_list): Call delete instead of free_thread.
6097         (new_thread): Call thread_info constructor.
6098         (thread_info::thread_info): New function.
6099         (thread_info::~thread_info): New function.
6100         (delete_thread_1): Call delete instead of free_thread.
6101         (make_cleanup_restore_current_thread): Move tp and frame to
6102         inner block.
6103
6104 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
6105
6106         * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
6107         (arc_skip_prologue): Likewise.
6108         (arc_make_frame_cache): Likewise.
6109         (arc_pv_get_operand): New function.
6110         (arc_is_in_prologue): Likewise.
6111         (arc_analyze_prologue): Likewise.
6112         (arc_print_frame_cache): Likewise.
6113         (MAX_PROLOGUE_LENGTH): New constant.
6114
6115 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
6116
6117         * configure.tgt: Add arc-insn.o.
6118         * arc-tdep.c (arc_delayed_print_insn): Make non-static.
6119         (dump_arc_instruction_command): New function.
6120         (arc_fprintf_disasm): Likewise.
6121         (arc_disassemble_info): Likewise.
6122         (arc_insn_get_operand_value): Likewise.
6123         (arc_insn_get_operand_value_signed): Likewise.
6124         (arc_insn_get_memory_base_reg): Likewise.
6125         (arc_insn_get_memory_offset): Likewise.
6126         (arc_insn_get_branch_target): Likewise.
6127         (arc_insn_dump): Likewise.
6128         (arc_insn_get_linear_next_pc): Likewise.
6129         * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
6130         (arc_disassemble_info): Likewise.
6131         (arc_insn_get_branch_target): Likewise.
6132         (arc_insn_get_linear_next_pc): Likewise.
6133         * NEWS: Mention new "maint print arc arc-instruction".
6134
6135 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
6136
6137         * arc-tdep (maintenance_print_arc_list): New variable.
6138         (maintenance_print_arc_command): New function.
6139
6140 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
6141
6142         * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
6143         Add "limm" and "reserved".
6144         (arc_cannot_fetch_register, arc_cannot_store_register): Add
6145         ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
6146         * arc-tdep.h (arc_regnum): Likewise.
6147
6148 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
6149
6150         * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
6151         for THREADPTR register.
6152         (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
6153         register.
6154         * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
6155         (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
6156         * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
6157
6158 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
6159
6160         * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
6161         registers above gdbarch_num_regs (gdbarch) as privileged in
6162         call0 ABI.
6163
6164 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
6165
6166         * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
6167         for a single specified register or for all registers in
6168         a0_base..a0_base + C0_NREGS range.
6169         (supply_gregset_reg): Call regcache_raw_supply for a single
6170         specified register or for all registers in a0_base..a0_base +
6171         C0_NREGS range.
6172
6173 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
6174
6175         * arch/xtensa.h (C0_NREGS): Add definition.
6176         * xtensa-tdep.c (C0_NREGS): Remove definition.
6177
6178 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
6179
6180         * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
6181         Drop xtensa_default_isa initialization.
6182         (xtensa_gdbarch_init): Initialize xtensa_default_isa.
6183
6184 2017-03-27  Pedro Alves  <palves@redhat.com>
6185
6186         * dwarf2read.c (file_entry) <dir_index>: Add comment.
6187         (file_entry::include_dir): New method.
6188         (line_header::include_dir_at, line_header::file_name_at): New
6189         methods.
6190         (setup_type_unit_groups, setup_type_unit_groups)
6191         (psymtab_include_file_name): Simplify using the new methods.
6192         (lnp_state_machine) <the_line_header>: New field.
6193         <file>: Add comment.
6194         (lnp_state_machine::current_file): New method.
6195         (dwarf_record_line): Simplify using the new methods.
6196         (init_lnp_state_machine): Initialize the "the_line_header" field.
6197         (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
6198         Simplify using the new methods.
6199
6200 2017-03-27  Pedro Alves  <palves@redhat.com>
6201
6202         * cp-name-parser.y (make_empty): Delete.
6203         (demangler_special, nested_name, ptr_operator, array_indicator)
6204         (direct_declarator, declarator_1): Use fill_comp instead of
6205         make_empty.
6206
6207 2017-03-27  Pedro Alves  <palves@redhat.com>
6208
6209         * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
6210         to ATTRIBUTE_PRINTF.
6211         * solib-target.c (library_list_start_list): Print "string" not
6212         "version".
6213         * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
6214         gdb_xml_error call.
6215
6216 2017-03-27  Pedro Alves  <palves@redhat.com>
6217
6218         * dwarf2read.c (struct file_and_directory): New.
6219         (dwarf2_get_dwz_file): Adjust to use std::string.
6220         (dw2_get_file_names_reader): Adjust to use file_and_directory.
6221         (find_file_and_directory): Adjust to return a file_and_directory
6222         object.
6223         (read_file_scope): Adjust to use file_and_directory.  Remove
6224         make_cleanup/do_cleanups calls.
6225         (open_and_init_dwp_file): Adjust to use std::string.  Remove
6226         make_cleanup/do_cleanups calls.
6227         * python/python.c (do_start_initialization): Adjust to ldirname
6228         returning a std::string.
6229         * utils.c (ldirname): Now returns a std::string.
6230         * utils.h (ldirname): Change return type to std::string.
6231         * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
6232         returning a std::string.
6233         * xml-tdesc.c (file_read_description_xml): Likewise.
6234
6235 2017-03-24  Alan Hayward  <alan.hayward@arm.com>
6236
6237         * regcache.c (regcache_debug_print_register): New function.
6238         * regcache.h (regcache_debug_print_register): New declaration.
6239         * target.c (debug_print_register): Remove.
6240         (target_fetch_registers): Call regcache_debug_print_register.
6241         (target_store_registers): Likewise.
6242
6243 2017-03-24  Pádraig Brady  <pbrady@fb.com>
6244
6245         * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
6246         reference beyond the 'lh->include_dirs' array before accessing to
6247         it.
6248         (psymtab_include_file_name): Likewise.
6249         (dwarf_decode_lines_1): Likewise.
6250         (dwarf_decode_lines): Likewise.
6251         (file_file_name): Likewise.
6252
6253 2017-03-23  Simon Marchi  <simon.marchi@ericsson.com>
6254
6255         * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
6256         inferior_ptid.
6257         * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
6258         ps_lsetfpregs): Likewise.
6259         * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
6260         * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
6261         ps_lsetfpregs): Likewise.
6262         * target.c (target_fetch_registers, target_store_registers):
6263         Remove asserts.
6264
6265 2017-03-23  Alan Hayward  <alan.hayward@arm.com>
6266
6267         * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
6268
6269 2017-03-23  Yao Qi  <yao.qi@linaro.org>
6270
6271         * aarch64-tdep.c (aarch64_process_record_test): Declare.
6272         (_initialize_aarch64_tdep): Register it.
6273         (aarch64_record_load_store): Handle PRFM instruction.
6274         (aarch64_process_record_test): New function.
6275
6276 2017-03-23  Yao Qi  <yao.qi@linaro.org>
6277
6278         * aarch64-tdep.c (aarch64_record_load_store): Fix code
6279         indentation.
6280
6281 2017-03-23  Yao Qi  <yao.qi@linaro.org>
6282
6283         * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
6284
6285 2017-03-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
6286
6287         python/python.c (do_start_initialization): Fix memory leak.
6288
6289 2017-03-22  Simon Marchi  <simon.marchi@polymtl.ca>
6290
6291         * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
6292         using get_ptrace_pid.
6293         * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
6294         inferior_ptid.
6295         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
6296         inferior_ptid instead of pid.
6297
6298 2017-03-22  Yao Qi  <yao.qi@linaro.org>
6299
6300         * aarch64-tdep.c: Wrap locally used classes in anonymous
6301         namespace.
6302         * arm-tdep.c: Likewise.
6303         * linespec.c: Likewise.
6304         * ui-out.c: Likewise.
6305
6306 2017-03-22  Jonah Graham  <jonah@kichwacoders.com>
6307
6308         PR gdb/19637
6309         * python/lib/gdb/printer/bound_registers.py: Import sys.
6310
6311 2017-03-21  Simon Marchi  <simon.marchi@ericsson.com>
6312
6313         * windows-nat.c (do_windows_fetch_inferior_registers): Add
6314         windows_thread_info parameter and use it instead of
6315         current_thread.
6316         (windows_fetch_inferior_registers): Don't set current_thread,
6317         pass the thread to do_windows_fetch_inferior_registers.  Use
6318         ptid from regcache instead of inferior_ptid.
6319         (do_windows_store_inferior_registers): Add windows_thread_info
6320         parameter and use it instead of current_thread.
6321         (windows_store_inferior_registers): Don't set current_thread,
6322         pass the thread to do_windows_store_inferior_registers.  Use
6323         ptid from regcache instead of inferior_ptid.
6324
6325 2017-03-21  Simon Marchi  <simon.marchi@ericsson.com>
6326
6327         * ser-mingw.c (ser_windows_raw): Remove reference to
6328         struct serial::current_timeout.
6329
6330 2017-03-21  Ivo Raisr  <ivo.raisr@oracle.com>
6331
6332         PR tdep/20928
6333         * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
6334         * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
6335         (sparc64_fsr_type): Fix %fsr decoding.
6336
6337 2017-03-21  Tim Wiederhake  <tim.wiederhake@intel.com>
6338
6339         * python/py-record-btrace.c (btpy_insn_data): Change return type
6340         for Python 2.
6341
6342 2017-03-20  Simon Marchi  <simon.marchi@polymtl.ca>
6343
6344         * spu-linux-nat.c (spu_fetch_inferior_registers,
6345         spu_store_inferior_registers): Use ptid from regcache, set and
6346         restore inferior_ptid.
6347         * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
6348         Likewise.
6349
6350 2017-03-20  Simon Marchi  <simon.marchi@polymtl.ca>
6351
6352         * i386-linux-nat.c (fetch_register, store_register,
6353         i386_linux_fetch_inferior_registers,
6354         i386_linux_store_inferior_registers): Use ptid from regcache.
6355         * ia64-linux-nat.c (ia64_linux_fetch_register,
6356         ia64_linux_store_register): Likewise.
6357         * inf-ptrace.c (inf_ptrace_fetch_register,
6358         inf_ptrace_store_register): Likewise.
6359         * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
6360         m32r_linux_store_inferior_registers): Likewise.
6361         * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
6362         m68kbsd_store_inferior_registers): Likewise.
6363         * m68k-linux-nat.c (fetch_register, store_register,
6364         m68k_linux_fetch_inferior_registers,
6365         m68k_linux_store_inferior_registers): Likewise.
6366         * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
6367         m88kbsd_store_inferior_registers): Likewise.
6368         * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
6369         mips_fbsd_store_inferior_registers): Likewise.
6370         * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
6371         mips64_linux_regsets_store_registers): Likewise.
6372         * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
6373         mipsnbsd_store_inferior_registers): Likewise.
6374         * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
6375         mips64obsd_store_inferior_registers): Likewise.
6376         * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
6377         Likewise.
6378         * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
6379         ppcfbsd_store_inferior_registers): Likewise.
6380         * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
6381         ppc_linux_store_inferior_registers): Likewise.
6382         * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
6383         ppcnbsd_store_inferior_registers): Likewise.
6384         * ppc-obsd-nat.c (ppcobsd_fetch_registers,
6385         ppcobsd_store_registers): Likewise.
6386         * procfs.c (procfs_fetch_registers, procfs_store_registers):
6387         Likewise.
6388         * ravenscar-thread.c (ravenscar_fetch_registers,
6389         ravenscar_store_registers, ravenscar_prepare_to_store):
6390         Likewise.
6391         * record-btrace.c (record_btrace_fetch_registers,
6392         record_btrace_store_registers, record_btrace_prepare_to_store):
6393         Likewise.
6394         * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
6395         Lookup inferior using ptid from regcache, instead of
6396         current_inferior.
6397         * remote.c (remote_fetch_registers, remote_store_registers): Use
6398         ptid from regcache.
6399         * rs6000-nat.c (fetch_register, store_register): Likewise.
6400         * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
6401         s390_linux_store_inferior_registers): Likewise.
6402         * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
6403         shnbsd_store_inferior_registers): Likewise.
6404         * sol-thread.c (sol_thread_fetch_registers,
6405         sol_thread_store_registers): Likewise.
6406         * sparc-nat.c (sparc_fetch_inferior_registers,
6407         sparc_store_inferior_registers): Likewise.
6408         * tilegx-linux-nat.c (fetch_inferior_registers,
6409         store_inferior_registers): Likewise.
6410         * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
6411         vaxbsd_store_inferior_registers): Likewise.
6412         * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
6413         store_xtregs): Likewise.
6414
6415 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6416
6417         PR gdb/14441
6418         * NEWS: Mention support for rvalue references in GDB and python.
6419         * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
6420         supports both lvalue and rvalue references.
6421
6422 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6423
6424         PR gdb/14441
6425         * gdbtypes.c (rank_one_type): Implement overloading
6426         resolution rules regarding rvalue references.
6427
6428 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6429
6430         PR gdb/14441
6431         * aarch64-tdep.c (aarch64_type_align)
6432         (aarch64_extract_return_value, aarch64_store_return_value): Change
6433         lvalue reference type checks to general reference type checks.
6434         * amd64-tdep.c (amd64_classify): Likewise.
6435         * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
6436         Likewise.
6437         * arm-tdep.c (arm_type_align, arm_extract_return_value)
6438         (arm_store_return_value): Likewise.
6439         * ax-gdb.c (gen_fetch, gen_cast): Likewise.
6440         * c-typeprint.c (c_print_type): Likewise.
6441         * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
6442         (cplus_number_of_children, cplus_describe_child): Likewise.
6443         * compile/compile-c-symbols.c (generate_vla_size): Likewise.
6444         * completer.c (expression_completer): Likewise.
6445         * cp-support.c (make_symbol_overload_list_adl_namespace):
6446         Likewise.
6447         * darwin-nat-info.c (info_mach_region_command): Likewise.
6448         * dwarf2loc.c (entry_data_value_coerce_ref)
6449         (value_of_dwarf_reg_entry): Likewise.
6450         * eval.c (ptrmath_type_p, evaluate_subexp_standard)
6451         (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
6452         Likewise.
6453         * findvar.c (extract_typed_address, store_typed_address):
6454         Likewise.
6455         * gdbtypes.c (rank_one_type): Likewise.
6456         * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
6457         * infcall.c (value_arg_coerce): Likewise.
6458         * language.c (pointer_type): Likewise.
6459         * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
6460         Likewise.
6461         * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
6462         * mn10300-tdep.c (mn10300_type_align): Likewise.
6463         * msp430-tdep.c (msp430_push_dummy_call): Likewise.
6464         * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
6465         (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
6466         Likewise.
6467         * printcmd.c (print_formatted, x_command): Likewise.
6468         * python/py-type.c (typy_get_composite, typy_template_argument):
6469         Likewise.
6470         * python/py-value.c (valpy_referenced_value)
6471         (valpy_get_dynamic_type, value_has_field): Likewise.
6472         * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
6473         * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
6474         * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
6475         * spu-tdep.c (spu_scalar_value_p): Likewise.
6476         * symtab.c (lookup_symbol_aux): Likewise.
6477         * typeprint.c (whatis_exp, print_type_scalar): Likewise.
6478         * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
6479         Likewise.
6480         * valops.c (value_cast_pointers, value_cast)
6481         (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
6482         (value_struct_elt, value_struct_elt_bitpos)
6483         (value_find_oload_method_list, find_overload_match)
6484         (value_rtti_indirect_type): Likewise.
6485         * valprint.c (val_print_scalar_type_p, generic_val_print):
6486         Likewise.
6487         * value.c (value_actual_type, value_as_address, unpack_long)
6488         (pack_long, pack_unsigned_long, coerce_ref_if_computed)
6489         (coerce_ref): Likewise.
6490         * varobj.c (varobj_get_value_type): Likewise.
6491
6492 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6493
6494         PR gdb/14441
6495         * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
6496         table of constants.
6497         * python/lib/gdb/command/explore.py: Support exploring values
6498         of rvalue reference types.
6499         * python/lib/gdb/types.py: Implement get_basic_type() for
6500         rvalue reference types.
6501         * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
6502         constant.
6503         * python/py-value.c (valpy_getitem): Add an rvalue reference
6504         check.
6505         (valpy_reference_value): Add new parameter "refcode".
6506         (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
6507         New wrappers for valpy_reference_value().
6508         * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
6509         (gdbpy_invoke_xmethod): Likewise.
6510
6511 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6512
6513         PR gdb/14441
6514         * dwarf2read.c (process_die, read_type_die_1): Handle the
6515         DW_TAG_rvalue_reference_type DIE.
6516         (read_tag_reference_type): Add new parameter "refcode".
6517
6518 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6519
6520         PR gdb/14441
6521         * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
6522         (c_type_print_modifier, c_type_print_varspec_suffix)
6523         (c_type_print_base): Support printing rvalue reference types.
6524         * c-valprint.c (c_val_print, c_value_print): Support printing
6525         rvalue reference values.
6526
6527 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6528
6529         PR gdb/14441
6530         * cp-name-parser.y (ptr_operator): Handle the '&&' token in
6531         typename.
6532         * cp-support.c (replace_typedefs): Handle
6533         DEMANGLE_COMPONENT_RVALUE_REFERENCE.
6534         * python/py-type.c (typy_lookup_type): Likewise.
6535
6536 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6537
6538         PR gdb/14441
6539         * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
6540         * parse.c (insert_type): Change assert statement.
6541         (follow_types): Handle rvalue reference types.
6542         * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
6543         constant.
6544
6545 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6546
6547         PR gdb/14441
6548         * ada-lang.c (ada_evaluate_subexp): Adhere to the new
6549         value_ref() interface.
6550         * c-valprint.c (c_value_print): Likewise.
6551         * infcall.c (value_arg_coerce): Likewise.
6552         * python/py-value.c (valpy_reference_value): Likewise.
6553         * valops.c (value_cast, value_reinterpret_cast)
6554         (value_dynamic_cast, typecmp): Likewise.
6555         (value_ref): Parameterize by kind of return value reference type.
6556         * value.h (value_ref): Add new parameter "refcode".
6557
6558 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6559
6560         PR gdb/14441
6561         * dwarf2read.c (read_tag_reference_type): Use
6562         lookup_lvalue_reference_type() instead of lookup_reference_type().
6563         * eval.c (evaluate_subexp_standard): Likewise.
6564         * f-exp.y: Likewise.
6565         * gdbtypes.c (make_reference_type, lookup_reference_type):
6566         Generalize with rvalue reference types.
6567         (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
6568         convenience wrappers for lookup_reference_type().
6569         * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
6570         reference kind parameter.
6571         (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
6572         wrappers for lookup_reference_type().
6573         * guile/scm-type.c (gdbscm_type_reference): Use
6574         lookup_lvalue_reference_type() instead of lookup_reference_type().
6575         * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
6576         * parse.c (follow_types): Likewise.
6577         * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
6578         * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
6579         Likewise.
6580         * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
6581         (gdbpy_invoke_xmethod): Likewise.
6582         * stabsread.c: Provide extra argument to make_reference_type()
6583         call.
6584         * valops.c (value_ref, value_rtti_indirect_type): Use
6585         lookup_lvalue_reference_type() instead of lookup_reference_type().
6586
6587 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
6588
6589         PR gdb/14441
6590         * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
6591         (TYPE_IS_REFERENCE): New macro.
6592         (struct type): Add rvalue_reference_type field.
6593         (TYPE_RVALUE_REFERENCE_TYPE): New macro.
6594
6595 2017-03-20  Marc-Andre Laperle  <marc-andre.laperle@ericsson.com>
6596
6597         * NEWS: Add an entry about new '-file-list-shared-libraries' command.
6598         * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
6599         New function definition.
6600         * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
6601         * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
6602         New function declaration.
6603         * mi/mi-interp.c (mi_output_solib_attribs): New Function.
6604         * mi/mi-interp.h: New file.
6605         * solib.c (info_sharedlibrary_command): Replace for loop with
6606         ALL_SO_LIBS macro
6607         * solib.h (update_solib_list): New function declaration.
6608         (so_list_head): Move macro.
6609         * solist.h (ALL_SO_LIBS): New macro.
6610
6611 2017-03-20  Marc-Andre Laperle  <marc-andre.laperle@ericsson.com>
6612
6613         * infcmd.c (post_create_inferior): Remove unused argument in
6614         call to solib_add.
6615         * remote.c (remote_start_remote): Likewise.
6616         * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
6617         * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
6618         (enable_break): Likewise.
6619         * solib.c (update_solib_list): Remove unused target argument
6620         and its documentation.
6621         (solib_add): Remove unused target argument.  Remove unused
6622         argument in call to update_solib_list.
6623         (info_sharedlibrary_command): Remove unused argument in call
6624         to update_solib_list.
6625         (sharedlibrary_command): Remove unused argument in call to
6626         solib_add.
6627         (handle_solib_event): Likewise.
6628         (reload_shared_libraries): Likewise.
6629         * solib.h (solib_add): Remove unused target argument.
6630
6631 2017-03-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6632
6633         * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
6634         (s390_displaced_step_fixup): Cover relative branches with the
6635         default fixup handling.  This fixes lack of support for some
6636         relative branch instructions.
6637
6638 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
6639
6640         * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
6641         ptid from regcache.
6642
6643 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
6644
6645         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
6646         i386_darwin_store_inferior_registers): Use ptid from regcache.
6647
6648 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
6649
6650         * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
6651         i386bsd_store_inferior_registers): Use ptid from regcache.
6652
6653 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
6654
6655         * hppa-obsd-nat.c (hppaobsd_fetch_registers,
6656         hppaobsd_store_registers): Use ptid from regcache.
6657
6658 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
6659
6660         * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
6661         hppanbsd_store_registers): Use ptid from regcache.
6662
6663 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
6664
6665         * hppa-linux-nat.c (fetch_register, store_register): Use ptid
6666         from regcache.  Use get_ptrace_pid.
6667
6668 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
6669
6670         * corelow.c (get_core_register_section): Use ptid from regcache,
6671         update doc.
6672
6673 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
6674
6675         * bsd-uthread.c (bsd_uthread_fetch_registers,
6676         bsd_uthread_store_registers): Use ptid from regcache, set and
6677         restore inferior_ptid.
6678
6679 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
6680
6681         * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
6682         fetch_fp_regs, store_register, store_regs, store_fp_register,
6683         store_fp_regs): Use ptid from regcache.
6684
6685 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
6686
6687         * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
6688         store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
6689         store_vfp_regs): Use ptid from regcache.
6690
6691 2017-03-17  Pedro Alves  <palves@redhat.com>
6692
6693         PR remote/21188
6694         * ser-base.c (ser_base_wait_for): Add comment.
6695         (do_ser_base_readchar): Improve comment based on the ser-unix.c's
6696         version.
6697         * ser-unix.c (hardwire_raw): Remove reference to
6698         scb->current_timeout.
6699         (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
6700         (hardwire_ops): Install ser_base_readchar instead of
6701         hardwire_readchar.
6702         * serial.h (struct serial) <current_timeout, timeout_remaining>:
6703         Remove fields.
6704
6705 2017-03-17  Jonah Graham  <jonah@kichwacoders.com>
6706
6707         PR gdb/19637
6708         * python/lib/gdb/printer/bound_registers.py: Add support for
6709         Python 3.
6710
6711 2017-03-16  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6712
6713         * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
6714         pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
6715         (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
6716         byte_offset to subobj_byte_offset.  Fix the handling of
6717         DWARF_VALUE_STACK on big-endian targets when coming via an
6718         implicit pointer.
6719         (dwarf2_evaluate_loc_desc): Adjust call to
6720         dwarf2_evaluate_loc_desc_full.
6721         * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
6722         * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
6723
6724 2017-03-16  Yao Qi  <yao.qi@linaro.org>
6725
6726         * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
6727         and REVSH instructions.
6728
6729 2017-03-16  Yao Qi  <yao.qi@linaro.org>
6730
6731         * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
6732         (arm_record_test): Declare.
6733         (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
6734         (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
6735         align with the manual.
6736         (thumb_record_misc): Adjust the code order to align with the
6737         manual.
6738         (thumb2_record_decode_insn_handler): Fix instruction matching.
6739         (instruction_reader_thumb): New class.
6740         (arm_record_test): New function.
6741
6742 2017-03-16  Yao Qi  <yao.qi@linaro.org>
6743
6744         * arm-tdep.c (abstract_memory_reader): New class.
6745         (instruction_reader): New class.
6746         (extract_arm_insn): Add argument 'reader'.  Callers updated.
6747         (decode_insn): Likewise.
6748
6749 2017-03-16  Doug Evans  <dje@google.com>
6750
6751         * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
6752         member.  Change type of TYPE member to SCM.  All uses updated.
6753         (lsscm_make_lazy_string_smob): Add assert.
6754         (lsscm_make_lazy_string): Flag bad length values.
6755         (lsscm_elt_type): New function.
6756         (gdbscm_lazy_string_to_value): Rewrite to use
6757         lsscm_safe_lazy_string_to_value.
6758         (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
6759         * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
6760         values.  Fix TYPE_CODE_PTR.  Handle TYPE_CODE_ARRAY.  Handle typedefs
6761         in incoming type.
6762         * guile/guile-internal.h (tyscm_scm_to_type): Declare.
6763         * guile/scm-type.c (tyscm_scm_to_type): New function.
6764
6765 2017-03-15  Doug Evans  <dje@google.com>
6766
6767         PR python/17728, python/18439, python/18779
6768         * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
6769         member.  Change type of TYPE member to PyObject *.  All uses updated.
6770         (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
6771         (gdbpy_create_lazy_string_object): Flag bad length values.
6772         Handle TYPE_CODE_ARRAY with possibly different user-provided length.
6773         Handle typedefs in incoming type.
6774         (stpy_lazy_string_elt_type): New function.
6775         (gdbpy_extract_lazy_string): Call it.
6776         * python/py-value.c (valpy_lazy_string): Flag bad length values.
6777         Fix handling of TYPE_CODE_PTR.  Handle TYPE_CODE_ARRAY.  Handle
6778         typedefs in incoming type.
6779
6780 2017-03-16  Doug Evans  <dje@google.com>
6781
6782         * guile/guile-internal.h (tyscm_scm_to_type): Declare.
6783         * guile/scm-type.c (tyscm_scm_to_type): New function.
6784
6785 2017-03-16  Jiong Wang  <jiong.wang@arm.com>
6786
6787         * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
6788         "ULONGEST" for "skip".
6789
6790 2017-03-14  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6791
6792         PR gdb/21220
6793         * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
6794         TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
6795         (inf_ptrace_peek_poke): ...here.  New function.  Now also loop
6796         over ptrace peek/poke until end of buffer or error.
6797
6798 2017-03-14  Simon Marchi  <simon.marchi@ericsson.com>
6799
6800         * parse.c (length_of_subexp): Make static.
6801         * parser-defs.h (length_of_subexp): Remove.
6802
6803 2017-03-14  Andreas Arnez  <arnez@linux.vnet.ibm.com>
6804
6805         * linux-nat.c (linux_proc_xfer_partial): Handle write operations
6806         as well.
6807
6808 2017-03-14  Pedro Alves  <palves@redhat.com>
6809
6810         * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
6811         (main): Use std::unique_ptr.  Remove calls to
6812         cp_demangled_name_parse_free.
6813
6814 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
6815
6816         * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
6817         alphabsd_store_inferior_registers): Use regcache->ptid instead
6818         of inferior_ptid.
6819
6820 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
6821
6822         * aix-thread.c (aix_thread_fetch_registers,
6823         aix_thread_store_registers): Use regcache->ptid instead of
6824         inferior_ptid.
6825
6826 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
6827
6828         * aarch64-linux-nat.c (fetch_gregs_from_thread,
6829         store_gregs_to_thread, fetch_fpregs_from_thread,
6830         store_fpregs_to_thread): Use regcache->ptid instead of
6831         inferior_ptid.
6832
6833 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
6834
6835         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
6836         amd64_linux_fetch_inferior_registers): Use regcache->ptid
6837         instead of inferior_ptid.
6838
6839 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
6840
6841         * target.c (target_fetch_registers, target_store_registers): Add
6842         assert.
6843
6844 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
6845
6846         * regcache.h (regcache_get_ptid): New function.
6847         * regcache.c (regcache_get_ptid): New function.
6848
6849 2017-03-13  Mark Wielaard  <mark@klomp.org>
6850
6851         * cp-name-parser.y (make_empty): Initialize d_printing to zero.
6852
6853 2017-03-10  Keith Seitz  <keiths@redhat.com>
6854
6855         PR c++/8218
6856         * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
6857
6858 2017-03-08  Pedro Alves  <palves@redhat.com>
6859
6860         PR gdb/18360
6861         * infrun.c (start_step_over, do_target_resume, resume)
6862         (restart_threads): Assert we're not resuming a thread that is
6863         meant to be stopped.
6864         (infrun_thread_stop_requested_callback): Delete.
6865         (infrun_thread_stop_requested): If the thread is internally
6866         stopped, queue a pending stop event and clear the thread's
6867         inline-frame state.
6868         (handle_stop_requested): New function.
6869         (handle_syscall_event, handle_inferior_event_1): Use
6870         handle_stop_requested.
6871         (handle_stop_requested): New function.
6872         (handle_signal_stop): Set the thread's stop_signal here instead of
6873         at caller.
6874         (finish_step_over): Clear step over info unconditionally.
6875         (handle_signal_stop): If the user had interrupted the event
6876         thread, consider the stop a random signal.
6877         (handle_signal_stop) <signal arrived while stepping over
6878         breakpoint>: Don't restart threads here.
6879         (stop_waiting): Don't clear step-over info here.
6880
6881 2017-03-08  Pedro Alves  <palves@redhat.com>
6882
6883         PR 21206
6884         * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
6885         goes to argument 2, not 1.
6886
6887 2017-03-08  Pedro Alves  <palves@redhat.com>
6888
6889         PR cli/21218
6890         * top.c (gdb_readline_wrapper): Avoid passing NULL to
6891         display_gdb_prompt.
6892         (command_line_input): Add comment.
6893
6894 2017-03-08  Pedro Alves  <palves@redhat.com>
6895
6896         PR tui/21216
6897         * tui/tui-file.c (tui_file::write): New.
6898         * tui/tui-file.h (tui_file): Override "write".
6899         * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
6900         factored out from ...
6901         (tui_puts): ... here.
6902         (tui_putc): Use them.
6903         (tui_write): New function.
6904         * tui/tui-io.h (tui_write): Declare.
6905
6906 2017-03-07  Sergio Durigan Junior  <sergiodj@redhat.com>
6907
6908         * Makefile.in (SFILES): Replace "environ.c" with
6909         "common/environ.c".
6910         (HFILES_NO_SRCDIR): Likewise, for "environ.h".
6911         * environ.c: Include "common-defs.h" instead of "defs.h.  Moved
6912         to...
6913         * common/environ.c: ... here.
6914         * environ.h: Moved to...
6915         * common/environ.h: ... here.
6916
6917 2017-03-07  Peter Bergner  <bergner@vnet.ibm.com>
6918
6919         * gdbarch.sh (pstring_ptr): New static function.
6920         (gdbarch_disassembler_options): Use it.
6921         (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
6922         not valid_disassembler_option->name.
6923         * gdbarch.c: Regenerate.
6924
6925 2017-03-07  Peter Bergner  <bergner@vnet.ibm.com>
6926
6927         * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
6928
6929 2017-03-07  Pedro Alves  <palves@redhat.com>
6930
6931         * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
6932
6933 2017-03-07  Walfred Tedeschi  <walfred.tedeschi@intel.com>
6934
6935         * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
6936         * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
6937         * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
6938         * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
6939
6940 2017-03-06  Simon Marchi  <simon.marchi@ericsson.com>
6941
6942         * xtensa-linux-nat.c (fetch_gregs): Remove const.
6943
6944 2017-03-03  Simon Marchi  <simon.marchi@ericsson.com>
6945
6946         * remote.c (remote_add_target_side_commands): Use range-based
6947         for loop.
6948
6949 2017-03-03  Yao Qi  <yao.qi@linaro.org>
6950
6951         PR gdb/21165
6952         * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
6953         value is lazy.
6954         * valprint.c (common_val_print): Likewise.
6955
6956 2017-02-28  Peter Bergner  <bergner@vnet.ibm.com>
6957
6958         * NEWS: Mention new set/show disassembler-options commands.
6959         * doc/gdb.texinfo: Document new set/show disassembler-options commands.
6960         * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
6961         (prospective_options): New static variable.
6962         (gdb_disassembler::gdb_disassembler): Initialize
6963         m_di.disassembler_options.
6964         (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
6965         (get_disassembler_options): New function.
6966         (set_disassembler_options): Likewise.
6967         (set_disassembler_options_sfunc): Likewise.
6968         (show_disassembler_options_sfunc): Likewise.
6969         (disassembler_options_completer): Likewise.
6970         (_initialize_disasm): Likewise.
6971         * disasm.h (get_disassembler_options): New prototype.
6972         (set_disassembler_options): Likewise.
6973         * gdbarch.sh (gdbarch_disassembler_options): New variable.
6974         (gdbarch_verify_disassembler_options): Likewise.
6975         * gdbarch.c: Regenerate.
6976         * gdbarch.h: Likewise.
6977         * arm-tdep.c (num_disassembly_options): Delete.
6978         (set_disassembly_style): Likewise.
6979         (arm_disassembler_options): New static variable.
6980         (set_disassembly_style_sfunc): Convert short style name into long
6981         option name.  Call set_disassembler_options.
6982         (show_disassembly_style_sfunc): New function.
6983         (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
6984         set_gdbarch_verify_disassembler_options.
6985         (_initialize_arm_tdep): Delete regnames variable and update callers.
6986         (arm_disassembler_options): Initialize.
6987         (disasm_options): New variable.
6988         (num_disassembly_options): Rename from this...
6989         (num_disassembly_styles): ...to this.  Compute by scanning through
6990         disasm_options.
6991         (valid_disassembly_styles): Initialize using disasm_options.
6992         Remove calls to parse_arm_disassembler_option, get_arm_regnames and
6993         set_arm_regname_option.
6994         Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
6995         * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
6996         (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
6997         set_gdbarch_verify_disassembler_options.
6998         * s390-tdep.c (s390_disassembler_options): New static variable.
6999         (s390_gdbarch_init):all set_gdbarch_disassembler_options and
7000         set_gdbarch_verify_disassembler_options.
7001
7002 2017-02-27  Simon Marchi  <simon.marchi@ericsson.com>
7003
7004         * remote.c (remote_add_target_side_condition): Remove "struct"
7005         keyword from range-based for loop.
7006
7007 2017-02-27  Simon Marchi  <simon.marchi@ericsson.com>
7008
7009         * remote.c (remote_add_target_side_condition): Use range-based
7010         for loop.  Update comment.
7011
7012 2017-02-27  Yao Qi  <yao.qi@linaro.org>
7013
7014         * f-typeprint.c (f_print_type): Check "varstring" is empty first.
7015
7016 2017-02-26  Alan Hayward  <alan.hayward@arm.com>
7017
7018         * regcache.c (regcache_raw_update): New function.
7019         (regcache_raw_read): Move code to regcache_raw_update.
7020         * regcache.h (regcache_raw_update): New declaration.
7021         * remote.c (remote_prepare_to_store): Call regcache_raw_update.
7022
7023 2017-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
7024
7025         * dwarf2read.c (create_debug_type_hash_table): Initialize
7026         header.signature and header.type_offset_in_tu.
7027
7028 2017-02-24  Pedro Alves  <palves@redhat.com>
7029
7030         * symtab.c (make_file_symbol_completion_list_1): Use
7031         add_symtab_completions.
7032
7033 2017-02-24  Alan Hayward  <alan.hayward@arm.com>
7034
7035         * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
7036
7037 2017-02-24  Alan Hayward  <alan.hayward@arm.com>
7038
7039         * i386-tdep.c (i386_pseudo_register_read_into_value): Use
7040         I386_MAX_REGISTER_SIZE.
7041         (i386_pseudo_register_write): Likewise.
7042         (i386_process_record): Likewise.
7043         * i387-tdep.c (i387_supply_xsave): Likewise.
7044         * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
7045         (store_register): Likewise.
7046
7047 2017-02-23  Pedro Alves  <palves@redhat.com>
7048
7049         * ada-lang.c: Include "common/function-view.h".
7050         (ada_iterate_over_symbols): Adjust to use function_view as
7051         callback type.
7052         (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
7053         (ada_make_symbol_completion_list): Use a lambda.
7054         (ada_exc_search_name_matches): Delete.
7055         (name_matches_regex): New.
7056         (ada_add_global_exceptions): Use a lambda and name_matches_regex.
7057         * compile/compile-c-support.c: Include "common/function-view.h".
7058         (print_one_macro): Change prototype to accept a ui_file pointer.
7059         (write_macro_definitions): Use a lambda.
7060         * dwarf2read.c: Include "common/function-view.h".
7061         (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
7062         (dw2_expand_symtabs_matching): Adjust to use function_view as
7063         callback type.
7064         * language.h: Include "common/function-view.h".
7065         (struct language_defn) <la_iterate_over_symbols>: Adjust to use
7066         function_view as callback type.
7067         (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
7068         * linespec.c: Include "common/function-view.h".
7069         (collect_info::add_symbol): New method.
7070         (struct symbol_and_data_callback, iterate_inline_only, struct
7071         symbol_matcher_data, iterate_name_matcher): Delete.
7072         (iterate_over_all_matching_symtabs): Adjust to use function_view
7073         as callback type and lambdas.
7074         (iterate_over_file_blocks): Adjust to use function_view as
7075         callback type.
7076         (decode_compound_collector): Now a class with private fields.
7077         (decode_compound_collector::release_symbols): New method.
7078         (collect_one_symbol): Rename to...
7079         (decode_compound_collector::operator()): ... this and adjust.
7080         (lookup_prefix_sym): decode_compound_collector construction bits
7081         move to decode_compound_collector ctor.  Pass the
7082         decode_compound_collector object directly as callback.  Remove
7083         cleanups and use decode_compound_collector::release_symbols
7084         instead.
7085         (symtab_collector): Now a class with private fields.
7086         (symtab_collector::release_symtabs): New method.
7087         (add_symtabs_to_list): Rename to...
7088         (symtab_collector::operator()): ... this and adjust.
7089         (collect_symtabs_from_filename): symtab_collector construction
7090         bits move to symtab_collector ctor.  Pass the symtab_collector
7091         object directly as callback.  Remove cleanups and use
7092         symtab_collector::release_symtabs instead.
7093         (collect_symbols): Delete.
7094         (add_matching_symbols_to_info): Use lambdas.
7095         * macrocmd.c (print_macro_callback): Delete.
7096         (info_macro_command): Use a lambda.
7097         (info_macros_command): Pass print_macro_definition as callable
7098         directly.
7099         (print_one_macro): Remove 'ignore' parameter.
7100         (macro_list_command): Adjust.
7101         * macrotab.c (macro_for_each_data::fn): Now a function_view.
7102         (macro_for_each_data::user_data): Delete field.
7103         (foreach_macro): Adjust to call the function_view.
7104         (macro_for_each): Adjust to use function_view as callback type.
7105         (foreach_macro_in_scope): Adjust to call the function_view.
7106         (macro_for_each_in_scope): Adjust to use function_view as callback
7107         type.
7108         * macrotab.h: Include "common/function-view.h".
7109         (macro_callback_fn): Declare a prototype instead of a pointer.
7110         Remove "user_data" parameter.
7111         (macro_for_each, macro_for_each_in_scope): Adjust to use
7112         function_view as callback type.
7113         * psymtab.c (partial_map_expand_apply)
7114         (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
7115         Adjust to use function_view as callback type and to return bool.
7116         (psym_expand_symtabs_matching): Adjust to use function_view as
7117         callback types.
7118         * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
7119         to use function_view as callback type and to return bool.
7120         (debug_qf_expand_symtabs_matching): Adjust to use function_view as
7121         callback types.
7122         * symfile.c (expand_symtabs_matching): Adjust to use function_view
7123         as callback types.
7124         * symfile.h: Include "common/function-view.h".
7125         (expand_symtabs_file_matcher_ftype)
7126         (expand_symtabs_symbol_matcher_ftype)
7127         (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
7128         return bool.
7129         (quick_symbol_functions::map_symtabs_matching_filename)
7130         (quick_symbol_functions::expand_symtabs_matching): Adjust to use
7131         function_view as callback type and return bool.
7132         (expand_symtabs_matching): Adjust to use function_view as callback
7133         type.
7134         (maintenance_expand_name_matcher)
7135         (maintenance_expand_file_matcher): Delete.
7136         (maintenance_expand_symtabs): Use lambdas.
7137         * symtab.c (iterate_over_some_symtabs): Adjust to use
7138         function_view as callback types and return bool.
7139         (iterate_over_symtabs): Likewise.  Use unique_xmalloc_ptr instead
7140         of a cleanup.
7141         (lookup_symtab_callback): Delete.
7142         (lookup_symtab): Use a lambda.
7143         (iterate_over_symbols): Adjust to use function_view as callback
7144         type.
7145         (struct search_symbols_data, search_symbols_file_matches)
7146         (search_symbols_name_matches): Delete.
7147         (search_symbols): Use a pair of lambdas.
7148         (struct add_name_data, add_macro_name, symbol_completion_matcher)
7149         (symtab_expansion_callback): Delete.
7150         (default_make_symbol_completion_list_break_on_1): Use lambdas.
7151         * symtab.h: Include "common/function-view.h".
7152         (iterate_over_some_symtabs): Adjust to use function_view as
7153         callback type and return bool.
7154         (iterate_over_symtabs): Adjust to use function_view as callback
7155         type.
7156         (symbol_found_callback_ftype): Remove 'data' parameter and return
7157         bool.
7158         (iterate_over_symbols): Adjust to use function_view as callback
7159         type.
7160
7161 2017-02-23  Pedro Alves  <palves@redhat.com>
7162
7163         * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
7164         (%.o) <unittests/%.c>: New pattern.
7165         * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
7166         CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
7167         * common/function-view.h: New file.
7168         * unittests/function-view-selftests.c: New file.
7169         * configure: Regenerate.
7170
7171 2017-02-23  Simon Marchi  <simon.marchi@ericsson.com>
7172
7173         * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
7174         inferior_ptid.
7175         * go32-nat.c (go32_thread_alive): Likewise.
7176
7177 2017-02-23  Yao Qi  <yao.qi@linaro.org>
7178
7179         * varobj-iter.h (varobj_iter_delete): Call xfree instead of
7180         delete.
7181
7182 2017-02-23  Yao Qi  <yao.qi@linaro.org>
7183
7184         * varobj.c (varobj_clear_saved_item): Use delete instead of
7185         xfree.
7186         (update_dynamic_varobj_children): Likewise.
7187
7188 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
7189
7190         * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
7191
7192 2017-02-21  Simon Marchi  <simon.marchi@ericsson.com>
7193
7194         * common/enum-flags.h (enum_flags::enum_flags): Initialize
7195         m_enum_value to 0 in default constructor.
7196
7197 2017-02-21  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
7198
7199         * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
7200         (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
7201         (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
7202         STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
7203         (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
7204         (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
7205         (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
7206         IS_STORE_CONDITIONAL_INSN.
7207
7208 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
7209
7210         * dwarf2_rnglists_process: Initialize range_beginning and range_end.
7211
7212 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7213
7214         * NEWS (Changes since GDB 7.12): Add DWARF-5.
7215
7216 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7217
7218         * dwarf2read.c (skip_one_die, read_attribute_value)
7219         (dwarf2_const_value_attr, dump_die_shallow)
7220         (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
7221         (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
7222
7223 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7224
7225         * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
7226         (dwarf_parse_macro_header): Accept DWARF version 5.
7227         (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
7228
7229 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7230
7231         * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
7232         DW_AT_GNU_*.
7233         * common/common-exceptions.h (enum errors): Likewise.
7234         * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
7235         * dwarf2expr.c (dwarf_block_to_dwarf_reg)
7236         (dwarf_expr_context::execute_stack_op): Likewise.
7237         * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
7238         Likewise.
7239         * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
7240         (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
7241         (show_entry_values_debug, call_site_to_target_addr)
7242         (func_addr_to_tail_call_list, func_verify_no_selftailcall)
7243         (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
7244         (entry_data_value_free_closure, value_of_dwarf_reg_entry)
7245         (value_of_dwarf_block_entry, indirect_pieced_value)
7246         (symbol_needs_eval_context::push_dwarf_reg_entry_value):
7247         (disassemble_dwarf_expression): Likewise.
7248         * dwarf2read.c (process_die, inherit_abstract_dies)
7249         (read_call_site_scope): Likewise.
7250         * gdbtypes.h (struct func_type, struct call_site_parameter)
7251         (struct call_site): Likewise.
7252         * stack.c (read_frame_arg): Likewise.
7253         * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
7254
7255 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7256
7257         * defs.h (read_unsigned_leb128): New declaration.
7258         * dwarf2loc.c (decode_debug_loclists_addresses): New function.
7259         (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
7260         (dwarf2_find_location_expression): Call also
7261         decode_debug_loclists_addresses.  Handle DWARF-5 ULEB128 length.
7262         * dwarf2loc.h (dwarf2_version): New declaration.
7263         * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
7264         rnglists.
7265         (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
7266         .debug_rnglists.
7267         (struct dwop_section_names): Add loclists_dwo.
7268         (dwop_section_names): Add .debug_loclists.dwo.
7269         (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
7270         (struct dwarf2_per_cu_data): Add dwarf_version.
7271         (struct dwo_sections): Add loclists.
7272         (struct attr_abbrev): Add implicit_const.
7273         (read_indirect_line_string): New declaration.
7274         (read_unsigned_leb128): Delete declaration.
7275         (rcuh_kind): New definition.
7276         (read_and_check_comp_unit_head): Change parameter
7277         is_debug_types_section to section_kind.
7278         (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
7279         (read_comp_unit_head): Change parameter abfd to section, add parameter
7280         section_kind.  Handle DWARF-5.
7281         (error_check_comp_unit_head): Accept also DWARF version 5.
7282         (read_and_check_comp_unit_head): Change parameter
7283         is_debug_types_section to section_kind.
7284         (read_and_check_type_unit_head): Delete function.
7285         (read_abbrev_offset): Handle DWARF-5.
7286         (create_debug_type_hash_table): Add parameter section_kind.  Process
7287         only DW_UT_type.  Use signature and type_offset_in_tu from struct
7288         comp_unit_head.
7289         (create_debug_types_hash_table): Update create_debug_type_hash_table
7290         caller.
7291         (create_all_type_units): Call create_debug_type_hash_table.
7292         (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
7293         read_and_check_type_unit_head caller to read_and_check_comp_unit_head
7294         caller.
7295         (skip_one_die): Handle DW_FORM_implicit_const.
7296         (dwarf2_rnglists_process): New function.
7297         (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
7298         (abbrev_table_read_table): Handle DW_FORM_implicit_const.
7299         (read_attribute_value): Handle DW_FORM_implicit_const,
7300         DW_FORM_line_strp.
7301         (read_attribute): Handle DW_FORM_implicit_const.
7302         (read_indirect_string_at_offset_from): New function from
7303         read_indirect_string_at_offset.
7304         (read_indirect_string_at_offset): Call
7305         read_indirect_string_at_offset_from.
7306         (read_indirect_line_string_at_offset): New function.
7307         (read_indirect_string): New function comment.
7308         (read_indirect_line_string): New function.
7309         (read_unsigned_leb128): Make it global.
7310         (dwarf2_string_attr): Handle DWARF-5.
7311         (add_include_dir_stub, read_formatted_entries): New functions.
7312         (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
7313         Handle DWARF-5.
7314         (per_cu_header_read_in): Update read_comp_unit_head caller.
7315         (dwarf2_version): New function.
7316         * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
7317         rnglists.
7318         * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
7319         fields.
7320
7321 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7322
7323         * dwarf2read.c (abbrev_table_read_table): Read the data only once.
7324
7325 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7326
7327         * dwarf2read.c (dwarf2_ranges_process): New function from
7328         dwarf2_ranges_read.
7329         (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
7330         dwarf2_ranges_process.
7331
7332 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
7333
7334         * dwarf2read.c (create_debug_type_hash_table): New function from
7335         create_debug_types_hash_table.
7336         (create_debug_types_hash_table): Call create_debug_type_hash_table.
7337         (create_all_type_units, open_and_init_dwo_file): Update
7338         create_debug_types_hash_table callers.
7339
7340 2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
7341
7342         PR gdb/16188
7343         * fork-child.c (trace_start_error): Fix thinko.  va_end should
7344         refer to 'ap', not 'args'.
7345
7346 2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
7347             Pedro Alves  <palves@redhat.com>
7348
7349         PR gdb/16188
7350         * darwin-nat.c (darwin_ptrace_me): Check if calls to system
7351         calls succeeded.
7352         * fork-child.c (trace_start_error): New function.
7353         (trace_start_error_with_name): Likewise.
7354         * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
7355         * inf-ptrace.c (inf_ptrace_me): Likewise.
7356         * inferior.h (trace_start_error): New prototype.
7357         (trace_start_error_with_name): Likewise.
7358
7359 2017-02-15  Sergio Durigan Junior  <sergiodj@redhat.com>
7360
7361         PR gdb/21164
7362         * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
7363         NULL before using it.
7364         * symmisc.c (maintenance_print_symbols): Likewise.
7365         (maintenance_print_msymbols): Likewise.
7366
7367 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
7368
7369         * NEWS: Add record Python bindings entry.
7370
7371 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
7372
7373         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
7374         py-record-full.o.
7375         (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
7376         * python/py-record-btrace.c, python/py-record-btrace.h,
7377         python/py-record-full.c, python/py-record-full.h: New file.
7378         * python/py-record.c: Add include for py-record-btrace.h and
7379         py-record-full.h.
7380         (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
7381         recpy_instruction_history, recpy_function_call_history, recpy_begin,
7382         recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
7383         * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
7384         New definition.
7385         (gdbpy_initialize_btrace): New export.
7386         * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
7387
7388 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
7389
7390         * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
7391         (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
7392         * python/py-record.c: New file.
7393         * python/python-internal.h (gdbpy_start_recording,
7394         gdbpy_current_recording, gdpy_stop_recording,
7395         gdbpy_initialize_record): New export.
7396         * python/python.c (_initialize_python): Add gdbpy_initialize_record.
7397         (python_GdbMethods): Add gdbpy_start_recording,
7398         gdbpy_current_recording and gdbpy_stop_recording.
7399
7400 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
7401
7402         * record-btrace.c (record_btrace_record_method): New function.
7403         (init_record_btrace_ops): Initialize to_record_method.
7404         * record-full.c (record_full_record_method): New function.
7405         (init_record_full_ops, init_record_full_core_ops): Add
7406         record_full_record_method.
7407         * record.h (enum record_method): New enum.
7408         * target-debug.h (target_debug_print_enum_record_method: New define.
7409         * target-delegates.c: Regenerate.
7410         * target.c (target_record_method): New function.
7411         * target.h: Include record.h.
7412         (struct target_ops) <to_record_method>: New field.
7413         (target_record_method): New export.
7414
7415 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
7416
7417         * record.h (record_start, record_stop): New export.
7418         * record.c (record_start, record_stop): New function.
7419
7420 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
7421
7422         * btrace.c (btrace_fetch): Copy function call segments pointer
7423         into a vector.
7424         (btrace_clear): Clear the vector.
7425         (btrace_find_insn_by_number): Use binary search to find the correct
7426         function call segment.
7427         * btrace.h (brace_fun_p): New typedef.
7428         (struct btrace_thread_info) <functions>: New field.
7429
7430 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
7431
7432         * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
7433         * btrace.c (btrace_decode_error): ... here.  New function.
7434         * btrace.h (btrace_decode_error): New export.
7435
7436 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
7437
7438         * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
7439         (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
7440         btrace_find_insn_by_number): Remove special case for gaps.
7441         * btrace.h (btrace_insn_get_error): New export.
7442         (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
7443         * record-btrace.c (btrace_insn_history): Print number for gaps.
7444         (record_btrace_info, record_btrace_goto): Handle gaps.
7445
7446 2017-02-14  Tom Tromey  <tom@tromey.com>
7447
7448         PR python/13598:
7449         * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
7450         event.
7451         * python/py-evts.c (gdbpy_initialize_py_events): Add
7452         before_prompt registry.
7453         * python/py-events.h (events_object) <before_prompt>: New field.
7454
7455 2017-02-14  Markus Metzger  <markus.t.metzger@intel.com>
7456
7457         * btrace.c (ftrace_new_switch): Preserve up link and flags.
7458
7459 2017-02-13  Luis Machado  <lgustavo@codesourcery.com>
7460
7461         * symfile (_initialize_symfile): Add usage text to the load command's
7462         help text.
7463
7464 2017-02-10  Simon Marchi  <simon.marchi@ericsson.com>
7465
7466         * utils.c (defaulted_query): Don't query on secondary UIs.
7467
7468 2017-02-10  Tom Tromey  <tom@tromey.com>
7469
7470         * rust-lang.c (rust_get_disr_info): Remove unused variable.
7471
7472 2017-02-10  Tom Tromey  <tom@tromey.com>
7473
7474         * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
7475         "cleanup" local.
7476         * python/py-type.c (typy_legacy_template_argument): Remove
7477         unnecessary "cleanup" local.
7478
7479 2017-02-10  Tom Tromey  <tom@tromey.com>
7480
7481         * python/python.c (do_start_initialization): New function, from
7482         _initialize_python.
7483         (_initialize_python): Call do_start_initialization.
7484         * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
7485         goto.
7486
7487 2017-02-10  Tom Tromey  <tom@tromey.com>
7488
7489         * python/py-prettyprint.c (pretty_print_one_value): Use
7490         gdbpy_ref.
7491
7492 2017-02-10  Tom Tromey  <tom@tromey.com>
7493
7494         * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
7495         * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
7496         gdbpy_ref.
7497         * python/py-type.c (field_new): Use gdbpy_ref.
7498         * python/py-symtab.c (symtab_and_line_to_sal_object): Use
7499         gdbpy_ref.
7500         * python/py-progspace.c (pspy_new): Use gdbpy_ref.
7501         (py_free_pspace): Likewise.
7502         (pspace_to_pspace_object): Likewise.
7503         * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
7504         (py_free_objfile): Likewise.
7505         (objfile_to_objfile_object): Likewise.
7506         * python/py-inferior.c (delete_thread_object): Use
7507         gdbpy_ref.
7508         (infpy_read_memory): Likewise.
7509         (py_free_inferior): Likewise.
7510         * python/py-evtregistry.c (create_eventregistry_object): Use
7511         gdbpy_ref.
7512         * python/py-event.c (create_event_object): Use gdbpy_ref.
7513
7514 2017-02-10  Tom Tromey  <tom@tromey.com>
7515
7516         * python/py-ref.h (gdbpy_ref_policy): Now a template.
7517         (gdbpy_ref): Now a template; allow subclasses of PyObject to be
7518         used.
7519         * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
7520         python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
7521         python/py-exitedevent.c, python/py-finishbreakpoint.c,
7522         python/py-framefilter.c, python/py-function.c,
7523         python/py-inferior.c, python/py-infevents.c,
7524         python/py-linetable.c, python/py-newobjfileevent.c,
7525         python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
7526         python/py-signalevent.c, python/py-stopevent.c,
7527         python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
7528         python/py-unwind.c, python/py-utils.c, python/py-value.c,
7529         python/py-varobj.c, python/py-xmethods.c, python/python.c,
7530         varobj.c: Change gdbpy_ref to gdbpy_ref<>.
7531
7532 2017-02-10  Tom Tromey  <tom@tromey.com>
7533
7534         * ui-out.h (ui_out_emit_type): New class.
7535         (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
7536         * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
7537         and ui_out_emit_tuple.
7538         (enumerate_locals): Likewise.
7539         (py_mi_print_variables, py_print_locals, py_print_args): Use
7540         ui_out_emit_list.
7541         (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
7542         ui_out_emit_list.
7543         * common/gdb_optional.h: New file.
7544
7545 2017-02-10  Martin Galvan  <martingalvan@sourceware.org>
7546
7547         * MAINTAINERS (Write After Approval): Update my e-mail address.
7548
7549 2017-02-10  Martin Galvan  <martingalvan@sourceware.org>
7550
7551         PR gdb/21122
7552         * breakpoint.c (_initialize_breakpoint): Update the help description
7553         of the 'commands' command to indicate that it takes a list argument.
7554
7555 2017-02-09  Simon Marchi  <simon.marchi@ericsson.com>
7556
7557         * interps.c (current_interp_set_logging): Remove "return".
7558
7559 2017-02-09  Gary Benson  <gbenson@redhat.com>
7560
7561         * symtab.c (add_symtab_completions): Prevent NULL pointer
7562         dereference.
7563
7564 2017-02-08  Pedro Alves  <palves@redhat.com>
7565
7566         * interps.c (interp::interp): Remove reference to quiet_p.
7567         (interp_set): Make static.  Remove dead "Switching to" output
7568         code.
7569         (interp_quiet_p, interp_set_quiet): Delete.
7570         (interpreter_exec_cmd): Don't set the interpreter quiet.
7571         * interps.h (interp_quiet_p): Make static.
7572         (class interp) <quiet_p>: Remove field
7573
7574 2017-02-08  Jerome Guitton  <guitton@adacore.com>
7575
7576         * cli/cli-decode.c (find_command_name_length): Make it extern.
7577         * cli/cli-decode.h (find_command_name_length): Declare.
7578         * cli/cli-script.c (command_name_equals, line_first_arg):
7579         New functions.
7580         (process_next_line): Use cli-decode to parse command names.
7581         (build_command_line): Make args a constant pointer.
7582
7583 2017-02-08  Jerome Guitton  <guitton@adacore.com>
7584
7585         * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
7586         Remove case-insensitive search.
7587
7588 2017-02-07  Jose E. Marchesi  <jose.marchesi@oracle.com>
7589
7590         * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
7591         at the end of the line.  Avoids an ARI warning.
7592
7593 2017-02-06  Luis Machado  <lgustavo@codesourcery.com>
7594
7595         * NEWS: Mention support for record/replay of Intel 64 rdrand and
7596         rdseed instructions.
7597         i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
7598
7599 2017-02-06  Ivo Raisr  <ivo.raisr@oracle.com>
7600
7601         PR tdep/20936
7602         Provide and use sparc32 and sparc64 target description XML files.
7603         * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
7604         features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
7605         * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
7606         features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
7607         * features/sparc/sparc32-solaris.xml: New file.
7608         * features/sparc/sparc64-solaris.xml: New file.
7609         * features/sparc/sparc32-solaris.c: Generated.
7610         * features/sparc/sparc64-solaris.c: Generated.
7611         * sparc-tdep.h: Account for differences in target descriptions.
7612         * sparc-tdep.c (sparc32_register_name): Use target provided registers.
7613         (sparc32_register_type): Use target provided registers.
7614         (validate_tdesc_registers): New function.
7615         (sparc32_gdbarch_init): Use tdesc_has_registers.
7616         Set pseudoregister functions.
7617         * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
7618         (sparc64_register_type): Use target provided registers.
7619         (sparc64_init_abi): Set pseudoregister functions.
7620
7621 2017-02-03  Tom Tromey  <tom@tromey.com>
7622
7623         PR rust/21097:
7624         * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
7625         with a single member.
7626
7627 2017-02-03  Pedro Alves  <palves@redhat.com>
7628
7629         * cli/cli-interp.c (cli_interp_base::cli_interp_base)
7630         (cli_interp_base::~cli_interp_base): New.
7631         (cli_interp): New struct.
7632         (as_cli_interp): Cast the interp itself to cli_interp.
7633         (cli_interpreter_pre_command_loop): Rename to ...
7634         (cli_interp_base::pre_command_loop): ... this.  Remove 'self'
7635         parameter.
7636         (cli_interpreter_init): Rename to ...
7637         (cli_interp::init): ... this.  Remove 'self' parameter.  Use
7638         boolean.  Make extern.
7639         (cli_interpreter_resume): Rename to ...
7640         (cli_interp::resume): ... this.  Remove 'data' parameter.  Make
7641         extern.
7642         (cli_interpreter_suspend): Rename to ...
7643         (cli_interp::suspend): ... this.  Remove 'data' parameter.  Make
7644         extern.
7645         (cli_interpreter_exec): Rename to ...
7646         (cli_interp::exec): ... this.  Remove 'data' parameter.  Make
7647         extern.
7648         (cli_interpreter_supports_command_editing): Rename to ...
7649         (cli_interp_base::supports_command_editing): ... this.  Remove
7650         'interp' parameter.  Make extern.
7651         (cli_ui_out): Rename to ...
7652         (cli_interp::interp_ui_out): ... this.  Remove 'interp' parameter.
7653         Make extern.
7654         (cli_set_logging): Rename to ...
7655         (cli_interp_base::set_logging): ... this.  Remove 'interp'
7656         parameter.  Make extern.
7657         (cli_interp_procs): Delete.
7658         (cli_interp_factory): Adjust to use "new".
7659         * cli/cli-interp.h: Include "interps.h".
7660         (struct cli_interp_base): New struct.
7661         * interps.c (struct interp): Delete.  Fields moved to interps.h.
7662         (interp_new): Delete.
7663         (interp::interp, interp::~interp): New.
7664         (interp_set): Use bool, and return void.  Assume the interpreter
7665         has suspend, init and resume methods, and that the all return
7666         void.
7667         (set_top_level_interpreter): interp_set returns void.
7668         (interp_ui_out): Adapt.
7669         (current_interp_set_logging): Adapt.
7670         (interp_data): Delete.
7671         (interp_pre_command_loop, interp_supports_command_editing): Adapt.
7672         (interp_exec): Adapt.
7673         (top_level_interpreter_data): Delete.
7674         * interps.h (interp_init_ftype, interp_resume_ftype)
7675         (interp_suspend_ftype, interp_exec_ftype)
7676         (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
7677         (class interp): New.
7678         (interp_new): Delete.
7679         (interp_set): Now returns void.  Use bool.
7680         (interp_data, top_level_interpreter_data): Delete.
7681         * mi/mi-common.h: Include interps.h.
7682         (class mi_interp): Inherit from interp.  Define a ctor.  Declare
7683         init, resume, suspect, exec, interp_ui_out, set_logging and
7684         pre_command_loop methods.
7685         * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
7686         (mi_interpreter_init): Rename to ...
7687         (mi_interp::init): ... this.  Remove the 'interp' parameter, use
7688         bool, return void and make extern.  Adjust.
7689         (mi_interpreter_resume): ... Rename to ...
7690         (mi_interp::resume): ... this.  Remove the 'data' parameter,
7691         return void and make extern.  Adjust.
7692         (mi_interpreter_suspend): ... Rename to ...
7693         (mi_interp::suspend): ... this.  Remove the 'data' parameter,
7694         return void and make extern.  Adjust.
7695         (mi_interpreter_exec): ... Rename to ...
7696         (mi_interp::exec): ... this.  Remove the 'data' parameter and make
7697         extern.  Adjust.
7698         (mi_interpreter_pre_command_loop): ... Rename to ...
7699         (mi_interp::pre_command_loop): ... this.  Remove the 'self'
7700         parameter and make extern.
7701         (mi_on_normal_stop_1): Adjust.
7702         (mi_ui_out): Rename to ...
7703         (mi_interp::interp_ui_out): ... this.  Remove the 'interp'
7704         parameter and make extern.  Adjust.
7705         (mi_set_logging): Rename to ...
7706         (mi_interp::set_logging): ... this.  Remove the 'interp'
7707         parameter and make extern.  Adjust.
7708         (mi_interp_procs): Delete.
7709         (mi_interp_factory): Adjust to use 'new'.
7710         * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
7711         (mi_print_exception, mi_execute_command, mi_load_progress):
7712         Adjust.
7713         * tui/tui-interp.c (tui_interp): New class.
7714         (as_tui_interp): Return a tui_interp pointer.
7715         (tui_on_normal_stop, tui_on_signal_received)
7716         (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
7717         (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
7718         to use interp::interp_ui_out.
7719         (tui_init): Rename to ...
7720         (tui_interp::init): ... this.  Remove the 'self' parameter, use
7721         bool, return void and make extern.  Adjust.
7722         (tui_resume): Rename to ...
7723         (tui_interp::resume): ... this.  Remove the 'data' parameter,
7724         return void and make extern.  Adjust.
7725         (tui_suspend): Rename to ...
7726         (tui_interp::suspend): ... this.  Remove the 'data' parameter,
7727         return void and make extern.  Adjust.
7728         (tui_ui_out): Rename to ...
7729         (tui_interp::interp_ui_out): ... this.  Remove the 'self'
7730         parameter, and make extern.  Adjust.
7731         (tui_exec): Rename to ...
7732         (tui_interp::exec): ... this.  Remove the 'data' parameter and
7733         make extern.
7734         (tui_interp_procs): Delete.
7735         (tui_interp_factory): Use "new".
7736
7737 2017-02-02  Tom Tromey  <tom@tromey.com>
7738
7739         * rust-exp.y (ends_raw_string, space_then_number)
7740         (rust_identifier_start_p): Return bool.
7741         * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
7742         (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
7743         (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
7744         (rust_chartype_p): Return bool.
7745         (val_print_struct, rust_print_struct_def, rust_print_type):
7746         Update.
7747         * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
7748         Return bool.
7749
7750 2017-02-02  Tom Tromey  <tom@tromey.com>
7751
7752         * rust-lang.c: Reindent.
7753
7754 2017-02-02  Tom Tromey  <tom@tromey.com>
7755
7756         * rust-lang.h (rust_crate_for_block): Update.
7757         * rust-lang.c (rust_crate_for_block): Return std::string.
7758         (rust_get_disr_info): Use std:;string, not
7759         gdb::unique_xmalloc_ptr.
7760         * rust-exp.y (crate_name): Update.
7761
7762 2017-02-02  Pedro Alves  <palves@redhat.com>
7763
7764         * disasm-selftests.c (print_one_insn_test): Move the "verbose"
7765         field out of gdb_disassembler_test and make it static.
7766
7767 2017-02-02  Pedro Alves  <palves@redhat.com>
7768
7769         * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
7770         mi1_interp and mi_interp fields.
7771
7772 2017-02-02  Pedro Alves  <palves@redhat.com>
7773
7774         * cli/cli-interp.c (struct saved_output_files, saved_output):
7775         Moved from cli/cli-logging.c.
7776         (cli_set_logging): New function.
7777         (cli_interp_procs): Install cli_set_logging.
7778         * cli/cli-interp.h (make_logging_output, cli_set_logging):
7779         Declare.
7780         * cli/cli-logging.c (struct saved_output_files, saved_output):
7781         Moved to cli/cli-interp.c.
7782         (pop_output_files): Don't save outputs here.
7783         (make_logging_output): New function.
7784         (handle_redirections): Don't build tee nor save previous outputs
7785         here.
7786         * interps.c (current_interp_set_logging): Change prototype.
7787         Assume there's always a set_logging_proc method installed.
7788         * interps.h (interp_set_logging_ftype): Change prototype.
7789         (current_interp_set_logging): Change prototype and adjust comment.
7790         * mi/mi-interp.c (mi_set_logging): Change protototype.  Adjust to
7791         use make_logging_output.
7792         * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
7793 2017-02-02  Pedro Alves  <palves@redhat.com>
7794
7795         * cli/cli-logging.c (maybe_warn_already_logging): New factored out
7796         from ...
7797         (set_logging_overwrite): ... here.
7798         (logging_no_redirect_file): Delete.
7799         (set_logging_redirect): Don't handle redirection on the fly.
7800         Instead warn that "logging off" / "logging on" is necessary.
7801         (pop_output_files): Delete references to logging_no_redirect_file.
7802         (show_logging_command): Always speak in terms of what will happen
7803         once logging is reenabled.
7804
7805 2017-02-02  Pedro Alves  <palves@redhat.com>
7806
7807         * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
7808
7809 2017-02-02  Pedro Alves  <palves@redhat.com>
7810
7811         * disasm.c (gdb_pretty_print_insn): Rename to ...
7812         (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
7813         Remove gdbarch parameter.  Adapt to clear the object's buffers
7814         instead of allocating new buffers, and to print using the object's
7815         gdb_disassembler instead of calling gdb_print_insn.
7816         (dump_insns): Use gdb_pretty_print_disassembler.
7817         * disasm.h (gdb_pretty_print_insn): Delete declaration.
7818         (gdb_pretty_print_disassembler): New class.
7819         * record-btrace.c (btrace_insn_history): Use
7820         gdb_pretty_print_disassembler.
7821
7822 2017-02-02  Pedro Alves  <palves@redhat.com>
7823
7824         * ada-lang.c (type_as_string): Use string_file.
7825         * ada-valprint.c (ada_print_floating): Use string_file.
7826         * ada-varobj.c (ada_varobj_scalar_image)
7827         (ada_varobj_get_value_image): Use string_file.
7828         * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
7829         * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
7830         * breakpoint.c (update_inserted_breakpoint_locations)
7831         (insert_breakpoint_locations, reattach_breakpoints)
7832         (print_breakpoint_location, print_one_detail_ranged_breakpoint)
7833         (print_it_watchpoint): Use string_file.
7834         (save_breakpoints): Use stdio_file.
7835         * c-exp.y (oper): Use string_file.
7836         * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
7837         tee_file.
7838         (pop_output_files): Use delete.
7839         (handle_redirections): Use stdio_file and tee_file.
7840         * cli/cli-setshow.c (do_show_command): Use string_file.
7841         * compile/compile-c-support.c (c_compute_program): Use
7842         string_file.
7843         * compile/compile-c-symbols.c (generate_vla_size): Take a
7844         'string_file &' instead of a 'ui_file *'.
7845         (generate_c_for_for_one_variable): Take a 'string_file &' instead
7846         of a 'ui_file *'.  Use string_file.
7847         (generate_c_for_variable_locations): Take a 'string_file &'
7848         instead of a 'ui_file *'.
7849         * compile/compile-internal.h (generate_c_for_for_one_variable):
7850         Take a 'string_file &' instead of a 'ui_file *'.
7851         * compile/compile-loc2c.c (push, pushf, unary, binary)
7852         (print_label, pushf_register_address, pushf_register)
7853         (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
7854         'ui_file *'.  Adjust.
7855         * compile/compile.c (compile_to_object): Use string_file.
7856         * compile/compile.h (compile_dwarf_expr_to_c)
7857         (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
7858         'ui_file *'.
7859         * cp-support.c (inspect_type): Use string_file and obstack_copy0.
7860         (replace_typedefs_qualified_name): Use string_file and
7861         obstack_copy0.
7862         * disasm.c (gdb_pretty_print_insn): Use string_file.
7863         (gdb_disassembly): Adjust reference the null_stream global.
7864         (do_ui_file_delete): Delete.
7865         (gdb_insn_length): Use null_stream.
7866         * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
7867         * dwarf2loc.c (dwarf2_compile_property_to_c)
7868         (locexpr_generate_c_location, loclist_generate_c_location): Take a
7869         'string_file &' instead of a 'ui_file *'.
7870         * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
7871         * dwarf2read.c (do_ui_file_peek_last): Delete.
7872         (dwarf2_compute_name): Use string_file.
7873         * event-top.c (gdb_setup_readline): Use stdio_file.
7874         * gdbarch.sh (verify_gdbarch): Use string_file.
7875         * gdbtypes.c (safe_parse_type): Use null_stream.
7876         * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
7877         string_file.
7878         * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
7879         'string_file *' instead of a 'ui_file *'.
7880         (gdbscm_arch_disassemble): Use string_file.
7881         * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
7882         * guile/scm-ports.c (class ioscm_file_port): Now a class that
7883         inherits from ui_file.
7884         (ioscm_file_port_delete, ioscm_file_port_rewind)
7885         (ioscm_file_port_put): Delete.
7886         (ioscm_file_port_write): Rename to ...
7887         (ioscm_file_port::write): ... this.  Remove file_port_magic
7888         checks.
7889         (ioscm_file_port_new): Delete.
7890         (ioscm_with_output_to_port_worker): Use ioscm_file_port and
7891         ui_file_up.
7892         * guile/scm-type.c (tyscm_type_name): Use string_file.
7893         * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
7894         Use string_file.
7895         * infcmd.c (print_return_value_1): Use string_file.
7896         * infrun.c (print_target_wait_results): Use string_file.
7897         * language.c (add_language): Use string_file.
7898         * location.c (explicit_to_string_internal): Use string_file.
7899         * main.c (captured_main_1): Use null_file.
7900         * maint.c (maintenance_print_architecture): Use stdio_file.
7901         * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
7902         * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
7903         event_channel>: Change type to mi_console_file pointer.
7904         * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
7905         (mi_console_file_delete): Delete.
7906         (struct mi_console_file): Delete.
7907         (mi_console_file_magic): Delete.
7908         (mi_console_file_new): Delete.
7909         (mi_console_file::mi_console_file): New.
7910         (mi_console_file_delete): Delete.
7911         (mi_console_file_fputs): Delete.
7912         (mi_console_file::write): New.
7913         (mi_console_raw_packet): Delete.
7914         (mi_console_file::flush): New.
7915         (mi_console_file_flush): Delete.
7916         (mi_console_set_raw): Rename to ...
7917         (mi_console_file::set_raw): ... this.
7918         * mi/mi-console.h (class mi_console_file): New class.
7919         (mi_console_file_new, mi_console_set_raw): Delete.
7920         * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
7921         (mi_set_logging): Use delete and tee_file.  Adjust.
7922         * mi/mi-main.c (output_register): Use string_file.
7923         (mi_cmd_data_evaluate_expression): Use string_file.
7924         (mi_cmd_data_read_memory): Use string_file.
7925         (mi_cmd_execute, print_variable_or_computed): Use string_file.
7926         * mi/mi-out.c (mi_ui_out::main_stream): New.
7927         (mi_ui_out::rewind): Use main_stream and
7928         string_file.
7929         (mi_ui_out::put): Use main_stream and string_file.
7930         (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
7931         Allocate a 'string_file' instead.
7932         (mi_out_new): Don't allocate a mem_fileopen stream here.
7933         * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
7934         (mi_ui_out::main_stream): Declare method.
7935         * printcmd.c (eval_command): Use string_file.
7936         * psymtab.c (maintenance_print_psymbols): Use stdio_file.
7937         * python/py-arch.c (archpy_disassemble): Use string_file.
7938         * python/py-breakpoint.c (bppy_get_commands): Use string_file.
7939         * python/py-frame.c (frapy_str): Use string_file.
7940         * python/py-framefilter.c (py_print_type, py_print_single_arg):
7941         Use string_file.
7942         * python/py-type.c (typy_str): Use string_file.
7943         * python/py-unwind.c (unwind_infopy_str): Use string_file.
7944         * python/py-value.c (valpy_str): Use string_file.
7945         * record-btrace.c (btrace_insn_history): Use string_file.
7946         * regcache.c (regcache_print): Use stdio_file.
7947         * reggroups.c (maintenance_print_reggroups): Use stdio_file.
7948         * remote.c (escape_buffer): Use string_file.
7949         * rust-lang.c (rust_get_disr_info): Use string_file.
7950         * serial.c (serial_open_ops_1): Use stdio_file.
7951         (do_serial_close): Use delete.
7952         * stack.c (print_frame_arg): Use string_file.
7953         (print_frame_args): Remove local mem_fileopen stream, not used.
7954         (print_frame): Use string_file.
7955         * symmisc.c (maintenance_print_symbols): Use stdio_file.
7956         * symtab.h (struct symbol_computed_ops) <generate_c_location>:
7957         Take a 'string_file *' instead of a 'ui_file *'.
7958         * top.c (new_ui): Use stdio_file and stderr_file.
7959         (free_ui): Use delete.
7960         (execute_command_to_string): Use string_file.
7961         (quit_confirm): Use string_file.
7962         * tracepoint.c (collection_list::append_exp): Use string_file.
7963         * tui/tui-disasm.c (tui_disassemble): Use string_file.
7964         * tui/tui-file.c: Don't include "ui-file.h".
7965         (enum streamtype, struct tui_stream): Delete.
7966         (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
7967         (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
7968         (tui_file::tui_file): New method.
7969         (tui_file_fputs): Delete.
7970         (tui_file_get_strbuf): Delete.
7971         (tui_file::puts): New method.
7972         (tui_file_adjust_strbuf): Delete.
7973         (tui_file_flush): Delete.
7974         (tui_file::flush): New method.
7975         * tui/tui-file.h: Tweak intro comment.
7976         Include ui-file.h.
7977         (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
7978         (tui_file_adjust_strbuf): Delete declarations.
7979         (class tui_file): New class.
7980         * tui/tui-io.c (tui_initialize_io): Use tui_file.
7981         * tui/tui-regs.c (tui_restore_gdbout): Use delete.
7982         (tui_register_format): Use string_stream.
7983         * tui/tui-stack.c (tui_make_status_line): Use string_file.
7984         (tui_get_function_from_frame): Use string_file.
7985         * typeprint.c (type_to_string): Use string_file.
7986         * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
7987         (null_stream): New global.
7988         (ui_file_delete): Delete.
7989         (ui_file::ui_file): New.
7990         (null_file_isatty): Delete.
7991         (ui_file::~ui_file): New.
7992         (null_file_rewind): Delete.
7993         (ui_file::printf): New.
7994         (null_file_put): Delete.
7995         (null_file_flush): Delete.
7996         (ui_file::putstr): New.
7997         (null_file_write): Delete.
7998         (ui_file::putstrn): New.
7999         (null_file_read): Delete.
8000         (ui_file::putc): New.
8001         (null_file_fputs): Delete.
8002         (null_file_write_async_safe): Delete.
8003         (ui_file::vprintf): New.
8004         (null_file_delete): Delete.
8005         (null_file::write): New.
8006         (null_file_fseek): Delete.
8007         (null_file::puts): New.
8008         (ui_file_data): Delete.
8009         (null_file::write_async_safe): New.
8010         (gdb_flush, ui_file_isatty): Adjust.
8011         (ui_file_put, ui_file_rewind): Delete.
8012         (ui_file_write): Adjust.
8013         (ui_file_write_for_put): Delete.
8014         (ui_file_write_async_safe, ui_file_read): Adjust.
8015         (ui_file_fseek): Delete.
8016         (fputs_unfiltered): Adjust.
8017         (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
8018         (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
8019         (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
8020         (set_ui_file_data): Delete.
8021         (string_file::~string_file, string_file::write)
8022         (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
8023         (do_ui_file_as_string, ui_file_as_string): Delete.
8024         (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
8025         (struct mem_file): Delete.
8026         (mem_file_new): Delete.
8027         (stdio_file::stdio_file): New.
8028         (mem_file_delete): Delete.
8029         (stdio_file::stdio_file): New.
8030         (mem_fileopen): Delete.
8031         (stdio_file::~stdio_file): New.
8032         (mem_file_rewind): Delete.
8033         (stdio_file::set_stream): New.
8034         (mem_file_put): Delete.
8035         (stdio_file::open): New.
8036         (mem_file_write): Delete.
8037         (stdio_file_magic, struct stdio_file): Delete.
8038         (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
8039         (stdio_file::flush): New.
8040         (stdio_file_read): Rename to ...
8041         (stdio_file::read): ... this.  Adjust.
8042         (stdio_file_write): Rename to ...
8043         (stdio_file::write): ... this.  Adjust.
8044         (stdio_file_write_async_safe): Rename to ...
8045         (stdio_file::write_async_safe) ... this.  Adjust.
8046         (stdio_file_fputs): Rename to ...
8047         (stdio_file::puts) ... this.  Adjust.
8048         (stdio_file_isatty): Delete.
8049         (stdio_file_fseek): Delete.
8050         (stdio_file::isatty): New.
8051         (stderr_file_write): Rename to ...
8052         (stderr_file::write) ... this.  Adjust.
8053         (stderr_file_fputs): Rename to ...
8054         (stderr_file::puts) ... this.  Adjust.
8055         (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
8056         (stderr_file::stderr_file): New.
8057         (tee_file_magic): Delete.
8058         (struct tee_file): Delete.
8059         (tee_file::tee_file): New.
8060         (tee_file_new): Delete.
8061         (tee_file::~tee_file): New.
8062         (tee_file_delete): Delete.
8063         (tee_file_flush): Rename to ...
8064         (tee_file::flush): ... this.  Adjust.
8065         (tee_file_write): Rename to ...
8066         (tee_file::write): ... this.  Adjust.
8067         (tee_file::write_async_safe): New.
8068         (tee_file_fputs): Rename to ...
8069         (tee_file::puts): ... this.  Adjust.
8070         (tee_file_isatty): Rename to ...
8071         (tee_file::isatty): ... this.  Adjust.
8072         * ui-file.h (struct obstack, struct ui_file): Don't
8073         forward-declare.
8074         (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
8075         (ui_file_write_ftype)
8076         (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
8077         (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
8078         (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
8079         (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
8080         (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
8081         (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
8082         (set_ui_file_fseek): Delete.
8083         (ui_file_data, ui_file_delete, ui_file_rewind)
8084         (struct ui_file): New.
8085         (ui_file_up): New.
8086         (class null_file): New.
8087         (null_stream): Declare.
8088         (ui_file_write_for_put, ui_file_put): Delete.
8089         (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
8090         Delete.
8091         (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
8092         (gdb_fopen, tee_file_new): Delete.
8093         (struct string_file): New.
8094         (struct stdio_file): New.
8095         (stdio_file_up): New.
8096         (struct stderr_file): New.
8097         (class tee_file): New.
8098         * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
8099         of a 'ui_file *'.  Adjust.
8100         * ui-out.h (class ui_out) <field_stream>: Likewise.
8101         * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
8102         (null_stream): Delete.
8103         (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
8104         Adjust.
8105         * utils.h (struct ui_file): Delete forward declaration..
8106         (make_cleanup_ui_file_delete, null_stream): Delete declarations.
8107         (error_stream): Take a 'string_file &' instead of a
8108         'ui_file *'.
8109         * varobj.c (varobj_value_get_print_value): Use string_file.
8110         * xtensa-tdep.c (xtensa_verify_config): Use string_file.
8111         * gdbarch.c: Regenerate.
8112
8113 2017-02-02  Pedro Alves  <palves@redhat.com>
8114
8115         * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
8116         (gdb_pretty_print_insn): ... this.  Now a free function.  Add back
8117         a 'gdbarch' parameter.  Allocate a mem_fileopen stream here.
8118         Adjust to call gdb_print_insn instead of
8119         gdb_disassembler::print_insn.
8120         (dump_insns, do_mixed_source_and_assembly_deprecated)
8121         (do_mixed_source_and_assembly, do_assembly_only): Add back a
8122         'gdbarch' parameter.  Remove gdb_disassembler parameter.
8123         (gdb_disassembly): Don't allocate a gdb_disassembler here.
8124         * disasm.h (gdb_disassembler::pretty_print_insn): Delete
8125         declaration.
8126         (gdb_pretty_print_insn): Re-add declaration.
8127         * record-btrace.c (btrace_insn_history): Don't allocate a
8128         gdb_disassembler here.  Adjust to call gdb_pretty_print_insn.
8129
8130 2017-02-01  Simon Marchi  <simon.marchi@polymtl.ca>
8131
8132         * disasm.h (gdb_disassembly): Remove file_string parameter.
8133         * disasm.c (gdb_disassembly): Likewise.
8134         * cli/cli-cmds.c (print_disassembly): Adapt.
8135         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
8136         * stack.c (do_gdb_disassembly): Likewise.
8137
8138 2017-02-01  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8139
8140         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
8141         DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
8142         targets.  And if the implicit value is longer than needed, extract
8143         the first bytes instead of the "least significant" ones.
8144
8145 2017-02-01  Markus Metzger  <markus.t.metzger@intel.com>
8146
8147         * btrace.c (btrace_enable): Do not call btrace_add_pc for
8148         BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
8149         (btrace_fetch): Assert can_access_registers_ptid.
8150         * record-btrace.c (require_btrace_thread, record_btrace_info): Call
8151         validate_registers_access.
8152
8153 2017-02-01  Markus Metzger  <markus.t.metzger@intel.com>
8154
8155         * gdbthread.h (can_access_registers_ptid): New.
8156         * thread.c (can_access_registers_ptid): New.
8157
8158 2017-02-01  Pedro Alves  <palves@redhat.com>
8159
8160         * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
8161
8162 2017-01-31  Pedro Alves  <palves@redhat.com>
8163
8164         * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
8165         Fix typos.
8166
8167 2017-01-31  Pedro Alves  <palves@redhat.com>
8168
8169         * stack.c (print_frame_args): Remove local mem_fileopen stream,
8170         not used.
8171
8172 2017-01-31  Pedro Alves  <palves@redhat.com>
8173
8174         * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
8175
8176 2017-01-31  Pedro Alves  <palves@redhat.com>
8177
8178         * common/scoped_restore.h
8179         (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
8180         change the value's parameter type to T2.
8181         (make_scoped_restore): Likewise.
8182
8183 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
8184             Richard Henderson  <rth@redhat.com>
8185
8186         * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
8187         (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
8188         GS_BASE for older kernels.
8189         (amd64_linux_store_inferior_registers): Add case to store FS_BASE
8190         GS_BASE for older kernels.
8191         * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
8192         and GS_BASE to the offset table.
8193         (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
8194         system register group.
8195         * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
8196         for older kernels.
8197         * amd64-tdep.c (amd64_init_abi): Add segment registers for the
8198         amd64 ABI.
8199         * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
8200         AMD64_GSBASE_REGNUM.
8201         (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
8202         * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
8203         (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
8204         (x32-avx-linux.dat, x32-avx512-linux.dat): Add
8205         i386/64bit-segments.xml in those rules.
8206         * features/i386/64bit-segments.xml: New file.
8207         * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
8208         * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
8209         * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
8210         * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
8211         * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
8212         * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
8213         * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
8214         * features/i386/amd64-avx-linux.c: Regenerated.
8215         * features/i386/amd64-avx-mpx-linux.c: Regenerated.
8216         * features/i386/amd64-avx-mpx.c: Regenerated.
8217         * features/i386/amd64-avx512-linux.c: Regenerated.
8218         * features/i386/amd64-linux.c: Regenerated.
8219         * features/i386/amd64-mpx-linux.c: Regenerated.
8220         * features/i386/i386-avx-mpx-linux.c: Regenerated.
8221         * features/i386/i386-avx-mpx.c: Regenerated.
8222         * features/i386/x32-avx-linux.c: Regenerated.
8223         * features/i386/x32-avx512-linux.c: Regenerated.
8224         * regformats/i386/amd64-avx-linux.dat: Regenerated.
8225         * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
8226         * regformats/i386/amd64-avx512-linux.dat: Regenerated.
8227         * regformats/i386/amd64-linux.dat: Regenerated.
8228         * regformats/i386/amd64-mpx-linux.dat: Regenerated.
8229         * regformats/i386/x32-avx-linux.dat: Regenerated.
8230         * regformats/i386/x32-avx512-linux.dat: Regenerated.
8231         * regformats/i386/x32-linux.dat: Regenerated.
8232
8233 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
8234
8235         * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
8236         Set to AMD64_NUM_REGS.
8237
8238 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
8239
8240         * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
8241         that checks validity of a register number.
8242
8243 2017-01-27  Kees Cook  <keescook@google.com>
8244
8245         * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
8246         fetch_fpregs if target has fpa registers.
8247         (arm_linux_store_inferior_registers): Call store_fpregs if target
8248         has fpa registers.
8249
8250 2017-01-26  Andreas Arnez  <arnez@linux.vnet.ibm.com>
8251
8252         * cris-tdep.c (cris_gdbarch_init): Remove check for
8253         info.byte_order and force it to BFD_ENDIAN_LITTLE.
8254
8255 2017-01-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
8256
8257         * corelow.c (get_core_register_section): Check for regset
8258         existence before checking for REGSET_VARIABLE_SIZE.
8259
8260 2017-01-26  Yao Qi  <yao.qi@linaro.org>
8261             Pedro Alves  <palves@redhat.com>
8262
8263         PR gdb/20939
8264         * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
8265         call memory_error, save memaddr instead.
8266         (gdb_disassembler::print_insn): If gdbarch_print_insn returns
8267         negative, cal memory_error.
8268         * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
8269
8270 2017-01-26  Yao Qi  <yao.qi@linaro.org>
8271
8272         * disasm-selftests.c (memory_error_test): New function.
8273         (_initialize_disasm_selftests): Register memory_error_test.
8274
8275 2017-01-26  Yao Qi  <yao.qi@linaro.org>
8276
8277         * Makefile.in (SFILES): Add disasm-selftests.c and
8278         selftest-arch.c.
8279         (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
8280         * disasm-selftests.c: New file.
8281         * selftest-arch.c: New file.
8282         * selftest-arch.h: New file.
8283
8284 2017-01-26  Yao Qi  <yao.qi@linaro.org>
8285
8286         * mep-tdep.c (mep_gdb_print_insn): Set info->arch
8287         to bfd_arch_mep.  Don't return 0 if section is not
8288         found.  Call print_insn_mep.
8289
8290 2017-01-26  Pedro Alves  <palves@redhat.com>
8291             Yao Qi  <yao.qi@linaro.org>
8292
8293         * arm-tdep.c: Include "disasm.h".
8294         (gdb_print_insn_arm): Update code to get gdbarch.
8295         * disasm.c (dis_asm_read_memory): Change it to
8296         gdb_disassembler::dis_asm_read_memory.
8297         (dis_asm_memory_error): Likewise.
8298         (dis_asm_print_address): Likewise.
8299         (gdb_pretty_print_insn): Change it to
8300         gdb_disassembler::pretty_print_insn.
8301         (dump_insns): Add one argument gdb_disassemlber.  All
8302         callers updated.
8303         (do_mixed_source_and_assembly_deprecated): Likewise.
8304         (do_mixed_source_and_assembly): Likewise.
8305         (do_assembly_only): Likewise.
8306         (gdb_disassembler::gdb_disassembler): New.
8307         (gdb_disassembler::print_insn): New.
8308         * disasm.h (class gdb_disassembler): New.
8309         (gdb_pretty_print_insn): Remove declaration.
8310         (gdb_disassemble_info): Likewise.
8311         * guile/scm-disasm.c (class gdbscm_disassembler): New.
8312         (gdbscm_disasm_read_memory_worker): Update.
8313         (gdbscm_disasm_read_memory): Update.
8314         (gdbscm_disasm_memory_error): Remove.
8315         (gdbscm_disasm_print_address): Remove.
8316         (gdbscm_disassembler::gdbscm_disassembler): New.
8317         (gdbscm_print_insn_from_port): Update.
8318         * mips-tdep.c: Include disasm.h.
8319         (gdb_print_insn_mips): Update code to get gdbarch.
8320         * record-btrace.c (btrace_insn_history): Update.
8321         * spu-tdep.c: Include disasm.h.
8322         (struct spu_dis_asm_data): Remove.
8323         (struct spu_dis_asm_info): New.
8324         (spu_dis_asm_print_address): Use spu_dis_asm_info to get
8325         SPU id.
8326         (gdb_print_insn_spu): Cast disassemble_info to
8327         spu_dis_asm_info.
8328
8329 2017-01-26  Yao Qi  <yao.qi@linaro.org>
8330
8331         * disasm.c (do_ui_file_delete): Delete.
8332         (gdb_insn_length): Move code creating stream to ...
8333         * utils.c (null_stream): ... here.  New function.
8334         * utils.h (null_stream): Declare.
8335
8336 2017-01-23  Simon Marchi  <simon.marchi@polymtl.ca>
8337
8338         * python/py-inferior.c (find_thread_object): Return directly
8339         from the loop.  Remove "found" variable.
8340
8341 2017-01-21  Joel Brobecker  <brobecker@adacore.com>
8342
8343         GDB 7.12.1 released.
8344
8345 2017-01-20  Simon Marchi  <simon.marchi@ericsson.com>
8346
8347         * python/py-function.c (fnpy_call): Reorder declarations to have
8348         the gdbpy_enter object declared first.
8349         * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
8350
8351 2017-01-20  Simon Marchi  <simon.marchi@ericsson.com>
8352
8353         PR python/21068
8354         * python/python-internal.h (PyMem_RawMalloc): Define for
8355         Python < 3.4.
8356         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
8357         PyMem_RawMalloc instead of PyMem_Malloc.
8358
8359 2017-01-20  Mike Wrighton  <mike_wrighton@codesourcery.com>
8360             Luis Machado  <lgustavo@codesourcery.com>
8361
8362         * NEWS (New commands): Mention flash-erase.
8363         (New MI commands): Mention target-flash-erase.
8364         * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
8365         command.
8366         * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
8367         * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
8368         * target.c (flash_erase_command): New function.
8369         (initialize_targets): Add new flash-erase command.
8370         * target.h (flash_erase_command): New declaration.
8371
8372 2017-01-20  Joel Brobecker  <brobecker@adacore.com>
8373
8374         * nat/linux-ptrace.c: Only include <sys/procfs.h> if
8375         HAVE_SYS_PROCFS_H is defined.
8376
8377 2017-01-18  Alan Hayward  <alan.hayward@arm.com>
8378
8379         * remote.c (struct cached_reg): Change data into a pointer.
8380         * (stop_reply_dtr): Free data pointers before deleting vector.
8381         (process_stop_reply): Likewise.
8382         (remote_parse_stop_reply): Allocate space for data
8383
8384 2017-01-18  Alan Hayward  <alan.hayward@arm.com>
8385
8386         * amd64-tdep.c (amd64_pseudo_register_read_value): remove
8387         MAX_REGISTER_SIZE.
8388         (amd64_pseudo_register_read_value): Likewise.
8389         * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
8390         (store_register_using_P): Likewise.
8391         * regcache.c (regcache_xfer_part): Likewise.
8392
8393 2017-01-16  Ivo Raisr  <ivo.raisr@oracle.com>
8394
8395         Split real and pseudo registers.
8396         * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
8397         (sparc32_pseudo_regnum): New enum.
8398         * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
8399         * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
8400         (SPARC32_CP0_REGISTERS): New macro.
8401         (sparc32_pseudo_register_name): New function.
8402         (sparc32_register_name): Use sparc32_pseudo_register_name.
8403         (sparc32_pseudo_register_type): New function.
8404         (sparc32_register_type): Use sparc32_pseudo_register_type.
8405         (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
8406         pseudo register numbers.
8407         * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
8408         (SPARC64_CP0_REGISTERS): New macro.
8409         (sparc64_pseudo_register_name): New function.
8410         (sparc64_register_name): Use sparc64_pseudo_register_name.
8411         (sparc64_pseudo_register_type): New function.
8412         (sparc64_register_type): Use sparc64_pseudo_register_type.
8413         (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
8414         pseudo register numbers.
8415         (sparc64_store_floating_fields, sparc64_extract_floating_fields,
8416         sparc64_store_arguments): Handle pseudo register numbers.
8417
8418 2017-01-13  Yao Qi  <yao.qi@linaro.org>
8419
8420         * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
8421         (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
8422         output.
8423         (getpkt_or_notif_sane_1): Likewise.
8424
8425 2017-01-13  Yao Qi  <yao.qi@linaro.org>
8426
8427         * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
8428         of CC.  Pass "-x c++-header" instead of "-x c".
8429
8430 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
8431
8432         * remote.c (remote_can_async_p): Update comment.
8433
8434 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
8435
8436         * linux-nat.c (linux_nat_can_async_p): Update comment.
8437
8438 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
8439
8440         * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
8441
8442 2017-01-11  Simon Marchi  <simon.marchi@ericsson.com>
8443
8444         * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
8445
8446 2017-01-10  Tom Tromey  <tom@tromey.com>
8447
8448         * python/py-type.c (typy_legacy_template_argument): Update.
8449         * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
8450         ~demangle_parse_info): Declare new members.
8451         (cp_demangled_name_to_comp): Return unique_ptr.
8452         (cp_demangled_name_parse_free)
8453         (make_cleanup_cp_demangled_name_parse_free)
8454         (cp_new_demangle_parse_info): Remove.
8455         * cp-support.c (do_demangled_name_parse_free_cleanup)
8456         (make_cleanup_cp_demangled_name_parse_free): Remove.
8457         (inspect_type, cp_canonicalize_string_full)
8458         (cp_canonicalize_string): Update.
8459         (mangled_name_to_comp): Change return type.
8460         (cp_class_name_from_physname, method_name_from_physname)
8461         (cp_func_name, cp_remove_params): Update.
8462         * cp-name-parser.y (demangle_parse_info): New constructor, from
8463         cp_new_demangle_parse_info.
8464         (~demangle_parse_info): New destructor, from
8465         cp_demangled_name_parse_free.
8466         (cp_merge_demangle_parse_infos): Update.
8467         (cp_demangled_name_to_comp): Change return type.
8468
8469 2017-01-10  Tom Tromey  <tom@tromey.com>
8470
8471         * top.c (prevent_dont_repeat): Change return type.
8472         * python/python.c (execute_gdb_command): Use std::string.
8473         Update.
8474         * guile/guile.c (gdbscm_execute_gdb_command): Update.
8475         * command.h (prevent_dont_repeat): Change return type.
8476         * breakpoint.c (bpstat_do_actions_1): Update.
8477
8478 2017-01-10  Tom Tromey  <tom@tromey.com>
8479
8480         * value.h (scoped_value_mark::~scoped_value_mark): Call
8481         free_to_mark.
8482         (scoped_value_mark::free_to_mark): New method.
8483         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
8484         scoped_value_mark.
8485
8486 2017-01-10  Tom Tromey  <tom@tromey.com>
8487
8488         * python/py-value.c (valpy_dereference, valpy_referenced_value)
8489         (valpy_reference_value, valpy_const_value, valpy_get_address)
8490         (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
8491         (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
8492         (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
8493         * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
8494         scoped_value_mark.
8495         * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
8496         * value.h (scoped_value_mark): New class.
8497
8498 2017-01-10  Tom Tromey  <tom@tromey.com>
8499
8500         * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
8501         * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
8502         * psymtab.c (discard_psymtabs_upto): Remove.
8503         (make_cleanup_discard_psymtabs): Remove.
8504         (struct psymtab_state): Remove.
8505
8506 2017-01-10  Tom Tromey  <tom@tromey.com>
8507
8508         * record-full.c (record_full_save_cleanups): Remove.
8509         (record_full_save): Use gdb::unlinker.
8510         * gcore.c (do_bfd_delete_cleanup): Remove.
8511         (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr.  Remove
8512         cleanups.
8513         * dwarf2read.c (unlink_if_set): Remove.
8514         (write_psymtabs_to_index): Use gdb::unlinker.
8515         * common/gdb_unlinker.h: New file.
8516
8517 2017-01-10  Tom Tromey  <tom@tromey.com>
8518
8519         * windows-tdep.c (windows_xfer_shared_library): Update.
8520         * windows-nat.c (windows_make_so): Update.
8521         * utils.h (make_cleanup_bfd_unref): Remove.
8522         * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
8523         * symfile.h (symfile_bfd_open)
8524         (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
8525         * symfile.c (read_symbols, symbol_file_add)
8526         (separate_debug_file_exists): Update.
8527         (symfile_bfd_open): Return gdb_bfd_ref_ptr.
8528         (generic_load, reread_symbols): Update.
8529         * symfile-mem.c (symbol_file_add_from_memory): Update.
8530         * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
8531         (spu_symbol_file_add_from_memory): Update.
8532         * solist.h (struct target_so_ops) <bfd_open>: Return
8533         gdb_bfd_ref_ptr.
8534         (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
8535         * solib.c (solib_bfd_fopen, solib_bfd_open): Return
8536         gdb_bfd_ref_ptr.
8537         (solib_map_sections, reload_shared_libraries_1): Update.
8538         * solib-svr4.c (enable_break): Update.
8539         * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
8540         * solib-frv.c (enable_break2): Update.
8541         * solib-dsbt.c (enable_break): Update.
8542         * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
8543         gdb_bfd_ref_ptr.
8544         (darwin_solib_get_all_image_info_addr_at_init): Update.
8545         (darwin_bfd_open): Return gdb_bfd_ref_ptr.
8546         * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
8547         * record-full.c (record_full_save): Update.
8548         * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
8549         * procfs.c (insert_dbx_link_bpt_in_file): Update.
8550         * minidebug.c (find_separate_debug_file_in_section): Return
8551         gdb_bfd_ref_ptr.
8552         * machoread.c (macho_add_oso_symfile): Change abfd to
8553         gdb_bfd_ref_ptr.
8554         (macho_symfile_read_all_oso): Update.
8555         (macho_check_dsym): Return gdb_bfd_ref_ptr.
8556         (macho_symfile_read): Update.
8557         * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
8558         (jit_bfd_try_read_symtab): Update.
8559         * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
8560         (gdb_bfd_openw, gdb_bfd_openr_iovec)
8561         (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
8562         gdb_bfd_ref_ptr.
8563         (gdb_bfd_ref_policy): New struct.
8564         (gdb_bfd_ref_ptr): New typedef.
8565         * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
8566         (gdb_bfd_openw, gdb_bfd_openr_iovec)
8567         (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
8568         gdb_bfd_ref_ptr.
8569         * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
8570         * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
8571         (gcore_command): Update.
8572         * exec.c (exec_file_attach): Update.
8573         * elfread.c (elf_symfile_read): Update.
8574         * dwarf2read.c (dwarf2_get_dwz_file): Update.
8575         (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
8576         (open_and_init_dwo_file): Update.
8577         (open_dwp_file): Return gdb_bfd_ref_ptr.
8578         (open_and_init_dwp_file): Update.
8579         * corelow.c (core_open): Update.
8580         * compile/compile-object-load.c (compile_object_load): Update.
8581         * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
8582         * coffread.c (coff_symfile_read): Update.
8583         * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
8584         gdb_bfd_ref_ptr.  Rename.
8585         (dump_bfd_file, restore_command): Update.
8586         * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
8587         * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
8588         (find_separate_debug_file_by_buildid): Update.
8589
8590 2017-01-10  Tom Tromey  <tom@tromey.com>
8591
8592         * common/gdb_ref_ptr.h: New file.
8593         * python/py-ref.h (struct gdbpy_ref_policy): New.
8594         (gdbpy_ref): Now a typedef.
8595
8596 2017-01-10  Tom Tromey  <tom@tromey.com>
8597
8598         * utils.h (make_cleanup_htab_delete): Don't declare.
8599         * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
8600         Remove.
8601         * linespec.c (decode_compound_collector): Add constructor,
8602         destructor.
8603         (lookup_prefix_sym): Remove cleanup.
8604         (symtab_collector): Add constructor, destructor.
8605         (collect_symtabs_from_filename): Remove cleanup.
8606         * disasm.c (do_mixed_source_and_assembly): Use htab_up.
8607         * compile/compile-c-symbols.c (generate_c_for_variable_locations):
8608         Use htab_up.
8609         * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
8610         * dwarf2read.c (dw2_expand_symtabs_matching)
8611         (dw2_map_symbol_filenames, dwarf_decode_macros)
8612         (write_psymtabs_to_index): Use htab_up.
8613         * dwarf2loc.c (func_verify_no_selftailcall)
8614         (call_site_find_chain_1, func_verify_no_selftailcall)
8615         (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
8616         std::vector, gdb::unique_xmalloc_ptr.
8617         (call_sitep): Remove typedef.
8618         (dwarf2_locexpr_baton_eval): Remove unused variable.
8619
8620 2017-01-10  Tom Tromey  <tom@tromey.com>
8621
8622         * python/python-internal.h (make_cleanup_py_decref)
8623         (make_cleanup_py_xdecref): Don't declare.
8624         * python/py-utils.c (py_decref, make_cleanup_py_decref)
8625         (py_xdecref, make_cleanup_py_xdecref): Remove.
8626
8627 2017-01-10  Tom Tromey  <tom@tromey.com>
8628
8629         * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
8630         (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
8631
8632 2017-01-10  Tom Tromey  <tom@tromey.com>
8633
8634         * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
8635
8636 2017-01-10  Tom Tromey  <tom@tromey.com>
8637
8638         * python/py-utils.c (unicode_to_encoded_string)
8639         (python_string_to_target_string)
8640         (python_string_to_target_python_string)
8641         (python_string_to_host_string, gdbpy_obj_to_string)
8642         (get_addr_from_python): Use gdbpy_ref.
8643
8644 2017-01-10  Tom Tromey  <tom@tromey.com>
8645
8646         * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
8647         gdbpy_ref.
8648
8649 2017-01-10  Tom Tromey  <tom@tromey.com>
8650
8651         * python/python.c (eval_python_command, gdbpy_decode_line)
8652         (gdbpy_run_events, gdbpy_start_type_printers)
8653         (gdbpy_apply_type_printers): Use gdbpy_ref.
8654
8655 2017-01-10  Tom Tromey  <tom@tromey.com>
8656
8657         * python/py-param.c (get_doc_string, compute_enum_values): Use
8658         gdbpy_ref.
8659
8660 2017-01-10  Tom Tromey  <tom@tromey.com>
8661
8662         * python/py-inferior.c (find_thread_object, build_inferior_list):
8663         Use gdbpy_ref.
8664
8665 2017-01-10  Tom Tromey  <tom@tromey.com>
8666
8667         * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
8668
8669 2017-01-10  Tom Tromey  <tom@tromey.com>
8670
8671         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
8672         gdbpy_ref.
8673
8674 2017-01-10  Tom Tromey  <tom@tromey.com>
8675
8676         * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref.  Remove
8677         extra incref.
8678         (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
8679         Use gdbpy_ref.
8680
8681 2017-01-10  Tom Tromey  <tom@tromey.com>
8682
8683         * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
8684         gdbpy_ref.
8685
8686 2017-01-10  Tom Tromey  <tom@tromey.com>
8687
8688         * python/py-arch.c (archpy_disassemble): Use gdbpy_ref.  Don't
8689         decref results of PyArg_ParseTupleAndKeywords.
8690
8691 2017-01-10  Tom Tromey  <tom@tromey.com>
8692
8693         * python/python.c (python_run_simple_file): Use
8694         unique_xmalloc_ptr, gdbpy_ref.
8695
8696 2017-01-10  Tom Tromey  <tom@tromey.com>
8697
8698         * python/py-prettyprint.c (print_stack_unless_memory_error)
8699         (print_string_repr, print_children): Use gdbpy_ref.
8700         (dummy_python_frame): New class.
8701         (dummy_python_frame::dummy_python_frame): Rename from
8702         push_dummy_python_frame.
8703         (py_restore_tstate): Remove.
8704
8705 2017-01-10  Tom Tromey  <tom@tromey.com>
8706
8707         * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
8708
8709 2017-01-10  Tom Tromey  <tom@tromey.com>
8710
8711         * python/python.c (ensure_python_env, restore_python_env):
8712         Remove.
8713         * python/python-internal.h (ensure_python_env): Don't declare.
8714         * varobj.h (varobj_ensure_python_env): Don't declare.
8715         * varobj.c (varobj_ensure_python_env): Remove.
8716
8717 2017-01-10  Tom Tromey  <tom@tromey.com>
8718
8719         * varobj.c (varobj_value_get_print_value): Use
8720         gdbpy_enter_varobj.
8721
8722 2017-01-10  Tom Tromey  <tom@tromey.com>
8723
8724         * python/py-prettyprint.c (print_string_repr, print_children):
8725         Update.
8726         * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
8727         of "encoding".
8728         * varobj.c (varobj_value_get_print_value): Update.
8729         * python/python-internal.h (gdbpy_extract_lazy_string): Update.
8730
8731 2017-01-10  Tom Tromey  <tom@tromey.com>
8732
8733         * varobj.c (varobj_get_display_hint)
8734         (dynamic_varobj_has_child_method, install_new_value_visualizer)
8735         (varobj_set_visualizer, free_variable): Use
8736         gdbpy_enter_varobj.
8737
8738 2017-01-10  Tom Tromey  <tom@tromey.com>
8739
8740         * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
8741         (do_finish_initialization): New function.  Use gdbpy_ref.
8742         (gdbpy_finish_initialization): Use gdbpy_enter.  Call
8743         do_finish_initialization.
8744
8745 2017-01-10  Tom Tromey  <tom@tromey.com>
8746
8747         * python/py-param.c (get_set_value, get_show_value): Use
8748         gdbpy_enter, gdbpy_ref.
8749
8750 2017-01-10  Tom Tromey  <tom@tromey.com>
8751
8752         * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
8753
8754 2017-01-10  Tom Tromey  <tom@tromey.com>
8755
8756         * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
8757
8758 2017-01-10  Tom Tromey  <tom@tromey.com>
8759
8760         * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
8761         Use gdbpy_enter_varobj.
8762
8763 2017-01-10  Tom Tromey  <tom@tromey.com>
8764
8765         * varobj.c (gdbpy_enter_varobj): New constructor.
8766         * python/python-internal.h (gdbpy_enter_varobj): New class.
8767         * python/py-varobj.c (py_varobj_get_iterator): Use
8768         gdbpy_enter_varobj.
8769
8770 2017-01-10  Tom Tromey  <tom@tromey.com>
8771
8772         * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
8773         gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
8774         (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
8775         (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
8776         unique_xmalloc_ptr.
8777         (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
8778
8779 2017-01-10  Tom Tromey  <tom@tromey.com>
8780
8781         * python/py-xmethods.c (invoke_match_method): Use
8782         gdbpy_ref.
8783
8784 2017-01-10  Tom Tromey  <tom@tromey.com>
8785
8786         * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
8787         gdbpy_enter, gdbpy_ref.
8788
8789 2017-01-10  Tom Tromey  <tom@tromey.com>
8790
8791         * python/python.c (python_interactive_command): Use gdbpy_enter.
8792
8793 2017-01-10  Tom Tromey  <tom@tromey.com>
8794
8795         * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
8796         gdbpy_ref.
8797
8798 2017-01-10  Tom Tromey  <tom@tromey.com>
8799
8800         * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
8801         gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
8802
8803 2017-01-10  Tom Tromey  <tom@tromey.com>
8804
8805         * utils.h (htab_deleter): New struct.
8806         (htab_up): New typedef.
8807         * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
8808         gdbpy_enter, gdbpy_ref, htab_up.
8809
8810 2017-01-10  Tom Tromey  <tom@tromey.com>
8811
8812         * python/py-unwind.c (pending_frame_invalidate): Remove.
8813         (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
8814
8815 2017-01-10  Tom Tromey  <tom@tromey.com>
8816
8817         * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
8818         (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
8819
8820 2017-01-10  Tom Tromey  <tom@tromey.com>
8821
8822         * python/py-type.c (save_objfile_types): Use gdbpy_enter.
8823
8824 2017-01-10  Tom Tromey  <tom@tromey.com>
8825
8826         * python/python.c (gdbpy_eval_from_control_command)
8827         (gdbpy_source_script, gdbpy_run_events)
8828         (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
8829         (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
8830         gdbpy_enter.
8831
8832 2017-01-10  Tom Tromey  <tom@tromey.com>
8833
8834         * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
8835
8836 2017-01-10  Tom Tromey  <tom@tromey.com>
8837
8838         * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
8839
8840 2017-01-10  Tom Tromey  <tom@tromey.com>
8841
8842         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
8843         (python_on_inferior_call_pre, python_on_inferior_call_post)
8844         (python_on_memory_change, python_on_register_change)
8845         (python_inferior_exit, python_new_objfile, add_thread_object)
8846         (delete_thread_object, py_free_inferior): Use gdbpy_enter.
8847
8848 2017-01-10  Tom Tromey  <tom@tromey.com>
8849
8850         * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
8851         (bpfinishpy_handle_exit): Use gdbpy_enter.
8852
8853 2017-01-10  Tom Tromey  <tom@tromey.com>
8854
8855         * python/py-cmd.c (cmdpy_destroyer)
8856         (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
8857         gdbpy_enter.
8858
8859 2017-01-10  Tom Tromey  <tom@tromey.com>
8860
8861         * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
8862         gdbpy_enter.
8863         (gdbpy_breakpoint_has_cond): Likewise.
8864
8865 2017-01-10  Tom Tromey  <tom@tromey.com>
8866
8867         * python/python.c (gdbpy_enter): New constructor.
8868         (~gdbpy_enter): New destructor.
8869         (restore_python_env, ensure_python_env): Rewrite.
8870         * python/python-internal.h (gdbpy_enter): New class.
8871
8872 2017-01-10  Tom Tromey  <tom@tromey.com>
8873
8874         * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
8875
8876 2017-01-10  Tom Tromey  <tom@tromey.com>
8877
8878         * python/py-value.c (value_has_field, get_field_flag)
8879         (get_field_type, valpy_getitem, convert_value_from_python): Use
8880         gdbpy_ref.
8881
8882 2017-01-10  Tom Tromey  <tom@tromey.com>
8883
8884         * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
8885         gdbpy_ref.
8886
8887 2017-01-10  Tom Tromey  <tom@tromey.com>
8888
8889         * python/py-prettyprint.c (search_pp_list)
8890         (find_pretty_printer_from_objfiles)
8891         (find_pretty_printer_from_progspace)
8892         (find_pretty_printer_from_gdb, find_pretty_printer)
8893         (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
8894         gdbpy_ref.
8895
8896 2017-01-10  Tom Tromey  <tom@tromey.com>
8897
8898         * python/py-param.c (call_doc_function): Use gdbpy_ref.
8899
8900 2017-01-10  Tom Tromey  <tom@tromey.com>
8901
8902         * python/py-linetable.c (build_line_table_tuple_from_pcs)
8903         (ltpy_get_all_source_lines): Use gdbpy_ref.
8904
8905 2017-01-10  Tom Tromey  <tom@tromey.com>
8906
8907         * python/py-framefilter.c (extract_sym, extract_value)
8908         (get_py_iter_from_func, bootstrap_python_frame_filters): Use
8909         gdbpy_ref.
8910
8911 2017-01-10  Tom Tromey  <tom@tromey.com>
8912
8913         * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
8914
8915 2017-01-10  Tom Tromey  <tom@tromey.com>
8916
8917         * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
8918
8919 2017-01-10  Tom Tromey  <tom@tromey.com>
8920
8921         * python/py-function.c (convert_values_to_python, fnpy_init): Use
8922         gdbpy_ref.
8923
8924 2017-01-10  Tom Tromey  <tom@tromey.com>
8925
8926         * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
8927
8928 2017-01-10  Tom Tromey  <tom@tromey.com>
8929
8930         * python/py-type.c (convert_field, make_fielditem, typy_fields)
8931         (typy_range): Use gdbpy_ref.
8932
8933 2017-01-10  Tom Tromey  <tom@tromey.com>
8934
8935         * python/py-threadevent.c (create_thread_event_object): Use
8936         gdbpy_ref.
8937         * python/py-stopevent.c (create_stop_event_object): Simplify.
8938         (emit_stop_event): Use gdbpy_ref.
8939         * python/py-signalevent.c (create_signal_event_object): Use
8940         gdbpy_ref.
8941         * python/py-newobjfileevent.c (create_new_objfile_event_object)
8942         (emit_new_objfile_event, create_clear_objfiles_event_object)
8943         (emit_clear_objfiles_event): Use gdbpy_ref.
8944         * python/py-infevents.c (create_inferior_call_event_object)
8945         (create_register_changed_event_object)
8946         (create_memory_changed_event_object, emit_inferior_call_event)
8947         (emit_memory_changed_event, emit_register_changed_event): Use
8948         gdbpy_ref.
8949         * python/py-exitedevent.c (create_exited_event_object)
8950         (emit_exited_event): Use gdbpy_ref.
8951         * python/py-event.h (evpy_emit_event): Remove
8952         CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
8953         * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
8954         * python/py-continueevent.c (emit_continue_event): Use
8955         gdbpy_ref.
8956         * python/py-breakpoint.c (gdbpy_breakpoint_created)
8957         (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
8958         gdbpy_ref.
8959         * python/py-bpevent.c (create_breakpoint_event_object): Use
8960         gdbpy_ref.
8961
8962 2017-01-10  Tom Tromey  <tom@tromey.com>
8963
8964         * python/py-ref.h: New file.
8965
8966 2017-01-10  Simon Marchi  <simon.marchi@ericsson.com>
8967
8968         * cli-out.c (cli_ui_out::do_redirect): Change return type to
8969         void.
8970         * cli-out.h (cli_ui_out::do_redirect): Likewise.
8971         * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
8972         * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
8973         * ui-out.c (ui_out::redirect): Likewise.
8974         * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
8975         * cli/cli-logging.c (set_logging_redirect): Update call site of
8976         ui_out::redirect.
8977         (handle_redirections): Likewise.
8978         * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
8979         * top.c (execute_command_to_string): Likewise.
8980         * utils.c (do_ui_out_redirect_pop): Likewise.
8981
8982 2017-01-10  Simon Marchi  <simon.marchi@ericsson.com>
8983
8984         * stack.c (_initialize_stack): Update "frame" command help message.
8985
8986 2017-01-08  Iain Buclaw  <ibuclaw@gdcproject.org>
8987
8988         * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
8989
8990 2017-01-06  Yao Qi  <yao.qi@linaro.org>
8991
8992         * x86-linux-nat.h: Include gdb_proc_service.h.
8993
8994 2017-01-06  Yao Qi  <yao.qi@linaro.org>
8995
8996         * ser-base.h: Include serial.h.
8997
8998 2017-01-06  Yao Qi  <yao.qi@linaro.org>
8999
9000         * ppc-linux-tdep.h: Include ppc-tdep.h.
9001
9002 2017-01-06  Yao Qi  <yao.qi@linaro.org>
9003
9004         * nat/amd64-linux-siginfo.h: Include signal.h.
9005
9006 2017-01-06  Yao Qi  <yao.qi@linaro.org>
9007
9008         * nat/aarch64-linux-hw-point.h: Include break-common.h.
9009
9010 2017-01-06  Yao Qi  <yao.qi@linaro.org>
9011
9012         * mi/mi-parse.h: Include mi-cmds.h.
9013
9014 2017-01-06  Yao Qi  <yao.qi@linaro.org>
9015
9016         * inf-loop.c: Don't include "target.h".
9017         * inf-loop.h: Include it here.
9018
9019 2017-01-06  Yao Qi  <yao.qi@linaro.org>
9020
9021         * dfp.h: Include "dboulest.h" and "expression.h".
9022
9023 2017-01-06  Yao Qi  <yao.qi@linaro.org>
9024
9025         * ax-gdb.h: Include "ax.h".
9026
9027 2017-01-06  Yao Qi  <yao.qi@linaro.org>
9028
9029         * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
9030         with nat/gdb_ptrace.h.
9031
9032 2017-01-05  Yao Qi  <yao.qi@linaro.org>
9033
9034         * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
9035         new line.
9036         (mips64_fbsd_sigframe_init): Likewise.
9037
9038 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
9039
9040         * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
9041         GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
9042
9043 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
9044
9045         * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
9046         * NEWS: Mention new FreeBSD/mips native configuration.
9047         * config/mips/fbsd.mh: New file.
9048         * configure.host: Add mips*-*-freebsd*.
9049         * mips-fbsd-nat.c: New file.
9050
9051 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
9052
9053         * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
9054         (ALLDEPFILES): Add mips-fbsd-tdep.c.
9055         * NEWS: Mention new FreeBSD/mips target.
9056         * configure.tgt: Add mips*-*-freebsd*.
9057         * mips-fbsd-tdep.c: New file.
9058         * mips-fbsd-tdep.h: New file.
9059
9060 2017-01-04  Yao Qi  <yao.qi@linaro.org>
9061
9062         * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
9063         use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
9064
9065 2017-01-01  Joel Brobecker  <brobecker@adacore.com>
9066
9067         Update copyright year range in all GDB files.
9068
9069 2017-01-01  Joel Brobecker  <brobecker@adacore.com>
9070
9071         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
9072
9073 For older changes see ChangeLog-2016.
9074 \f
9075 Local Variables:
9076 mode: change-log
9077 left-margin: 8
9078 fill-column: 74
9079 version-control: never
9080 coding: utf-8
9081 End: