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