Replace VEC (varobj_update_result) with std::vector
[external/binutils.git] / gdb / ChangeLog
1 2017-11-22  Simon Marchi  <simon.marchi@polymtl.ca>
2
3         * varobj.h (struct varobj_update_result): Add constructor, add
4         move constructor, disable copy and assign, initialize fields.
5         <newobj>: Change type to std::vector.
6         (varobj_update): Return std::vector.
7         * varobj.c (install_dynamic_child): Change VEC parameters to
8         std::vector and adjust.
9         (update_dynamic_varobj_children): Likewise.
10         (varobj_update): Return std::vector and adjust.
11         * mi/mi-cmd-var.c (varobj_update_one): Adjust to vector changes.
12
13 2017-11-22  Simon Marchi  <simon.marchi@polymtl.ca>
14
15         * varobj.h (struct varobj) <parent>: Remove const.
16         <children>: Change type to std::vector.
17         (varobj_list_children): Return std::vector const reference.
18         (varobj_restrict_range): Change parameter type to std::vector
19         const reference.
20         * varobj.c (varobj_has_more): Adjust.
21         (varobj_restrict_range): Change parameter type to std::vector
22         const reference and adjust.
23         (install_dynamic_child): Adjust.
24         (update_dynamic_varobj_children): Adjust.
25         (varobj_list_children): Return std::vector const reference and
26         adjust.
27         (varobj_add_child): Adjust.
28         (update_type_if_necessary): Adjust.
29         (varobj_update): Adjust.
30         (delete_variable_1): Adjust.
31         * ada-varobj.c (ada_value_has_mutated): Adjust.
32         * mi/mi-cmd-var.c (mi_cmd_var_list_children): Adjust.
33
34 2017-11-22  Simon Marchi  <simon.marchi@polymtl.ca>
35
36         * varobj.h (struct varobj): Add constructor and destructor,
37         initialize fields.
38         * varobj.c (struct varobj_root): Initialize fields.
39         (struct varobj_dynamic): Initialize fields.
40         (varobj_create): Use unique_ptr instead of cleanup.  Create
41         varobj with new instead of new_root_variable.
42         (delete_variable_1): Free variable with delete instead of
43         free_variable.
44         (create_child_with_value): Create variable with new instead of
45         new_variable.
46         (varobj::varobj): New.
47         (varobj::~varobj): New (body mostly coming from free_variable).
48         (new_variable): Remove.
49         (free_variable): Remove.
50         (do_free_variable_cleanup): Remove.
51         (make_cleanup_free_variable): Remove.
52
53 2017-11-22  Ulrich Weigand  <uweigand@de.ibm.com>
54
55         * core-regset.c: Remove file.
56         * Makefile.in (ALLDEPFILES): Remove core-regset.c.
57
58 2017-11-22  Ulrich Weigand  <uweigand@de.ibm.com>
59
60         * NEWS: Document use of GNU MPFR.
61         * README: Likewise.
62
63         * Makefile.in (LIBMPFR): Add define.
64         (CLIBS): Add $(LIBMPFR).
65         * configure.ac: Add --with-mpfr configure option.
66         * configure: Regenerate.
67         * config.in: Regenerate.
68
69         * target-float.c [HAVE_LIBMPFR]: Include <mpfr.h>.
70         (class mpfr_float_ops): New type.
71         (mpfr_float_ops::from_target): Two new overloaded functions.
72         (mpfr_float_ops::to_target): Likewise.
73         (mpfr_float_ops::to_string): New function.
74         (mpfr_float_ops::from_string): Likewise.
75         (mpfr_float_ops::to_longest): Likewise.
76         (mpfr_float_ops::from_longest): Likewise.
77         (mpfr_float_ops::from_ulongest): Likewise.
78         (mpfr_float_ops::to_host_double): Likewise.
79         (mpfr_float_ops::from_host_double): Likewise.
80         (mpfr_float_ops::convert): Likewise.
81         (mpfr_float_ops::binop): Likewise.
82         (mpfr_float_ops::compare): Likewise.
83         (get_target_float_ops): Use mpfr_float_ops if available.
84
85 2017-11-22  Ulrich Weigand  <uweigand@de.ibm.com>
86
87         * target-float.c: Do not include <math.h>.
88         Include <cmath> and <limits>.
89         (DOUBLEST): Do not define.
90         (class target_float_ops): New type.
91         (class host_float_ops): New templated type.
92         (class decimal_float_ops): New type.
93
94         (floatformat_to_doublest): Rename to ...
95         (host_float_ops<T>::from_target): ... this.  Use template type T
96         instead of DOUBLEST.  Use C++ math routines.  Update recursive calls.
97         (host_float_ops<T>::from_target): New overload using a type argument.
98         (floatformat_from_doublest): Rename to ...
99         (host_float_ops<T>::to_target): ... this.  Use template type T
100         instead of DOUBLEST.  Use C++ math routines.  Update recursive calls.
101         (host_float_ops<T>::to_target): New overload using a type argument.
102         (floatformat_printf_format): New function.
103         (struct printf_length_modifier): New templated type.
104         (floatformat_to_string): Rename to ...
105         (host_float_ops<T>::to_string): ... this.  Use type instead of
106         floatformat argument.  Use floatformat_printf_format and
107         printf_length_modifier.  Remove special handling of invalid numbers,
108         infinities and NaN (moved to target_float_to_string).
109         (struct scanf_length_modifier): New templated type.
110         (floatformat_from_string): Rename to ...
111         (host_float_ops<T>::from_string): ... this.  Use type instead of
112         floatformat argument.  Use scanf_length_modifier.
113         (floatformat_to_longest): Rename to ...
114         (host_float_ops<T>::to_longest): ... this.  Use type instead of
115         floatformat argument.  Handle out-of-range values deterministically.
116         (floatformat_from_longest): Rename to ...
117         (host_float_ops<T>::from_longest): ... this.  Use type instead of
118         floatformat argument.
119         (floatformat_from_ulongest): Rename to ...
120         (host_float_ops<T>::from_ulongest): ... this.  Use type instead of
121         floatformat argument.
122         (floatformat_to_host_double): Rename to ...
123         (host_float_ops<T>::to_host_double): ... this.  Use type instead of
124         floatformat argument.
125         (floatformat_from_host_double): Rename to ...
126         (host_float_ops<T>::from_host_double): ... this.  Use type instead of
127         floatformat argument.
128         (floatformat_convert): Rename to ...
129         (host_float_ops<T>::convert): ... this.  Use type instead of
130         floatformat arguments.  Remove handling of no-op conversions.
131         (floatformat_binop): Rename to ...
132         (host_float_ops<T>::binop): ... this.  Use type instead of
133         floatformat arguments.
134         (floatformat_compare): Rename to ...
135         (host_float_ops<T>::compare): ... this.  Use type instead of
136         floatformat arguments.
137
138         (match_endianness): Use type instead of length/byte_order arguments.
139         (set_decnumber_context): Likewise.
140         (decimal_from_number): Likewise.  Update calls.
141         (decimal_to_number): Likewise.
142         (decimal_is_zero): Likewise.  Update calls.  Move to earlier in file.
143         (decimal_float_ops::to_host_double): New dummy function.
144         (decimal_float_ops::from_host_double): Likewise.
145         (decimal_to_string): Rename to ...
146         (decimal_float_ops::to_string): ... this.  Use type instead of
147         length/byte_order arguments.  Update calls.
148         (decimal_from_string): Rename to ...
149         (decimal_float_ops::from_string): ... this.  Use type instead of
150         length/byte_order arguments.  Update calls.
151         (decimal_from_longest): Rename to ...
152         (decimal_float_ops::from_longest): ... this.  Use type instead of
153         length/byte_order arguments.  Update calls.
154         (decimal_from_ulongest): Rename to ...
155         (decimal_float_ops::from_ulongest): ... this.  Use type instead of
156         length/byte_order arguments.  Update calls.
157         (decimal_to_longest): Rename to ...
158         (decimal_float_ops::to_longest): ... this.  Use type instead of
159         length/byte_order arguments.  Update calls.
160         (decimal_binop): Rename to ...
161         (decimal_float_ops::binop): ... this.  Use type instead of
162         length/byte_order arguments.  Update calls.
163         (decimal_compare): Rename to ...
164         (decimal_float_ops::compare): ... this.  Use type instead of
165         length/byte_order arguments.  Update calls.
166         (decimal_convert): Rename to ...
167         (decimal_float_ops::convert): ... this.  Use type instead of
168         length/byte_order arguments.  Update calls.
169
170         (target_float_same_category_p): New function.
171         (target_float_same_format_p): Likewise.
172         (target_float_format_length): Likewise.
173         (enum target_float_ops_kind): New type.
174         (get_target_float_ops_kind): New function.
175         (get_target_float_ops): Three new overloaded functions.
176
177         (target_float_is_zero): Update call.
178         (target_float_to_string): Add special handling of invalid numbers,
179         infinities and NaN (moved from floatformat_to_string).  Use
180         target_float_ops callback.
181         (target_float_from_string): Use target_float_ops callback.
182         (target_float_to_longest): Likewise.
183         (target_float_from_longest): Likewise.
184         (target_float_from_ulongest): Likewise.
185         (target_float_to_host_double): Likewise.
186         (target_float_from_host_double): Likewise.
187         (target_float_convert): Add special case for no-op conversions.
188         Use target_float_ops callback.
189         (target_float_binop): Use target_float_ops callback.
190         (target_float_compare): Likewise.
191
192 2017-11-22  Yao Qi  <yao.qi@linaro.org>
193
194         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use strcpy.
195
196 2017-11-22  Yao Qi  <yao.qi@linaro.org>
197
198         * cli/cli-decode.c (help_list): Use memcpy instead of strncpy.
199         * cp-namespace.c (cp_lookup_transparent_type_loop): Likewise.
200
201 2017-11-21  Jerome Guitton  <guitton@adacore.com>
202
203         * ravenscar-thread.c (ravenscar_wait): Update inferior ptid
204         with event ptid from the lower layer before doing the
205         ravenscar-specific update.
206
207 2017-11-21  Joel Brobecker  <brobecker@adacore.com>
208
209         * ravenscar-thread.c (is_ravenscar_task): Also verify that
210         the ptid's TID is nonzero.
211
212 2017-11-21  Joel Brobecker  <brobecker@adacore.com>
213
214         * ada-lang.h (ada_get_tcb_types_info): Add declaration.
215         * ada-tasks.c (ada_get_tcb_types_info): Renames get_tcb_types_info.
216         Make non-static.  Change return type to char *.  Adjust code
217         accordingly.  Rewrite the function's documentation.
218         (read_atcb): Adjust call to get_tcb_types_info accordingly.
219         * ravenscar-thread.c (ravenscar_inferior_created): Check that
220         we have enough debugging information in the runtime to support
221         Ada task debugging before we enable the ravenscar-thread layer.
222
223 2017-11-21  Joel Brobecker  <brobecker@adacore.com>
224
225         * ada-lang.h (ada_get_task_info_from_ptid): Add declaration.
226         * ada-tasks.c (ada_get_task_info_from_ptid): New function.
227         * ravenscar-thread.c: Add into comment.
228         (base_magic_null_ptid): Delete.
229         (base_ptid): Change documentation.
230         (ravenscar_active_task): Renames ravenscar_running_thread.
231         All callers updated throughout.
232         (is_ravenscar_task, ravenscar_get_thread_base_cpu): New function.
233         (ravenscar_task_is_currently_active): Likewise.
234         (get_base_thread_from_ravenscar_task): Ditto.
235         (ravenscar_update_inferior_ptid): Adjust to handle multiple CPUs.
236         (ravenscar_runtime_initialized): Likewise.
237         (get_running_thread_id): Add new parameter "cpu".  Adjust
238         implementation to handle this new parameter.
239         (ravenscar_fetch_registers): Small adjustment to use
240         is_ravenscar_task and ravenscar_task_is_currently_active in
241         order to decide whether to use the target beneath or this
242         module's arch_ops.
243         (ravenscar_store_registers, ravenscar_prepare_to_store): Likewise.
244         (ravenscar_stopped_by_sw_breakpoint): Use
245         get_base_thread_from_ravenscar_task to get the underlying
246         thread, rather than using base_ptid.
247         (ravenscar_stopped_by_hw_breakpoint, ravenscar_stopped_by_watchpoint)
248         (ravenscar_stopped_data_address, ravenscar_core_of_thread):
249         Likewise.
250         (ravenscar_inferior_created): Do not set base_magic_null_ptid.
251
252 2017-11-21  Joel Brobecker  <brobecker@adacore.com>
253
254         * ada-lang.h (struct ada_task_info) <base_cpu>: New field.
255         * ada-lang.c (struct atcb_fieldno) <base_cpu>: New field.
256         (get_tcb_types_info): Set fieldnos.base_cpu.
257         (read_atcb): Set task_info->base_cpu.
258         (info_task): Print "Base CPU" info if set by runtime.
259
260 2017-11-21  Joel Brobecker  <brobecker@adacore.com>
261
262         * ravenscar-thread.c (ravenscar_stopped_by_sw_breakpoint)
263         (ravenscar_stopped_by_hw_breakpoint, ravenscar_stopped_by_watchpoint)
264         (ravenscar_stopped_data_address, ravenscar_core_of_thread):
265         New functions.
266         (init_ravenscar_thread_ops): Set the to_stopped_by_sw_breakpoint,
267         to_stopped_by_hw_breakpoint, to_stopped_by_watchpoint,
268         to_stopped_data_address and to_core_of_thread fields of
269         ravenscar_ops.
270
271 2017-11-21  Ulrich Weigand  <uweigand@de.ibm.com>
272
273         * ppc-tdep.h (enum powerpc_long_double_abi): New data type.
274         (struct gdbarch_tdep): New member long_double_abi.
275         * rs6000-tdep.c (rs6000_gdbarch_init): Initialize long_double_abi
276         member of tdep struct based on Tag_GNU_Power_ABI_FP attribute.
277         * ppc-linux-tdep.c (ppc_linux_init_abi): Install long double data
278         format depending on long_double_abi tdep member.
279         (ppc_floatformat_for_type): Handle __ibm128 type.
280
281 2017-11-20  Simon Marchi  <simon.marchi@polymtl.ca>
282
283         * darwin-nat.c (set_enable_mach_exceptions): Constify parameter.
284
285 2017-11-21  Pedro Alves  <palves@redhat.com>
286
287         * dwarf2read.c (mapped_index::find_name_components_bounds)
288         <completion mode, upper bound>: Use std::lower_bound instead of
289         std::upper_bound.
290         (test_mapped_index_find_name_component_bounds): Remove incorrect
291         "t1_fund" from expected symbols.
292
293 2017-11-21  Pedro Alves  <palves@redhat.com>
294
295         * dwarf2read.c (mapped_index::name_components_casing): New field.
296         (mapped_index) <build_name_components,
297         find_name_components_bounds): Declare new methods.
298         (mapped_index::find_name_components_bounds)
299         (mapped_index::build_name_components): New methods, factored out
300         from dw2_expand_symtabs_matching_symbol.
301         (check_find_bounds_finds)
302         (test_mapped_index_find_name_component_bounds): New.
303         (run_test): Rename to ...
304         (test_dw2_expand_symtabs_matching_symbol): ... this.
305         (run_test): Reimplement.
306
307 2017-11-21  Pedro Alves  <palves@redhat.com>
308
309         * cp-name-parser.y (cp_ident_is_alpha, cp_ident_is_alnum): New.
310         (symbol_end): Use cp_ident_is_alnum.
311         (yylex): Use cp_ident_is_alpha and cp_ident_is_alnum.
312         * dwarf2read.c (make_sort_after_prefix_name): New function.
313         (dw2_expand_symtabs_matching_symbol): Use it.
314         (test_symbols): Add more symbols.
315         (run_test): Add tests.
316
317 2017-11-17  Tom Tromey  <tom@tromey.com>
318
319         * symtab.h (enum symbol_subclass_kind): New.
320         (struct symbol) <is_cplus_template_function, is_rust_vtable>:
321         Remove.
322         <subclass>: New member.
323         (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): Update.
324         * rust-lang.c (rust_get_trait_object_pointer): Update.
325         * dwarf2read.c (read_func_scope): Update.
326         (read_variable): Update.
327
328 2017-11-17  Tom Tromey  <tom@tromey.com>
329
330         * dwarf2read.c (read_func_scope): Update.
331         * symtab.h (struct template_symbol): Derive from symbol.
332         <base>: Remove.
333
334 2017-11-17  Tom Tromey  <tom@tromey.com>
335
336         * symtab.h (struct symbol) <is_rust_vtable>: New member.
337         (struct rust_vtable_symbol): New.
338         (find_symbol_at_address): Declare.
339         * symtab.c (find_symbol_at_address): New function.
340         * symfile.h (struct quick_symbol_functions)
341         <find_compunit_symtab_by_address>: New member.
342         * symfile-debug.c (debug_qf_find_compunit_symtab_by_address): New
343         function.
344         (debug_sym_quick_functions): Link to
345         debug_qf_find_compunit_symtab_by_address.
346         * rust-lang.c (rust_get_trait_object_pointer): New function.
347         (rust_evaluate_subexp) <case UNOP_IND>: New case.  Call
348         rust_get_trait_object_pointer.
349         * psymtab.c (psym_relocate): Clear psymbol_map.
350         (psym_fill_psymbol_map, psym_find_compunit_symtab_by_address): New
351         functions.
352         (psym_functions): Link to psym_find_compunit_symtab_by_address.
353         * objfiles.h (struct objfile) <psymbol_map>: New member.
354         * dwarf2read.c (dwarf2_gdb_index_functions): Update.
355         (process_die) <DW_TAG_variable>: New case.  Call read_variable.
356         (rust_containing_type, read_variable): New functions.
357
358 2017-11-17  Simon Marchi  <simon.marchi@polymtl.ca>
359
360         * common/gdb_vecs.h (DEF_VEC_I (int)): Remove.
361
362 2017-11-17  Simon Marchi  <simon.marchi@polymtl.ca>
363
364         * common/filestuff.c: Include <algorithm>.
365         (open_fds): Change type to std::vector<int>.
366         (do_mark_open_fd): Adjust.
367         (unmark_fd_no_cloexec): Adjust.
368         (do_close): Adjust.
369
370 2017-11-17  Simon Marchi  <simon.marchi@polymtl.ca>
371
372         * breakpoint.c (output_thread_groups): Take an std::vector.
373         (print_one_breakpoint_location): Adjust.
374
375 2017-11-17  Joel Brobecker  <brobecker@adacore.com>
376
377         * ada-lang.c (resolve_subexp): Add handling of OP_VAR_MSYM_VALUE.
378         (ada_evaluate_subexp_for_cast): New function.
379         (ada_evaluate_subexp) <UNOP_CAST>: Replace code by call to
380         ada_evaluate_subexp_for_cast.
381         (ada_evaluate_subexp) <nosideret>: Replace code by call to
382         eval_skip_value.
383         * eval.c (evaluate_var_value): Make non-static.
384         (evaluate_var_msym_value, eval_skip_value): Likewise.
385         * value.h (evaluate_var_value, evaluate_var_msym_value)
386         (eval_skip_value): Declare.
387
388 2017-11-16  Joel Brobecker  <brobecker@adacore.com>
389
390         * ada-lang.c (ada_value_cast): Remove parameter "noside".
391         Update all callers.
392
393 2017-11-16  Pedro Alves  <palves@redhat.com>
394
395         * python/py-unwind.c (pyuw_sniffer): Translate
396         PyExc_KeyboardInterrupt to a GDB Quit exception.
397
398 2017-11-16  Pedro Alves  <palves@redhat.com>
399
400         * infrun.c (resume_cleanups): Delete.
401         (resume): No longer install a resume_cleanups cleanup nor call
402         QUIT.
403         (proceed): Pass the terminal to the inferior.
404         (keep_going_pass_signal): No longer install a resume_cleanups
405         cleanup.
406
407 2017-11-16  Pedro Alves  <palves@redhat.com>
408
409         * inf-loop.c (inferior_event_handler): Don't swallow the exception
410         if the prompt is blocked.
411
412 2017-11-16  Pedro Alves  <palves@redhat.com>
413
414         * breakpoint.c (insert_bp_location): Replace bp_err and
415         bp_err_message locals by a gdb_exception local.
416
417 2017-11-16  Pedro Alves  <palves@redhat.com>
418
419         * inflow.c (scoped_ignore_sigttou): New class.
420         (child_terminal_ours_1, new_tty): Use it.
421
422 2017-11-16  Ulrich Weigand  <uweigand@de.ibm.com>
423
424         * target-float.c (decimal_from_number): Add byte_order argument and
425         call match_endianness.  Error if unknown floating-point type.
426         (decimal_to_number): Add byte_order argument and call match_endianness.
427         (decimal_from_longest): Update call.  Do not call match_endianness.
428         (decimal_from_ulongest): Likewise.
429         (decimal_binop): Likewise.
430         (decimal_is_zero): Likewise.
431         (decimal_compare): Likewise.
432         (decimal_convert): Likewise.
433
434 2017-11-16  Phil Muldoon  <pmuldoon@redhat.com>
435
436         * python/python.c (gdbpy_rbreak): New function.
437         * NEWS: Document Python rbreak feature.
438
439 2017-11-16  Yao Qi  <yao.qi@linaro.org>
440
441         * features/tic6x-c62x.xml: Remove.
442         * features/tic6x-c64x.xml: Remove.
443         * features/tic6x-c64xp.xml: Remove.
444
445 2017-11-15  John Baldwin  <jhb@FreeBSD.org>
446
447         * symtab.h: Include <array>.
448
449 2017-11-15  John Baldwin  <jhb@FreeBSD.org>
450
451         * bsd-kvm.c (bsd_kvm_cmd): Constify 'arg'.
452         (bsd_kvm_proc_cmd): Likewise.
453
454 2017-11-15  Simon Marchi  <simon.marchi@ericsson.com>
455
456         * tui/tui-win.c (window_name_completer): Replace VEC with
457         std::vector.
458
459 2017-11-15  Andrew Cagney  <cagney@gnu.org>
460
461         * MAINTAINERS: Remove no-longer applicable entries.
462
463 2017-11-15  Andrew Cagney  <cagney@gnu.org>
464
465         * MAINTAINERS: Move self to Past Maintainers.
466
467 2017-11-15  Yao Qi  <yao.qi@linaro.org>
468
469         * features/Makefile (XMLTOC): Remove nios2-linux.xml.
470         * features/nios2-linux.c: Remove.
471         * nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Don't call
472         initialize_tdesc_nios2_linux.
473
474 2017-11-15  Yao Qi  <yao.qi@linaro.org>
475
476         * m68hc11-tdep.c (M68HC11_NUM_REGS): Change it to
477         M68HC11_LAST_HARD_REG + 1.
478
479 2017-11-14  Paul Carroll  <pcarroll@codesourcery.com>
480
481         PR gdb/22388
482         * remote.c (remote_write_bytes_aux, remote_read_bytes_1,
483         remote_read_bytes, remote_write_qxfer, remote_xfer_partial):
484         Return TARGET_XFER_EOF if size of returned data is 0.
485
486 2017-11-14  Simon Marchi  <simon.marchi@ericsson.com>
487
488         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
489         memory-map-selftests.c.
490         (SUBDIR_UNITTESTS_OBS): Add memory-map-selftests.o.
491         * memory-map.c (memory_map_start_memory): Fix computation of hi
492         address.
493         * unittests/memory-map-selftests.c: New file.
494
495 2017-11-09  Joel Brobecker  <brobecker@adacore.com>
496
497         * ada-lang.c: Fix some typos in the general command documenting
498         how Ada expressions are being evaluated and how their result
499         is printed.
500
501 2017-11-09  Tom Tromey  <tom@tromey.com>
502
503         * psymtab.c (psymbol_hash): Do not hash string contents.
504         (psymbol_compare): Add comment.
505
506 2017-11-09  Tom Tromey  <tom@tromey.com>
507
508         * dictionary.c (dict_hash): Move "TKB" check into the "switch".
509
510 2017-11-08  Joel Brobecker  <brobecker@adacore.com>
511
512         * ada-exp.y (write_var_from_sym): Remove parameter
513         "orig_left_context".  Update all callers.
514
515 2017-11-08  Simon Marchi  <simon.marchi@ericsson.com>
516
517         * tracepoint.h (class collection_list) <stringify>: Return
518         std::vector<std::string>.
519         (encode_actions_rsp): Change parameters to
520         std::vector<std::string> *.
521         * tracepoint.c (collection_list::stringify): Return
522         std::vector<std::string> and adjust accordingly.
523         (encode_actions_rsp): Changee parameters to
524         std::vector<std::string> and adjust accordingly.
525         * remote.c (free_actions_list),
526         free_actions_list_cleanup_wrapper): Remove.
527         (remote_download_tracepoint): Adjust to std::vector.
528
529 2017-11-08  Tom Tromey  <tom@tromey.com>
530
531         * dwarf2read.c (symbolp): Remove typedef.
532         (read_func_scope): Use std::vector.
533         (process_structure_scope): Use std::vector.
534
535 2017-11-08  Pedro Alves  <palves@redhat.com>
536
537         * ada-lang.c (ada_make_symbol_completion_list): Use
538         completion_skip_symbol.
539         * symtab.c (symbol_is_function_or_method(minimal_symbol*)): New.
540         (symbol_is_function_or_method(symbol*)): New.
541         (add_symtab_completions): Add complete_symbol_mode parameter.  Use
542         completion_skip_symbol.
543         (default_collect_symbol_completion_matches_break_on): Use
544         completion_skip_symbol.  Pass down mode.
545         (collect_file_symbol_completion_matches): Pass down mode.
546         * symtab.h (symbol_is_function_or_method): New declarations.
547         (completion_skip_symbol): New template function.
548
549 2017-11-08  Pedro Alves  <palves@redhat.com>
550
551         * linespec.c (iterate_over_all_matching_symtabs): Add
552         search_domain parameter.  Pass it down to expand_symtabs_matching.
553         (decode_objc): Request FUNCTIONS_DOMAIN symbols only.
554         (lookup_prefix_sym): Adjust by passing ALL_DOMAIN as
555         search_domain.
556         (add_all_symbol_names_from_pspace): Add search_domain parameter.
557         Pass it down.
558         (find_method, find_function_symbols): Request FUNCTIONS_DOMAIN
559         symbols.
560         (add_matching_symbols_to_info): Add search_domain parameter.  Pass
561         it down.
562
563 2017-11-08  Pedro Alves  <palves@redhat.com>
564
565         * ada-lang.c (ada_make_symbol_completion_list): Remove text and
566         text_len locals and don't pass them down.
567         * symtab.c (completion_list_add_name): Remove
568         sym_text/sym_text_len parameters and adjust.
569         (completion_list_add_symbol, completion_list_add_msymbol)
570         (completion_list_objc_symbol, completion_list_add_fields)
571         (add_symtab_completions): Likewise.
572         (default_collect_symbol_completion_matches_break_on)
573         (collect_file_symbol_completion_matches): Remove sym_text_len
574         local and don't pass it down.
575         * symtab.h (completion_list_add_name): Remove
576         sym_text/sym_text_len parameters.
577
578 2017-11-08  Pedro Alves  <palves@redhat.com>
579
580         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
581         unittests/lookup_name_info-selftests.c.
582         (SUBDIR_UNITTESTS_OBS): Add lookup_name_info-selftests.o.
583         * cp-support.c: Include "selftest.h".
584         (cp_remove_params_1): Rename from cp_remove_params.  Add
585         'require_param' parameter, and handle it.
586         (cp_remove_params): Reimplement.
587         (cp_remove_params_if_any): New.
588         (selftests::quote): New.
589         (selftests::check_remove_params): New.
590         (selftests::test_cp_remove_params): New.
591         (_initialize_cp_support): Install
592         selftests::test_cp_remove_params.
593         * cp-support.h (cp_remove_params_if_any): Declare.
594         * dwarf2read.c :Include "selftest.h".
595         (dw2_expand_symtabs_matching_symbol): Use
596         lookup_name_info::make_ignore_params.
597         (selftests::dw2_expand_symtabs_matching::mock_mapped_index)
598         (selftests::dw2_expand_symtabs_matching::string_or_null)
599         (selftests::dw2_expand_symtabs_matching::check_match)
600         (selftests::dw2_expand_symtabs_matching::test_symbols)
601         (selftests::dw2_expand_symtabs_matching::run_test): New.
602         (_initialize_dwarf2_read): Register
603         selftests::dw2_expand_symtabs_matching::run_test.
604         * psymtab.c (psym_expand_symtabs_matching): Use
605         lookup_name_info::make_ignore_params.
606         * symtab.c (demangle_for_lookup_info::demangle_for_lookup_info):
607         If the lookup name wants to ignore parameters, strip them.
608         (compare_symbol_name): Remove sym_text/sym_text_len parameters and
609         code handling '('.
610         (completion_list_add_name): Don't pass down sym_text/sym_text_len.
611         (default_collect_symbol_completion_matches_break_on): Don't try to
612         strip parameters.
613         * symtab.h (lookup_name_info::lookup_name_info): Add
614         'ignore_parameters' parameter.
615         (lookup_name_info::ignore_parameters)
616         (lookup_name_info::make_ignore_params): New methods.
617         (lookup_name_info::m_ignore_parameters): New field.
618         * unittests/lookup_name_info-selftests.c: New file.
619
620 2017-11-08  Pedro Alves  <palves@redhat.com>
621
622         * dwarf2read.c (dw2_expand_marked_cus)
623         (dw2_expand_symtabs_matching_symbol): Remove forward declarations.
624         (dw2_expand_symtabs_matching): Move further below.
625         (dw2_expand_marked_cus): Reindent.
626
627 2017-11-08  Pedro Alves  <palves@redhat.com>
628
629         * dwarf2read.c (byte_swap, MAYBE_SWAP): Move higher up in file.
630         (struct name_component): New.
631         (mapped_index::name_components): New field.
632         (mapped_index::symbol_name_at): New method.
633         (dwarf2_read_index): Call mapped_index ctor.
634         (dw2_map_matching_symbols): Add comment about name_components
635         table.
636         (dw2_expand_symtabs_matching): Factor part to...
637         (dw2_expand_symtabs_matching_symbol): ... this new function.
638         Build name components table, and lookup symbols in it before
639         calling the name matcher.
640         (dw2_expand_marked_cus): New, factored out from
641         dw2_expand_symtabs_matching.
642         (dwarf2_per_objfile_free): Call the mapped_index's dtor.
643
644 2017-11-08   Pedro Alves  <palves@redhat.com>
645
646         * ada-lang.c (ada_encode): Rename to ..
647         (ada_encode_1): ... this.  Add throw_errors parameter and handle
648         it.
649         (ada_encode): Reimplement.
650         (match_name): Delete, folded into full_name.
651         (resolve_subexp): No longer pass the encoded name to
652         ada_lookup_symbol_list.
653         (should_use_wild_match): Delete.
654         (name_match_type_from_name): New.
655         (ada_lookup_simple_minsym): Use lookup_name_info and the
656         language's symbol_name_matcher_ftype.
657         (add_symbols_from_enclosing_procs, ada_add_local_symbols)
658         (ada_add_block_renamings): Adjust to use lookup_name_info.
659         (ada_lookup_name): New.
660         (add_nonlocal_symbols, ada_add_all_symbols)
661         (ada_lookup_symbol_list_worker, ada_lookup_symbol_list)
662         (ada_iterate_over_symbols): Adjust to use lookup_name_info.
663         (ada_name_for_lookup): Delete.
664         (ada_lookup_encoded_symbol): Construct a verbatim name.
665         (wild_match): Reverse sense of return type.  Use bool.
666         (full_match): Reverse sense of return type.  Inline bits of old
667         match_name here.
668         (ada_add_block_symbols): Adjust to use lookup_name_info.
669         (symbol_completion_match): Delete, folded into...
670         (ada_lookup_name_info::matches): ... .this new method.
671         (symbol_completion_add): Delete.
672         (ada_collect_symbol_completion_matches): Add name_match_type
673         parameter.  Adjust to use lookup_name_info and
674         completion_list_add_name.
675         (get_var_value, ada_add_global_exceptions): Adjust to use
676         lookup_name_info.
677         (ada_get_symbol_name_cmp): Delete.
678         (do_wild_match, do_full_match): New functions.
679         (ada_lookup_name_info::ada_lookup_name_info): New method.
680         (ada_symbol_name_matches, ada_get_symbol_name_matcher): New
681         functions.
682         (ada_language_defn): Install ada_get_symbol_name_matcher.
683         * ada-lex.l (processId): If name starts with '<', copy it
684         verbatim.
685         * block.c (block_iter_match_step, block_iter_match_first)
686         (block_iter_match_next, block_lookup_symbol)
687         (block_lookup_symbol_primary, block_find_symbol): Adjust to use
688         lookup_name_info.
689         * block.h (block_iter_match_first, block_iter_match_next)
690         (ALL_BLOCK_SYMBOLS_WITH_NAME): Adjust to use lookup_name_info.
691         * c-lang.c (c_language_defn, cplus_language_defn)
692         (asm_language_defn, minimal_language_defn): Adjust comments to
693         refer to la_get_symbol_name_matcher.
694         * completer.c (complete_files_symbols)
695         (collect_explicit_location_matches, symbol_completer): Pass a
696         symbol_name_match_type down.
697         * completer.h (class completion_match, completion_match_result):
698         New classes.
699         (completion_tracker::reset_completion_match_result): New method.
700         (completion_tracker::m_completion_match_result): New field.
701         * cp-support.c (make_symbol_overload_list_block): Adjust to use
702         lookup_name_info.
703         (cp_fq_symbol_name_matches, cp_get_symbol_name_matcher): New
704         functions.
705         * cp-support.h (cp_get_symbol_name_matcher): New declaration.
706         * d-lang.c: Adjust comments to refer to
707         la_get_symbol_name_matcher.
708         * dictionary.c (dict_vector) <iter_match_first, iter_match_next>:
709         Adjust to use lookup_name_info.
710         (dict_iter_match_first, dict_iter_match_next)
711         (iter_match_first_hashed, iter_match_next_hashed)
712         (iter_match_first_linear, iter_match_next_linear): Adjust to work
713         with a lookup_name_info.
714         * dictionary.h (dict_iter_match_first, dict_iter_match_next):
715         Likewise.
716         * dwarf2read.c (dw2_lookup_symbol): Adjust to use lookup_name_info.
717         (dw2_map_matching_symbols): Adjust to use symbol_name_match_type.
718         (gdb_index_symbol_name_matcher): New class.
719         (dw2_expand_symtabs_matching) Adjust to use lookup_name_info and
720         gdb_index_symbol_name_matcher.  Accept a NULL symbol_matcher.
721         * f-lang.c (f_collect_symbol_completion_matches): Adjust to work
722         with a symbol_name_match_type.
723         (f_language_defn): Adjust comments to refer to
724         la_get_symbol_name_matcher.
725         * go-lang.c (go_language_defn): Adjust comments to refer to
726         la_get_symbol_name_matcher.
727         * language.c (default_symbol_name_matcher)
728         (language_get_symbol_name_matcher): New functions.
729         (unknown_language_defn, auto_language_defn): Adjust comments to
730         refer to la_get_symbol_name_matcher.
731         * language.h (symbol_name_cmp_ftype): Delete.
732         (language_defn) <la_collect_symbol_completion_matches>: Add match
733         type parameter.
734         <la_get_symbol_name_cmp>: Delete field.
735         <la_get_symbol_name_matcher>: New field.
736         <la_iterate_over_symbols>: Adjust to use lookup_name_info.
737         (default_symbol_name_matcher, language_get_symbol_name_matcher):
738         Declare.
739         * linespec.c (iterate_over_all_matching_symtabs)
740         (iterate_over_file_blocks): Adjust to use lookup_name_info.
741         (find_methods): Add language parameter, and use lookup_name_info
742         and the language's symbol_name_matcher_ftype.
743         (linespec_complete_function): Adjust.
744         (lookup_prefix_sym): Use lookup_name_info.
745         (add_all_symbol_names_from_pspace): Adjust.
746         (find_superclass_methods): Add language parameter and pass it
747         down.
748         (find_method): Pass symbol language down.
749         (find_linespec_symbols): Don't demangle or Ada encode here.
750         (search_minsyms_for_name): Add lookup_name_info parameter.
751         (add_matching_symbols_to_info): Add name_match_type parameter.
752         Use lookup_name_info.
753         * m2-lang.c (m2_language_defn): Adjust comments to refer to
754         la_get_symbol_name_matcher.
755         * minsyms.c: Include <algorithm>.
756         (add_minsym_to_demangled_hash_table): Remove table parameter and
757         add objfile parameter.  Use search_name_hash, and add language to
758         demangled languages vector.
759         (struct found_minimal_symbols): New struct.
760         (lookup_minimal_symbol_mangled, lookup_minimal_symbol_demangled):
761         New functions.
762         (lookup_minimal_symbol): Adjust to use them.  Don't canonicalize
763         input names here.  Use lookup_name_info instead.  Lookup up
764         demangled names once for each language in the demangled names
765         vector.
766         (iterate_over_minimal_symbols): Use lookup_name_info.  Lookup up
767         demangled names once for each language in the demangled names
768         vector.
769         (build_minimal_symbol_hash_tables): Adjust.
770         * minsyms.h (iterate_over_minimal_symbols): Adjust to pass down a
771         lookup_name_info.
772         * objc-lang.c (objc_language_defn): Adjust comment to refer to
773         la_get_symbol_name_matcher.
774         * objfiles.h: Include <vector>.
775         (objfile_per_bfd_storage) <demangled_hash_languages>: New field.
776         * opencl-lang.c (opencl_language_defn): Adjust comment to refer to
777         la_get_symbol_name_matcher.
778         * p-lang.c (pascal_language_defn): Adjust comment to refer to
779         la_get_symbol_name_matcher.
780         * psymtab.c (psym_lookup_symbol): Use lookup_name_info.
781         (match_partial_symbol): Use symbol_name_match_type,
782         lookup_name_info and psymbol_name_matches.
783         (lookup_partial_symbol): Use lookup_name_info.
784         (map_block): Use symbol_name_match_type and lookup_name_info.
785         (psym_map_matching_symbols): Use symbol_name_match_type.
786         (psymbol_name_matches): New.
787         (recursively_search_psymtabs): Use lookup_name_info and
788         psymbol_name_matches.  Rename 'kind' parameter to 'domain'.
789         (psym_expand_symtabs_matching): Use lookup_name_info.  Rename
790         'kind' parameter to 'domain'.
791         * rust-lang.c (rust_language_defn): Adjust comment to refer to
792         la_get_symbol_name_matcher.
793         * symfile-debug.c (debug_qf_map_matching_symbols)
794         (debug_qf_map_matching_symbols): Use symbol_name_match_type.
795         (debug_qf_expand_symtabs_matching): Use lookup_name_info.
796         * symfile.c (expand_symtabs_matching): Use lookup_name_info.
797         * symfile.h (quick_symbol_functions) <map_matching_symbols>:
798         Adjust to use symbol_name_match_type.
799         <expand_symtabs_matching>: Adjust to use lookup_name_info.
800         (expand_symtabs_matching): Adjust to use lookup_name_info.
801         * symmisc.c (maintenance_expand_symtabs): Use
802         lookup_name_info::match_any ().
803         * symtab.c (symbol_matches_search_name): New.
804         (eq_symbol_entry): Adjust to use lookup_name_info and the
805         language's matcher.
806         (demangle_for_lookup_info::demangle_for_lookup_info): New.
807         (lookup_name_info::match_any): New.
808         (iterate_over_symbols, search_symbols): Use lookup_name_info.
809         (compare_symbol_name): Add language, lookup_name_info and
810         completion_match_result parameters, and use them.
811         (completion_list_add_name): Make extern.  Add language and
812         lookup_name_info parameters.  Use them.
813         (completion_list_add_symbol, completion_list_add_msymbol)
814         (completion_list_objc_symbol): Add lookup_name_info parameters and
815         adjust.  Pass down language.
816         (completion_list_add_fields): Add lookup_name_info parameters and
817         adjust.  Pass down language.
818         (add_symtab_completions): Add lookup_name_info parameters and
819         adjust.
820         (default_collect_symbol_completion_matches_break_on): Add
821         name_match_type parameter, and use it.  Use lookup_name_info.
822         (default_collect_symbol_completion_matches)
823         (collect_symbol_completion_matches): Add name_match_type
824         parameter, and pass it down.
825         (collect_symbol_completion_matches_type): Adjust.
826         (collect_file_symbol_completion_matches): Add name_match_type
827         parameter, and use lookup_name_info.
828         * symtab.h: Include <string> and "common/gdb_optional.h".
829         (enum class symbol_name_match_type): New.
830         (class ada_lookup_name_info): New.
831         (struct demangle_for_lookup_info): New.
832         (class lookup_name_info): New.
833         (symbol_name_matcher_ftype): New.
834         (SYMBOL_MATCHES_SEARCH_NAME): Use symbol_matches_search_name.
835         (symbol_matches_search_name): Declare.
836         (MSYMBOL_MATCHES_SEARCH_NAME): Delete.
837         (default_collect_symbol_completion_matches)
838         (collect_symbol_completion_matches)
839         (collect_file_symbol_completion_matches): Add name_match_type
840         parameter.
841         (iterate_over_symbols): Use lookup_name_info.
842         (completion_list_add_name): Declare.
843         * utils.c (enum class strncmp_iw_mode): Moved to utils.h.
844         (strncmp_iw_with_mode): Now extern.
845         * utils.h (enum class strncmp_iw_mode): Moved from utils.c.
846         (strncmp_iw_with_mode): Declare.
847
848 2017-11-08  Keith Seitz  <keiths@redhat.com>
849             Pedro Alves  <palves@redhat.com>
850
851         * ada-lang.c (ada_language_defn): Install
852         default_search_name_hash.
853         * buildsym.c (struct buildsym_compunit): <language>: New field.
854         (finish_block_internal): Pass language when creating dictionaries.
855         (start_buildsym_compunit, start_symtab): New language parameters.
856         Use them.
857         (restart_symtab): Pass down compilation unit's language.
858         * buildsym.h (enum language): Forward declare.
859         (start_symtab): New 'language' parameter.
860         * c-lang.c (c_language_defn, cplus_language_defn)
861         (asm_language_defn, minimal_language_defn): Install
862         default_search_name_hash.
863         * coffread.c (coff_start_symtab): Adjust.
864         * d-lang.c (d_language_defn): Install default_search_name_hash.
865         * dbxread.c (struct symloc): Add 'pst_language' field.
866         (PST_LANGUAGE): Define.
867         (start_psymtab, read_ofile_symtab): Use it.
868         (process_one_symbol): New 'language' parameter.  Pass it down.
869         * dictionary.c (struct dictionary) <language>: New field.
870         (DICT_LANGUAGE): Define.
871         (dict_create_hashed, dict_create_hashed_expandable)
872         (dict_create_linear, dict_create_linear_expandable): New parameter
873         'language'.  Set the dictionary's language.
874         (iter_match_first_hashed): Adjust to rename.
875         (insert_symbol_hashed): Assert we don't see mismatching
876         languages.  Adjust to rename.
877         (dict_hash): Rename to ...
878         (default_search_name_hash): ... this and make extern.
879         * dictionary.h (struct language_defn): Forward declare.
880         (dict_create_hashed): New parameter 'language'.
881         * dwarf2read.c (dwarf2_start_symtab): Pass down language.
882         * f-lang.c (f_language_defn): Install default_search_name_hash.
883         * go-lang.c (go_language_defn): Install default_search_name_hash.
884         * jit.c (finalize_symtab): Pass compunit's language to dictionary
885         creation.
886         * language.c (unknown_language_defn, auto_language_defn):
887         * language.h (language_defn::la_search_name_hash): New field.
888         (default_search_name_hash): Declare.
889         * m2-lang.c (m2_language_defn): Install default_search_name_hash.
890         * mdebugread.c (new_block): New parameter 'language'.
891         * mdebugread.c (parse_symbol): Pass symbol language to block
892         allocation.
893         (psymtab_to_symtab_1): Pass down language.
894         (new_symtab): Pass compunit's language to block allocation.
895         * objc-lang.c (objc_language_defn): Install
896         default_search_name_hash.
897         * opencl-lang.c (opencl_language_defn):
898         * p-lang.c (pascal_language_defn): Install
899         default_search_name_hash.
900         * rust-lang.c (rust_language_defn): Install
901         default_search_name_hash.
902         * stabsread.h (enum language): Forward declare.
903         (process_one_symbol): Add 'language' parameter.
904         * symtab.c (search_name_hash): New function.
905         * symtab.h (search_name_hash): Declare.
906         * xcoffread.c (read_xcoff_symtab): Pass language to start_symtab.
907
908 2017-11-08  Pedro Alves  <palves@redhat.com>
909
910         * cp-name-parser.y (main): Don't initialize extra_chars.
911
912 2017-11-07  Tom Tromey  <tom@tromey.com>
913
914         * event-top.h (command_handler): Constify.
915         * record-full.c (cmd_record_full_start): Update.
916         * thread.c (thread_apply_all_command): Update.
917         * printcmd.c (eval_command): Update.
918         * mi/mi-main.c (mi_execute_cli_command): Update.
919         (mi_execute_async_cli_command): Update.
920         * tui/tui-stack.c (tui_update_command): Update.
921         * cli/cli-interp.c (safe_execute_command): Constify.
922         * record.c (record_start): Update.
923         (record_start, record_stop, cmd_record_start): Update.
924         * record-btrace.c (cmd_record_btrace_bts_start): Update.
925         (cmd_record_btrace_pt_start): Update.
926         (cmd_record_btrace_start): Update.
927         (cmd_record_btrace_start): Update.
928         * reverse.c (exec_reverse_once): Update.
929         * python/python.c (execute_gdb_command): Don't copy the command.
930         * event-top.c (command_line_handler): Update.
931         (command_handler): Constify.
932         * defs.h (deprecated_call_command_hook): Constify.
933         * cli/cli-script.h (execute_user_command): Constify.
934         * cli/cli-script.c (execute_user_command): Constify.
935         (execute_cmd_pre_hook, execute_cmd_post_hook): Constify.
936         (enum command_control_type): Update.
937         * main.c (catch_command_errors): Remove non-const overload.
938         (catch_command_errors_ftype): Remove.
939         * python/py-cmd.c (cmdpy_function): Constify.
940         * guile/scm-cmd.c (cmdscm_function): Constify.
941         * cli/cli-dump.c (call_dump_func): Constify.
942         * cli/cli-decode.c (do_const_cfunc): Constify.
943         (do_sfunc): Constify.
944         (cmd_func): Constify.
945         * gdbcmd.h (execute_command, execute_command_to_string): Constify.
946         * top.h (execute_command): Constify.
947         * top.c (execute_command): Constify.
948         (execute_command_to_string): Constify.
949         (deprecated_call_command_hook): Constify.
950         * command.h (cmd_func): Constify.
951         * cli/cli-decode.h (struct cmd_list_element) <func>: Constify.
952
953 2017-11-07  Tom Tromey  <tom@tromey.com>
954
955         * ada-lang.c (catch_ada_exception_command): Constify.
956         (catch_assert_command): Constify.
957         * break-catch-throw.c (catch_catch_command, catch_throw_command)
958         (catch_rethrow_command): Constify.
959         (catch_exception_command_1): Constify.
960         * breakpoint.h (add_catch_command): Constify.
961         * break-catch-syscall.c (catch_syscall_command_1): Constify.
962         (catch_syscall_split_args): Constify.
963         * break-catch-sig.c (catch_signal_command): Constify.
964         (catch_signal_split_args): Constify.
965         * cli/cli-decode.h (struct cmd_list_element) <function>: Use
966         cmd_const_sfunc_ftype.
967         * cli/cli-decode.c (add_setshow_cmd_full): Constify.
968         (add_setshow_enum_cmd, add_setshow_auto_boolean_cmd)
969         (add_setshow_boolean_cmd, add_setshow_filename_cmd)
970         (add_setshow_string_cmd, struct cmd_list_element)
971         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
972         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
973         (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd):
974         Constify.
975         (set_cmd_sfunc): Constify.
976         (empty_sfunc): Constify.
977         * command.h (add_setshow_enum_cmd, add_setshow_auto_boolean_cmd)
978         (add_setshow_boolean_cmd, add_setshow_filename_cmd)
979         (add_setshow_string_cmd, add_setshow_string_noescape_cmd)
980         (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
981         (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
982         (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
983         Constify.
984         (set_cmd_sfunc): Constify.
985         (cmd_sfunc_ftype): Remove.
986         * compile/compile.c (set_compile_args): Constify.
987         * infrun.c (set_disable_randomization): Constify.
988         * infcmd.c (set_args_command, set_cwd_command): Constify.
989         * breakpoint.c (set_condition_evaluation_mode): Constify.
990         (add_catch_command): Constify.
991         (catch_fork_command_1, catch_exec_command_1)
992         (catch_load_command_1, catch_unload_command_1): Constify.
993         (catch_load_or_unload): Constify.
994         * guile/scm-param.c (pascm_set_func): Constify.
995         (add_setshow_generic): Constify.
996         * python/py-param.c (get_set_value): Constify.
997         * top.h (set_verbose): Constify.
998         * tui/tui-win.c (tui_set_var_cmd): Constify.
999         * mi/mi-main.c (set_mi_async_command): Constify.
1000         * cli/cli-logging.c (set_logging_overwrite)
1001         (set_logging_redirect): Constify.
1002         * value.c (set_max_value_size): Constify.
1003         * valprint.c (set_input_radix, set_output_radix): Constify.
1004         * utils.c (set_width_command, set_height_command): Constify.
1005         * typeprint.c (set_print_type_methods, set_print_type_typedefs): Constify.
1006         * tracepoint.c (set_disconnected_tracing)
1007         (set_circular_trace_buffer, set_trace_buffer_size)
1008         (set_trace_user, set_trace_notes, set_trace_stop_notes): Constify.
1009         * top.c (set_history_size_command, set_verbose, set_editing)
1010         (set_gdb_datadir, set_history_filename): Constify.
1011         * target.c (set_targetdebug, maint_set_target_async_command)
1012         (maint_set_target_non_stop_command, set_target_permissions)
1013         (set_write_memory_permission): Constify.
1014         (open_target): Constify.
1015         * target-descriptions.c (set_tdesc_filename_cmd): Constify.
1016         * target-dcache.c (set_stack_cache, set_code_cache): Constify.
1017         * symtab.c (set_symbol_cache_size_handler): Constify.
1018         * symfile.c (set_ext_lang_command): Constify.
1019         * symfile-debug.c (set_debug_symfile): Constify.
1020         * source.c (set_directories_command): Constify.
1021         * solib.c (reload_shared_libraries, gdb_sysroot_changed): Constify.
1022         * serial.c (set_parity): Constify.
1023         * rs6000-tdep.c (powerpc_set_soft_float, powerpc_set_vector_abi): Constify.
1024         * remote.c (set_remote_exec_file, set_remotebreak)
1025         (set_remote_protocol_Z_packet_cmd, set_range_stepping): Constify.
1026         * record.c (set_record_insn_history_size)
1027         (set_record_call_history_size): Constify.
1028         * record-full.c (set_record_full_insn_max_num): Constify.
1029         * proc-api.c (set_procfs_trace_cmd, set_procfs_file_cmd): Constify.
1030         * osabi.c (set_osabi): Constify.
1031         * mips-tdep.c (set_mips64_transfers_32bit_regs)
1032         (reinit_frame_cache_sfunc, mips_abi_update): Constify.
1033         * maint.c (maintenance_set_profile_cmd): Constify.
1034         * linux-thread-db.c (set_libthread_db_search_path): Constify.
1035         * language.c (set_language_command, set_range_command)
1036         (set_case_command): Constify.
1037         * infrun.c (set_non_stop, set_observer_mode)
1038         (set_stop_on_solib_events, set_schedlock_func)
1039         (set_exec_direction_func): Constify.
1040         * infcmd.c (set_inferior_tty_command): Constify.
1041         * disasm.c (set_disassembler_options_sfunc): Constify.
1042         * demangle.c (set_demangling_command): Constify.
1043         * dcache.c (set_dcache_size, set_dcache_line_size): Constify.
1044         * cris-tdep.c (set_cris_version, set_cris_mode)
1045         (set_cris_dwarf2_cfi): Constify.
1046         * corefile.c (set_gnutarget_command): Constify.
1047         * charset.c (set_host_charset_sfunc, set_target_charset_sfunc)
1048         (set_target_wide_charset_sfunc): Constify.
1049         * breakpoint.c (update_dprintf_commands): Constify.
1050         * auto-load.c (set_auto_load_dir, set_auto_load_safe_path): Constify.
1051         * arm-tdep.c (set_fp_model_sfunc, arm_set_abi)
1052         (set_disassembly_style_sfunc): Constify.
1053         * arch-utils.c (set_endian, set_architecture): Constify.
1054         * alpha-tdep.c (reinit_frame_cache_sfunc): Constify.
1055         * agent.c (set_can_use_agent): Constify.
1056
1057 2017-11-07  Tom Tromey  <tom@tromey.com>
1058
1059         * go32-nat.c (go32_sysinfo, go32_sldt, go32_sgdt, go32_sidt)
1060         (go32_pde, go32_pte, go32_pte_for_address): Constify.
1061         * gnu-nat.c (_parse_bool_arg, show_thread_default_pause_cmd)
1062         (set_thread_default_pause_cmd, set_thread_default_run_cmd)
1063         (show_thread_default_run_cmd, set_thread_default_detach_sc_cmd)
1064         (parse_int_arg, show_thread_default_detach_sc_cmd)
1065         (set_signals_cmd, show_signals_cmd, set_sig_thread_cmd)
1066         (show_sig_thread_cmd, set_stopped_cmd, show_stopped_cmd)
1067         (set_exceptions_cmd, show_exceptions_cmd, set_task_pause_cmd)
1068         (show_task_pause_cmd, set_task_detach_sc_cmd)
1069         (show_task_detach_sc_cmd, set_task_exc_port_cmd)
1070         (set_noninvasive_cmd, set_thread_pause_cmd)
1071         (show_thread_pause_cmd, set_thread_run_cmd, show_thread_run_cmd)
1072         (set_thread_detach_sc_cmd, show_thread_detach_sc_cmd)
1073         (set_thread_exc_port_cmd, thread_takeover_sc_cmd): Constify.
1074         * windows-nat.c (display_selectors): Constify.
1075         * cli/cli-decode.h (struct cmd_list_element) <function>: Remove
1076         non-const "cfunc".
1077         * cli/cli-decode.c (set_cmd_cfunc): Remove non-const overload.
1078         (cmd_cfunc_eq): Likewise.
1079         (struct cmd_list_element): Likewise.
1080         (do_cfunc): Remove.
1081         (cli_user_command_p): Update.
1082         * command.h (add_cmd): Remove non-const overload.
1083         (cmd_cfunc_ftype): Remove typedef.
1084         (cmd_cfunc_eq): Remove non-const overload.
1085         * value.c (show_values): Constify.
1086         * thread.c (thread_apply_all_command): Constify.
1087         * symfile.c (load_command): Constify.
1088         * source.c (directory_command): Constify.
1089         * maint.c (maintenance_internal_error)
1090         (maintenance_demangler_warning, maintenance_space_display)
1091         (maintenance_print_architecture, maintenance_translate_address)
1092         (maintenance_info_selftests, maintenance_internal_warning):
1093         Constify.
1094         * breakpoint.c (disable_trace_command, enable_trace_command):
1095         Constify.
1096         * auto-load.c (info_auto_load_local_gdbinit, add_auto_load_dir):
1097         Constify.
1098         (add_auto_load_safe_path): Constify.
1099         * guile/scm-auto-load.c (info_auto_load_guile_scripts): Constify.
1100         * top.h (show_commands): Constify.
1101         * linux-thread-db.c (info_auto_load_libthread_db): Constify.
1102         * sparc64-tdep.c (adi_examine_command): Constify.
1103         (adi_assign_command): Constify.
1104
1105 2017-11-07  Tom Tromey  <tom@tromey.com>
1106
1107         * frame.h (info_locals_command, info_args_command): Constify.
1108         * auto-load.h (auto_load_info_scripts): Constify.
1109         * inferior.h (registers_info): Constify.
1110         * copying.c: Rebuild.
1111         * copying.awk: Constify generated commands.
1112         * auto-load.c (auto_load_info_scripts)
1113         (info_auto_load_gdb_scripts): Constify.
1114         * cli/cli-decode.c (struct cmd_list_element): Take a
1115         cmd_const_cfunc_ftype.
1116         * command.h (add_info): Take a cmd_const_cfunc_ftype.
1117         * tui/tui-win.c (tui_all_windows_info): Constify.
1118         * python/py-auto-load.c (info_auto_load_python_scripts):
1119         Constify.
1120         * cli/cli-cmds.c (show_command): Remove non-const overload.
1121         * tracepoint.c (info_tvariables_command, info_scope_command):
1122         Constify.
1123         (info_static_tracepoint_markers_command): Constify.
1124         * thread.c (info_threads_command): Constify.
1125         (print_thread_info_1): Constify.
1126         * target.c (info_target_command): Constify.
1127         * symtab.c (info_sources_command, info_functions_command)
1128         (info_types_command): Constify.
1129         (info_variables_command): Remove non-const overload.
1130         * symfile.c (info_ext_lang_command): Constify.
1131         * stack.c (info_frame_command, info_locals_command)
1132         (info_args_command): Constify.
1133         (backtrace_command): Remove non-const overload.
1134         * source.c (info_source_command, info_line_command): Constify.
1135         * solib.c (info_sharedlibrary_command): Constify.
1136         * skip.c (info_skip_command): Constify.
1137         * ser-go32.c (info_serial_command): Constify.
1138         * reverse.c (info_bookmarks_command): Constify.
1139         * printcmd.c (info_symbol_command, info_address_command)
1140         (info_display_command): Constify.
1141         * osdata.c (info_osdata_command): Constify.
1142         * objc-lang.c (info_selectors_command, info_classes_command):
1143         Constify.
1144         * nto-procfs.c (procfs_pidlist, procfs_meminfo): Constify.
1145         * memattr.c (info_mem_command): Constify.
1146         * macrocmd.c (info_macro_command, info_macros_command): Constify.
1147         * linux-fork.c (info_checkpoints_command): Constify.
1148         * infrun.c (info_signals_command): Constify.
1149         * inflow.c (info_terminal_command): Constify.
1150         * inferior.c (info_inferiors_command): Constify.
1151         (print_inferior): Constify.
1152         * infcmd.c (info_program_command, info_all_registers_command)
1153         (info_registers_command, info_vector_command)
1154         (info_float_command): Constify.
1155         (registers_info): Constify.
1156         * gnu-nat.c (info_send_rights_cmd, info_recv_rights_cmd)
1157         (info_port_sets_cmd, info_dead_names_cmd, info_port_rights_cmd):
1158         Constify.
1159         * f-valprint.c (info_common_command): Constify.
1160         * dcache.c (info_dcache_command): Constify.
1161         (dcache_info_1): Constify.
1162         * darwin-nat-info.c (info_mach_tasks_command)
1163         (info_mach_task_command, info_mach_ports_command)
1164         (info_mach_port_command, info_mach_threads_command)
1165         (info_mach_thread_command, info_mach_regions_command)
1166         (info_mach_regions_recurse_command, info_mach_region_command)
1167         (info_mach_exceptions_command): Constify.
1168         (get_task_from_args): Constify.
1169         * cp-support.c (info_vtbl_command): Constify.
1170         * breakpoint.c (info_watchpoints_command)
1171         (info_tracepoints_command): Constify.
1172         (info_breakpoints_command): Remove non-const overload.
1173         * avr-tdep.c (avr_io_reg_read_command): Constify.
1174         * auxv.c (info_auxv_command): Constify.
1175         * ada-tasks.c (info_tasks_command): Constify.
1176         (info_task): Constify.
1177         * ada-lang.c (info_exceptions_command): Constify.
1178
1179 2017-11-07  Tom Tromey  <tom@tromey.com>
1180
1181         * solib.h (no_shared_libraries): Constify.
1182         * frame.h (return_command): Constify.
1183         * cli/cli-cmds.h (quit_command): Constify.
1184         * top.h (quit_command, execute_command): Constify.
1185         * target.h (flash_erase_command): Constify.
1186         * inferior.h (set_inferior_args, attach_command): Constify.
1187         * tracepoint.h (start_tracing, stop_tracing): Constify.
1188         * breakpoint.h (break_command, tbreak_command)
1189         (hbreak_command_wrapper, thbreak_command_wrapper)
1190         (rbreak_command_wrapper, watch_command_wrapper)
1191         (awatch_command_wrapper, rwatch_command_wrapper)
1192         (get_tracepoint_by_number): Constify.
1193         * symtab.c (info_variables_command, rbreak_command)
1194         (symtab_symbol_info): Constify.
1195         (info_variables_command): Add non-const overload.
1196         * top.c (dont_repeat_command): Constify.
1197         * breakpoint.c (ignore_command, commands_command)
1198         (condition_command, tbreak_command, hbreak_command)
1199         (thbreak_command, clear_command, break_command)
1200         (info_breakpoints_command, watch_command, rwatch_command)
1201         (awatch_command, trace_command, ftrace_command, strace_command)
1202         (trace_pass_command, break_range_command, dprintf_command)
1203         (agent_printf_command, get_tracepoint_by_number)
1204         (watch_maybe_just_location, trace_pass_command): Constify.
1205         (info_breakpoints_command): Add non-const overload.
1206         * tracefile.c (tsave_command): Constify.
1207         * infcmd.c (attach_command, disconnect_command, signal_command)
1208         (queue_signal_command, stepi_command, nexti_command)
1209         (finish_command, next_command, step_command, until_command)
1210         (advance_command, jump_command, continue_command, run_command)
1211         (start_command, starti_command, interrupt_command)
1212         (run_command_1, set_inferior_args, step_1): Constify.
1213         * inferior.c (add_inferior_command, remove_inferior_command)
1214         (clone_inferior_command): Constify.
1215         * linux-fork.c (checkpoint_command, restart_command): Constify.
1216         * windows-nat.c (signal_event_command): Constify.
1217         * guile/guile.c (guile_repl_command, guile_command): Constify.
1218         * printcmd.c (x_command, display_command, printf_command)
1219         (output_command, set_command, call_command, print_command)
1220         (eval_command): Constify.
1221         (non_const_set_command): Remove.
1222         (_initialize_printcmd): Update.
1223         * source.c (forward_search_command, reverse_search_command):
1224         Constify.
1225         * jit.c (jit_reader_load_command, jit_reader_unload_command):
1226         Constify.
1227         * infrun.c (handle_command): Constify.
1228         * memattr.c (mem_command): Constify.
1229         * stack.c (return_command, up_command, up_silently_command)
1230         (down_command, down_silently_command, frame_command)
1231         (backtrace_command, func_command, backtrace_command_1): Constify.
1232         (backtrace_command): Add non-const overload.
1233         * remote-sim.c (simulator_command): Constify.
1234         * exec.c (set_section_command): Constify.
1235         * tracepoint.c (tdump_command, trace_variable_command)
1236         (tstatus_command, tstop_command, tstart_command)
1237         (end_actions_pseudocommand, while_stepping_pseudocommand)
1238         (collect_pseudocommand, teval_pseudocommand, actions_command)
1239         (start_tracing, stop_tracing): Constify.
1240         * value.c (init_if_undefined_command): Constify.
1241         * tui/tui-stack.c (tui_update_command): Constify.
1242         * tui/tui-win.c (tui_refresh_all_command)
1243         (tui_set_tab_width_command, tui_set_win_height_command)
1244         (tui_set_focus_command, tui_scroll_forward_command)
1245         (tui_scroll_backward_command, tui_scroll_left_command)
1246         (tui_scroll_right_command, parse_scrolling_args, tui_set_focus)
1247         (tui_set_win_height): Constify.
1248         * tui/tui-layout.c (tui_layout_command): Constify.
1249         * procfs.c (proc_trace_syscalls, proc_trace_sysentry_cmd)
1250         (proc_trace_sysexit_cmd, proc_untrace_sysentry_cmd)
1251         (proc_untrace_sysexit_cmd): Constify.
1252         * remote.c (threadlist_test_cmd, threadinfo_test_cmd)
1253         (threadset_test_cmd, threadlist_update_test_cmd)
1254         (threadalive_test): Constify.
1255         * objc-lang.c (print_object_command): Constify.
1256         * command.h (add_com): Constify.
1257         * cli/cli-dump.c (restore_command): Constify.
1258         * cli/cli-cmds.c (pwd_command, echo_command, quit_command)
1259         (help_command, complete_command, shell_command, edit_command)
1260         (list_command, disassemble_command, make_command)
1261         (apropos_command, alias_command): Constify.
1262         * cli/cli-script.c (document_command, define_command)
1263         (while_command, if_command, validate_comname): Constify.
1264         * cli/cli-decode.c (struct cmd_list_element): Change type of
1265         "fun".
1266         * target.c (do_monitor_command, flash_erase_command): Constify.
1267         * regcache.c (reg_flush_command): Constify.
1268         * reverse.c (reverse_step, reverse_next, reverse_stepi)
1269         (reverse_nexti, reverse_continue, reverse_finish)
1270         (save_bookmark_command, goto_bookmark_command)
1271         (exec_reverse_once): Constify.
1272         * python/python.c (python_interactive_command, python_command):
1273         Constify.
1274         * typeprint.c (ptype_command, whatis_command, whatis_exp):
1275         Constify.
1276         * solib.c (sharedlibrary_command, no_shared_libraries): Constify.
1277         * gcore.c (gcore_command): Constify.
1278
1279 2017-11-07  Tom Tromey  <tom@tromey.com>
1280
1281         * printcmd.c (x_command): Call set_repeat_arguments.
1282         * cli/cli-cmds.c (list_command): Call set_repeat_arguments.
1283         * top.c (repeat_arguments): New global.
1284         (set_repeat_arguments): New function.
1285         (execute_command): Handle repeat_arguments.
1286         (show_commands): Calls set_repeat_arguments.
1287         * command.h (set_repeat_arguments): Declare.
1288
1289 2017-11-07  Tom Tromey  <tom@tromey.com>
1290
1291         * stack.c (backtrace_command): Use std::string.
1292         (backtrace_command_1): Make "count_exp" const.
1293
1294 2017-11-07  Tom Tromey  <tom@tromey.com>
1295
1296         * source.c (directory_switch, mod_path, add_path): Constify.
1297         * defs.h (add_path, mod_path, directory_switch): Constify.
1298         * mi/mi-cmd-env.c (env_mod_path): Constify.
1299
1300 2017-11-07  Tom Tromey  <tom@tromey.com>
1301
1302         * infcmd.c (strip_bg_char): Return gdb::unique_xmalloc_ptr.
1303         (run_command_1, continue_command, step_1, jump_command)
1304         (signal_command, until_command, advance_command, finish_command)
1305         (attach_command): Update.
1306
1307 2017-11-07  Tom Tromey  <tom@tromey.com>
1308
1309         * command.h (set_cmd_cfunc): Don't declare.
1310         * cli/cli-decode.c (set_cmd_cfunc): Now static.
1311
1312 2017-11-07  Tom Tromey  <tom@tromey.com>
1313
1314         * stack.c (select_frame_command): Constify.
1315         * cli/cli-decode.c (add_com_suppress_notification): Constify.
1316         * command.h (add_com_suppress_notification): Constify.
1317
1318 2017-11-07  Tom Tromey  <tom@tromey.com>
1319
1320         * breakpoint.c (stop_command): Constify.
1321         * cli/cli-decode.c (struct cmd_list_element): Constify.
1322         * command.h (add_abbrev_prefix_cmd): Constify.
1323
1324 2017-11-07  Pedro Alves  <palves@redhat.com>
1325
1326         * breakpoint.c (extract_bp_kind): New enum.
1327         (extract_bp_num, extract_bp_or_bp_range): New functions, partially
1328         factored out from ...
1329         (extract_bp_number_and_location): ... here.
1330         * cli/cli-utils.c (get_number_trailer): Handle '-$variable'.
1331
1332 2017-11-07  Pedro Alves  <palves@redhat.com>
1333
1334         * breakpoint.c (extract_bp_number_and_location): Change return
1335         type to void.  Throw error instead of warning.
1336         (enable_disable_command): Adjust.
1337
1338 2017-11-07  Xavier Roirand  <roirand@adacore.com>
1339             Pedro Alves  <palves@redhat.com>
1340
1341         * breakpoint.c (map_breakpoint_number_range): New, factored out
1342         from ...
1343         (map_breakpoint_numbers): ... here.
1344         (find_location_by_number): Change parameters from string to
1345         breakpoint number and location.
1346         (extract_bp_number_and_location): New function.
1347         (enable_disable_bp_num_loc)
1348         (enable_disable_breakpoint_location_range)
1349         (enable_disable_command): New functions, factored out ...
1350         (enable_command, disable_command): ... these functions, and
1351         adjusted to support ranges.
1352         * NEWS: Document enable/disable breakpoint location range feature.
1353
1354 2017-11-06  Luis Machado  <luis.machado@linaro.org>
1355
1356         * MAINTAINERS (Write After Approval): Update my e-mail address.
1357
1358 2017-11-06  Pedro Alves  <palves@redhat.com>
1359
1360         * gnu-nat.c (gnu_terminal_init): Delete.
1361         (gnu_target): Don't install gnu_terminal_init.
1362         * inflow.c (child_terminal_init_with_pgrp): Delete, merged with ...
1363         (child_terminal_init): ... this function.
1364
1365 2017-11-06  Pedro Alves  <palves@redhat.com>
1366
1367         * common/common.m4 (GDB_AC_COMMON): No longer check termio.h nor
1368         sgtty.h.
1369         * config.in, configure: Regenerate.
1370
1371 2017-11-06  Pedro Alves  <palves@redhat.com>
1372
1373         * event-top.c: Check SIGTSTP instead of STOP_SIGNAL thoughout.
1374         (async_init_signals): Adjust.
1375         (handle_stop_sig): Rename to ...
1376         (handle_sigtstp): ... this.
1377         (async_stop_sig): Rename to ...
1378         (async_sigtstp_handler): ... this, and delete STOP_SIGNAL !=
1379         SIGTSTP path.
1380         * event-top.h: Move signal.h include to the top.  Check SIGTSTP
1381         instead of STOP_SIGNAL thoughout.
1382         (handle_stop_sig): Rename to ...
1383         (handle_sigtstp): ... this.
1384         * top.c (command_line_input): Replace STOP_SIGNAL -> SIGTSTP.
1385
1386 2017-11-06  Pedro Alves  <palves@redhat.com>
1387
1388         * inflow.c (child_terminal_inferior, child_terminal_ours_1): No
1389         longer set flags twice in row.
1390
1391 2017-11-06  Pedro Alves  <palves@redhat.com>
1392
1393         * Makefile.in (SER_HARDWIRE): Update comment.
1394         (HFILES_NO_SRCDIR): Remove gdb_termios.h.
1395         * common/gdb_termios.h: Delete file.
1396         * common/job-control.c: Include termios.h and unistd.h instead of
1397         gdb_termios.h.
1398         (gdb_setpgid): Remove HAVE_TERMIOS || TIOCGPGRP preprocessor
1399         check.
1400         (have_job_control): Check HAVE_TERMIOS_H instead of HAVE_TERMIOS.
1401         Remove sgtty code.
1402         * configure.ac: No longer check for termio.h and sgtty.h.
1403         * configure: Regenerate.
1404         * inflow.c: Include termios.h instead of gdb_termios.h.  Replace
1405         PROCESS_GROUP_TYPE checks with HAVE_TERMIOS_H checks throughout.
1406         Replace PROCESS_GROUP_TYPE references with pid_t references
1407         throughout.
1408         (gdb_getpgrp): Delete.
1409         (set_initial_gdb_ttystate): Use tcgetpgrp instead of gdb_getpgrp.
1410         (child_terminal_inferior): Remove comment.  Remove sgtty code.
1411         (child_terminal_ours_1): Use tcgetpgrp directly instead of
1412         gdb_getpgrp.  Use serial_set_tty_state instead aof
1413         serial_noflush_set_tty_state.  Remove sgtty code.
1414         * inflow.h: Include unistd.h instead of gdb_termios.h.  Replace
1415         PROCESS_GROUP_TYPE check with HAVE_TERMIOS_H check.
1416         (inferior_process_group): Now returns pid_t.
1417         * ser-base.c (ser_base_noflush_set_tty_state): Delete.
1418         * ser-base.h (ser_base_noflush_set_tty_state): Delete.
1419         * ser-event.c (serial_event_ops): Update.
1420         * ser-go32.c (dos_noflush_set_tty_state): Delete.
1421         (dos_ops): Update.
1422         * ser-mingw.c (hardwire_ops, tty_ops, pipe_ops, tcp_ops): Update.
1423         * ser-pipe.c (pipe_ops): Update.
1424         * ser-tcp.c (tcp_ops): Update.
1425         * ser-unix.c: Include termios.h instead of gdb_termios.h.  Remove
1426         HAVE_TERMIOS checks.
1427         [HAVE_TERMIO] (struct hardwire_ttystate): Delete.
1428         [HAVE_SGTTY] (struct hardwire_ttystate): Delete.
1429         (get_tty_state, set_tty_state): Drop termio and sgtty code, and
1430         assume termios.
1431         (hardwire_noflush_set_tty_state): Delete.
1432         (hardwire_print_tty_state, hardwire_drain_output)
1433         (hardwire_flush_output, hardwire_flush_input)
1434         (hardwire_send_break, hardwire_raw, hardwire_setbaudrate)
1435         (hardwire_setstopbits, hardwire_setparity): Drop termio and sgtty
1436         code, and assume termios.
1437         (hardwire_ops): Update.
1438         (_initialize_ser_hardwire): Remove HAVE_TERMIOS check.
1439         * serial.c (serial_noflush_set_tty_state): Delete.
1440         * serial.h (serial_noflush_set_tty_state): Delete.
1441         (serial_ops::noflush_set_tty_state): Delete.
1442
1443 2017-11-06  Ulrich Weigand  <uweigand@de.ibm.com>
1444
1445         * Makefile.in (SFILES): Remove doublest.c and dfp.c.
1446         (HFILES_NO_SRCDIR): Remove doublest.h and dfp.h.
1447         (COMMON_OBS): Remove doublest.o and dfp.o.
1448         Do not build target-float.c (instead of doublest.c)
1449         with -Wformat-nonliteral.
1450
1451         * doublest.c: Remove file.
1452         * doublest.h: Remove file.
1453         * dfp.c: Remove file.
1454         * dfp.h: Remove file.
1455
1456         * target-float.c: Do not include "doublest.h" and "dfp.h".
1457         (DOUBLEST): Move here from doublest.h.
1458         (enum float_kind): Likewise.
1459         (FLOATFORMAT_CHAR_BIT): Likewise.
1460         (FLOATFORMAT_LARGEST_BYTES): Likewise.
1461         (floatformat_totalsize_bytes): Move here from doublest.c.  Make static.
1462         (floatformat_precision): Likewise.
1463         (floatformat_normalize_byteorder, get_field, put_field): Likewise.
1464         (floatformat_is_negative, floatformat_classify, floatformat_mantissa):
1465         Likewise.
1466         (host_float_format, host_double_format, host_long_double_format):
1467         Likewise.
1468         (floatformat_to_string, floatformat_from_string): Likewise.
1469         (floatformat_to_doublest): Likewise.  Also, inline the original
1470         convert_floatformat_to_doublest.
1471         (floatformat_from_doublest): Likewise.  Also, inline the original
1472         convert_floatformat_from_doublest.
1473
1474         Include "dpd/decimal128.h", "dpd/decimal64.h", and "dpd/decimal32.h".
1475         (MAX_DECIMAL_STRING): Move here from dfp.c.
1476         (match_endianness): Likewise.
1477         (set_decnumber_context, decimal_check_errors): Likewise.
1478         (decimal_from_number, decimal_to_number): Likewise.
1479         (decimal_to_string, decimal_from_string): Likewise.  Make static.
1480         (decimal_from_longest, decimal_from_ulongest): Likewise.
1481         (decimal_to_longest): Likewise.
1482         (decimal_binop, decimal_is_zero, decimal_compare): Likewise.
1483         (decimal_convert): Likewise.
1484
1485 2017-11-06  Ulrich Weigand  <uweigand@de.ibm.com>
1486
1487         * doublest.c: Do not include "gdbtypes.h".
1488         (extract_typed_floating): Remove.
1489         (store_typed_floating): Remove.
1490         (convert_typed_floating): Remove.
1491         * doublest.h (struct type): Remove.
1492         (DOUBLEST_PRINT_FORMAT): Remove.
1493         (DOUBLEST_SCAN_FORMAT): Remove.
1494         (extract_typed_floating): Remove.
1495         (store_typed_floating): Remove.
1496         (convert_typed_floating): Remove.
1497
1498         * dfp.c (decimal_from_doublest): Remove.
1499         (decimal_to_doublest): Remove.
1500         * dfp.h: Do not include "doublest.h".
1501         (decimal_from_doublest): Remove.
1502         (decimal_to_doublest): Remove.
1503
1504         * value.c: Do not include "doublest.h" and "dfp.h".
1505         (value_as_double): Remove.
1506         (unpack_double): Remove.
1507         (value_from_double): Remove.
1508         (value_from_decfloat): Remove.
1509         * value.h: Do not include "doublest.h".
1510         (value_as_double): Remove.
1511         (unpack_double): Remove.
1512         (value_from_double): Remove.
1513         (value_from_decfloat): Remove.
1514
1515 2017-11-06  Ulrich Weigand  <uweigand@de.ibm.com>
1516
1517         * i386-tdep.c: Include "target-float.h".  Do not include "doublest.h".
1518         (i386_extract_return_value): Use target_float_convert.
1519         (i386_store_return_value): Likewise.
1520         * i387-tdep.c (i387_register_to_value): Use target_float_convert.
1521         (i387_value_to_register): Likewise.
1522         * ia64-tdep.c: Include "target-float.h".  Do not include "doublest.h".
1523         (ia64_register_to_value): Use target_float_convert.
1524         (ia64_value_to_register): Likewise.
1525         (ia64_extract_return_value): Likewise.
1526         (ia64_store_return_value): Likewise.
1527         (ia64_push_dummy_call): Likewise.
1528         * m68k-tdep.c: Include "target-float.h".
1529         (m68k_register_to_value): Use target_float_convert.
1530         (m68k_value_to_register): Likewise.
1531         (m68k_svr4_extract_return_value): Likewise.
1532         (m68k_svr4_store_return_value): Likewise.
1533         * ppc-sysv-tdep.c: Include "target-float.h".
1534         (ppc_sysv_abi_push_dummy_call): Use target_float_convert.
1535         (do_ppc_sysv_return_value): Likewise.
1536         (ppc64_sysv_abi_push_freg): Likewise.
1537         (ppc64_sysv_abi_return_value_base): Likewise.
1538         * rs6000-aix-tdep.c: Include "target-float.h".
1539         (rs6000_push_dummy_call): Use target_float_convert.
1540         (rs6000_return_value): Likewise.
1541         * rs6000-lynx178-tdep.c: Include "target-float.h".
1542         (rs6000_lynx178_push_dummy_call): Use target_float_convert.
1543         (rs6000_lynx178_return_value): Likewise.
1544         * rs6000-tdep.c: Include "target-float.h".  Do not include "doublest.h".
1545         (rs6000_register_to_value): Use target_float_convert.
1546         (rs6000_value_to_register): Likewise.
1547         * arm-tdep.c: Include "target-float.h".  Do not include "doublest.h".
1548         (arm_extract_return_value): Use target_float_convert.
1549         (arm_store_return_value): Likewise.
1550         * sh-tdep.c: Include "target-float.h".  Do not include "doublest.h".
1551         (sh_register_convert_to_virtual): Use target_float_convert.
1552         (sh_register_convert_to_raw): Likewise.
1553         * sh64-tdep.c: Include "target-float.h".
1554         (sh64_extract_return_value): Use target_float_convert.
1555         (sh64_register_convert_to_virtual): Likewise.
1556         (sh64_register_convert_to_raw): Likewise.  Fix argument types.
1557
1558 2017-11-06  Ulrich Weigand  <uweigand@de.ibm.com>
1559
1560         * target-float.c (floatformat_to_host_double): New function.
1561         (floatformat_from_host_double): Likewise.
1562         (target_float_to_host_double): Likewise.
1563         (target_float_from_host_double): Likewise.
1564         * target-float.h (target_float_to_host_double): Add prototype.
1565         (target_float_from_host_double): Likewise.
1566
1567         * guile/scm-value.c: Include "target-float.h".
1568         (gdbscm_value_to_real): Use target_float_to_host_double.
1569         Handle integer source values via value_as_long.
1570         * guile/scm-math.c: Include "target-float.h".  Do not include
1571         "doublest.h", "dfp.h", and "expression.h".
1572         (vlscm_convert_typed_number): Use target_float_from_host_double.
1573         (vlscm_convert_number): Likewise.
1574
1575         * python/py-value.c (valpy_float): Use target_float_to_host_double.
1576         (convert_value_from_python): Use target_float_from_host_double.
1577
1578 2017-11-06  Ulrich Weigand  <uweigand@de.ibm.com>
1579
1580         * ada-lang.c (cast_to_fixed): Reimplement in target arithmetic.
1581         (cast_from_fixed): Likewise.
1582         (ada_scaling_type): New function.
1583         (ada_delta): Return value instead of DOUBLEST.  Perform target
1584         arithmetic instead of host arithmetic.
1585         (scaling_factor): Rename to ...
1586         (ada_scaling_factor) ... this.  Make non-static.  Return value instead
1587         of DOUBLEST.  Perform target arithmetic instead of host arithmetic.
1588         (ada_fixed_to_float): Remove.
1589         (ada_float_to_fixed): Remove.
1590         * ada-lang.h (ada_fixed_to_float): Remove.
1591         (ada_float_to_fixed): Remove.
1592         (ada_delta): Return value instead of DOUBLEST.
1593         (ada_scaling_factor): Add prototype.
1594
1595         * ada-typeprint.c: Include "target-float.h".
1596         (print_fixed_point_type): Perform target arithmetic instead of
1597         host arithmetic.
1598         * ada-valprint.c: Include "target-float.h".
1599         (ada_val_print_num): Perform target arithmetic instead of
1600         host arithmetic for fixed-point types.
1601
1602 2017-11-06  Ulrich Weigand  <uweigand@de.ibm.com>
1603
1604         * target-float.c: Include <math.h>.
1605         (floatformat_binop): New function.
1606         (floatformat_compare): Likewise.
1607         (target_float_binop): Likewise.
1608         (target_float_compare): Likewise.
1609         * target-float.h: Include "expression.h".
1610         (target_float_binop): Add prototype.
1611         (target_float_compare): Likewise.
1612
1613         * valarith.c: Do not include "doublest.h" and "dfp.h".
1614         Include "common/byte-vector.h".
1615         (value_args_as_decimal): Remove, replace by ...
1616         (value_args_as_target_float): ... this function.  Handle both
1617         binary and decimal target floating-point formats.
1618         (scalar_binop): Handle both binary and decimal FP using
1619         value_args_as_target_float and target_float_binop.
1620         (value_equal): Handle both binary and decimal FP using
1621         value_args_as_target_float and target_float_compare.
1622         (value_less): Likewise.
1623         (value_pos): Handle all scalar types as simple copy.
1624         (value_neg): Handle all scalar types via BINOP_SUB from 0.
1625         * dfp.c (decimal_binop): Throw error instead of internal_error
1626         when called with an unsupported operation code.
1627
1628 2017-11-06  Ulrich Weigand  <uweigand@de.ibm.com>
1629
1630         * target-float.c (target_float_to_string): New function.
1631         (target_float_from_string): New function.
1632         * target-float.h (target_float_to_string): Add prototype.
1633         (target_float_from_string): Add prototype.
1634
1635         * valprint.c: Include "target-float.h".  Do not include
1636         "doublest.h" and "dfp.h".
1637         (print_floating): Use target_float_to_string.
1638         * printcmd.c: Include "target-float.h".  Do not include "dfp.h".
1639         (printf_floating): Use target_float_to_string.
1640         * i387-tdep.c: Include "target-float.h".  Do not include "doublest.h".
1641         (print_i387_value): Use target_float_to_string.
1642         * mips-tdep.c: Include "target-float.h".
1643         (mips_print_fp_register): Use target_float_to_string.
1644         * sh64-tdep.c: Include "target-float.h".
1645         (sh64_do_fp_register): Use target_float_to_string.
1646
1647         * parse.c: Include "target-float.h".  Do not include
1648         "doublest.h" and "dfp.h".
1649         (parse_float): Use target_float_from_string.
1650         * stabsread.c: Include "target-float.h".  Do not include "doublest.h".
1651         (define_symbol): Use target_float_from_string.
1652         * gdbarch-selftests.c: Include "target-float.h".
1653         (register_to_value_test): Use target_float_from_string.
1654
1655 2017-11-06  Ulrich Weigand  <uweigand@de.ibm.com>
1656
1657         * Makefile.c (SFILES): Add target-float.c.
1658         (HFILES_NO_SRCDIR): Add target-float.h.
1659         (COMMON_OBS): Add target-float.o.
1660         * target-float.h: New file.
1661         * target-float.c: New file.
1662
1663         * doublest.c (floatformat_classify): Fix detection of float_zero.
1664
1665         * gdbtypes.c (is_floating_type): New function.
1666         * gdbtypes.h (is_floating_type): Add prototype.
1667
1668         * value.c: Do not include "floatformat.h".
1669         (unpack_double): Use target_float_is_valid.
1670         (is_floating_value): New function.
1671         * value.h (is_floating_value): Add prototype-
1672
1673         * valarith.c: Include "target-float.h".
1674         (value_logical_not): Use target_float_is_zero.
1675
1676         * python/py-value.c: Include "target-float.h".
1677         (valpy_nonzero): Use target_float_is_zero.
1678
1679 2017-11-04  Tom Tromey  <tom@tromey.com>
1680
1681         * h8300-tdep.c (h8300_push_dummy_call): Use std::vector.
1682
1683 2017-11-04  Tom Tromey  <tom@tromey.com>
1684
1685         * breakpoint.c (set_momentary_breakpoint): Return
1686         breakpoint_up.
1687         (until_break_command): Update.
1688         (new_until_break_fsm): Change argument types to
1689         breakpoint_up.
1690         (set_momentary_breakpoint_at_pc): Return breakpoint_up.
1691         (do_delete_breakpoint_cleanup, make_cleanup_delete_breakpoint):
1692         Remove.
1693         * infcmd.c (finish_forward): Update.
1694         * breakpoint.h (set_momentary_breakpoint)
1695         (set_momentary_breakpoint_at_pc): Return breakpoint_up.
1696         (make_cleanup_delete_breakpoint): Remove.
1697         (struct breakpoint_deleter): New.
1698         (breakpoint_up): New typedef.
1699         * infrun.c (insert_step_resume_breakpoint_at_sal_1): Update.
1700         (insert_exception_resume_breakpoint): Update.
1701         (insert_exception_resume_from_probe): Update.
1702         (insert_longjmp_resume_breakpoint): Update.
1703         * arm-linux-tdep.c (arm_linux_copy_svc): Update.
1704         * elfread.c (elf_gnu_ifunc_resolver_stop): Update.
1705         * infcall.c (call_function_by_hand_dummy): Update
1706
1707 2017-11-04  Tom Tromey  <tom@tromey.com>
1708
1709         * c-typeprint.c (c_type_print_base): Use gdb::unique_xmalloc_ptr.
1710
1711 2017-11-04  Tom Tromey  <tom@tromey.com>
1712
1713         * linux-tdep.c (linux_core_info_proc_mappings): Use
1714         gdb::def_vector.
1715         (linux_get_siginfo_data): Return gdb::byte_vector.  Remove
1716         "size" argument.
1717         (linux_corefile_thread): Update.
1718         (linux_make_corefile_notes): Remove unused variable.
1719
1720 2017-11-04  Tom Tromey  <tom@tromey.com>
1721
1722         * ppc-linux-tdep.c (ppc_linux_get_syscall_number): Use
1723         gdb::byte_vector.
1724
1725 2017-11-04  Tom Tromey  <tom@tromey.com>
1726
1727         * objfiles.c (do_free_objfile_cleanup): Remove.
1728         * compile/compile-object-load.c (compile_object_load): Update.
1729         * objfiles.h (make_cleanup_free_objfile): Remove.
1730
1731 2017-11-04  Tom Tromey  <tom@tromey.com>
1732
1733         * sparc64-tdep.c (do_examine): Use gdb::def_vector.
1734         (adi_read_versions): Change "tags" to "gdb_byte *".
1735         (adi_print_versions): Likewise.
1736
1737 2017-11-04  Tom Tromey  <tom@tromey.com>
1738
1739         * breakpoint.c
1740         (scoped_rbreak_breakpoints::scoped_rbreak_breakpoints): Rename
1741         from start_rbreak_breakpoints.
1742         (scoped_rbreak_breakpoints): Rename from end_rbreak_breakpoints.
1743         * breakpoint.h (class scoped_rbreak_breakpoints): New.
1744         (start_rbreak_breakpoints, end_rbreak_breakpoints): Remove.
1745         * symtab.c (do_end_rbreak_breakpoints): Remove.
1746         (rbreak_command): Use scoped_rbreak_breakpoints, std::string.
1747
1748 2017-11-04  Tom Tromey  <tom@tromey.com>
1749
1750         * cp-namespace.c (reset_directive_searched): Remove.
1751         (cp_lookup_symbol_via_imports): Use scoped_restore.
1752         * cp-support.c (reset_directive_searched): Remove.
1753         (make_symbol_overload_list_using): Use scoped_restore.
1754         * d-namespace.c (d_lookup_symbol_imports): Use scoped_restore.
1755         (reset_directive_searched): Remove.
1756
1757 2017-11-04  Tom Tromey  <tom@tromey.com>
1758
1759         * symfile.c (find_separate_debug_file_by_debuglink): Use
1760         unique_xmalloc_ptr.
1761
1762 2017-11-04  Tom Tromey  <tom@tromey.com>
1763
1764         * compile/compile-loc2c.c (compute_stack_depth_worker): Change
1765         type of "info".
1766         (compute_stack_depth): Likewise.
1767         (do_compile_dwarf_expr_to_c): Use std::vector.
1768
1769 2017-11-04  Tom Tromey  <tom@tromey.com>
1770
1771         * compile/compile-object-load.c (link_callbacks_einfo): Use
1772         std::string.
1773
1774 2017-11-04  Tom Tromey  <tom@tromey.com>
1775
1776         * dwarf2read.c (process_full_comp_unit, process_full_type_unit):
1777         Use scoped_free_pendings.
1778         * dbxread.c (dbx_symfile_read, dbx_psymtab_to_symtab_1): Use
1779         scoped_free_pendings.
1780         * xcoffread.c (xcoff_psymtab_to_symtab_1): Use scoped_free_pendings.
1781         (xcoff_initial_scan): Likewise.
1782         * buildsym.c (reset_symtab_globals): Update comment.
1783         (scoped_free_pendings): Rename from really_free_pendings.
1784         (prepare_for_building): Update comment.
1785         (buildsym_init): Likewise.
1786         * buildsym.h (class scoped_free_pendings): New class.
1787         (really_free_pendings): Don't declare.
1788
1789 2017-11-03  Ulrich Weigand  <uweigand@de.ibm.com>
1790
1791         * doublest.c (convert_doublest_to_floatformat): Fix uninitialized
1792         output when converting a zero value to a special byteorder format.
1793
1794 2017-11-02  Yao Qi  <yao.qi@linaro.org>
1795
1796         * frame.c (do_frame_register_read): Remove aspace.
1797         * jit.c (jit_frame_sniffer): Likwise.
1798         * ppc-linux-tdep.c (ppu2spu_sniffer): Likewise.
1799         * regcache.c (regcache::regcache): Pass nullptr.
1800         (regcache_print): Caller updated.
1801         * regcache.h (regcache::regcache): Remove one constructor
1802         parameter aspace.
1803
1804 2017-11-02  Yao Qi  <yao.qi@linaro.org>
1805
1806         * regcache.h (regcache) <m_readonly_p>: Change it to const bool.
1807
1808 2017-11-02  Yao Qi  <yao.qi@linaro.org>
1809
1810         * breakpoint.c (insert_single_step_breakpoints): Update.
1811         * frame.c (struct frame_info) <aspace>: Add const.
1812         (frame_save_as_regcache): Add const.
1813         (get_frame_address_space): Return const address_space *.
1814         * frame.h (get_frame_address_space): Update declaration.
1815         * infrun.c (struct step_over_info) <aspace>: Add const.
1816         (set_step_over_info): Make aspace const.
1817         (displaced_step_prepare_throw): Change variable const.
1818         (resume): Likewise.
1819         (proceed): Likewise.
1820         (adjust_pc_after_break): Likewise.
1821         (save_waitstatus): Likewise.
1822         (handle_signal_stop): Likewise.
1823         (keep_going_pass_signal): Likewise.
1824         * jit.c (jit_frame_sniffer): Add const.
1825         * mips-tdep.c (mips_single_step_through_delay): Likewise.
1826         * ppc-linux-tdep.c (ppu2spu_sniffer): Likewise.
1827         * record-full.c (record_full_wait_1): Likewise.
1828         * regcache.c (regcache::regcache): Change parameter to const.
1829         * regcache.h (regcache::regcache): Likewise.
1830         (regcache::aspace): Return const address_space *.
1831         (regcache) <m_aspace>: Add const.
1832
1833 2017-11-02  Yao Qi  <yao.qi@linaro.org>
1834
1835         * darwin-nat.c (cancel_breakpoint): Use regcache->aspace ().
1836         * frame.c (create_sentinel_frame): Likewise.
1837         * infrun.c (displaced_step_prepare_throw): Likewise.
1838         (resume): Likewise.
1839         (thread_still_needs_step_over_bp): Likewise.
1840         (proceed): Likewise.
1841         (do_target_wait): Likewise.
1842         (adjust_pc_after_break): Likewise.
1843         (handle_syscall_event): Likewise.
1844         (save_waitstatus): Likewise.
1845         (handle_inferior_event_1): Likewise.
1846         (handle_signal_stop): Likewise.
1847         (keep_going_pass_signal): Likewise.
1848         * linux-nat.c (status_callback): Likewise.
1849         (save_stop_reason): Likewise.
1850         (resume_stopped_resumed_lwps): Likewise.
1851         * record-full.c (record_full_exec_insn): Likewise.
1852         (record_full_wait_1): Likewise.
1853         * regcache.c (get_regcache_aspace): Remove.
1854         * regcache.h (get_regcache_aspace): Remove.
1855
1856 2017-11-02  Yao Qi  <yao.qi@linaro.org>
1857
1858         * regcache.c (struct regcache_descr) <nr_raw_registers>: Remove.
1859         (init_regcache_descr): Use gdbarch_num_regs.
1860         (regcache::regcache): Likewise.
1861         (regcache::get_register_status): Likewise.
1862         (regcache::assert_raw_regnum): Likewise.
1863         (regcache::cooked_read): Likewise.
1864         (regcache::cooked_read_value): Likewise.
1865         (regcache::cooked_write): Likewise.
1866         (regcache::dump): Likewise.
1867         (regcache::num_raw_registers): New method.
1868         * regcache.h (class regcache) <num_raw_registers>: New.
1869
1870 2017-11-02  Yao Qi  <yao.qi@linaro.org>
1871
1872         * regcache.c (regcache::assert_regnum): New method.
1873         (regcache::invalidate): Call assert_regnum.
1874         (regcache::raw_update): Likewise.
1875         (regcache::raw_write): Likewise.
1876         (regcache::raw_read_part): Likewise.
1877         (regcache::raw_write_part): Likewise.
1878         (regcache::raw_supply): Likewise.
1879         (regcache::raw_supply_integer): Likewise.
1880         (regcache::raw_supply_zeroed): Likewise.
1881         (regcache::raw_collect): Likewise.
1882         (regcache::raw_collect_integer): Likewise.
1883         * regcache.h (regcache::assert_regnum): Declare.
1884
1885 2017-11-02  Yao Qi  <yao.qi@linaro.org>
1886
1887         * regcache.c (regcache::dump): Remove code.
1888
1889 2017-11-02  Yao Qi  <yao.qi@linaro.org>
1890
1891         * regcache.c (struct regcache_descr) <sizeof_raw_register_status>:
1892         Remove.
1893         <sizeof_cooked_register_status>: Remove.
1894         (init_regcache_descr): Update.
1895         (regcache::regcache): Use nr_cooked_registers and nr_raw_registers.
1896         (regcache::save): Likewise.
1897         (regcache::dump): Likewise.
1898
1899 2017-11-01  James Bowman  <james.bowman@ftdichip.com>
1900
1901         * ft32-tdep.c (ft32_fetch_instruction): New function.
1902         (ft32_analyze_prologue): Use ft32_fetch_instruction().
1903
1904 2017-10-31  Simon Marchi  <simon.marchi@polymtl.ca>
1905
1906         * cli/cli-script.c (execute_control_command): Rename to ...
1907         (execute_control_command_1): ... this.
1908         (execute_control_command): New function.
1909
1910 2017-10-31  Simon Marchi  <simon.marchi@ericsson.com>
1911
1912         * tracepoint.c (tfind_command): Remove const_cast.
1913
1914 2017-10-30  Mike Gulick  <mgulick@mathworks.com>
1915
1916         * Makefile.in (HFILES_NO_SRCDIR): Remove reference to gdb.h.
1917
1918 2017-10-30  Simon Marchi  <simon.marchi@ericsson.com>
1919
1920         * common/common-utils.h (in_inclusive_range): New function.
1921         * arm-tdep.c (arm_record_extension_space): Use
1922         in_inclusive_range.
1923         (thumb_record_ld_st_reg_offset): Use in_inclusive_range.
1924         * cris-tdep.c (cris_spec_reg_applicable): Use
1925         in_inclusive_range.
1926
1927 2017-10-30  Pedro Alves  <palves@redhat.com>
1928             Simon Marchi <simon.marchi@ericsson.com>
1929
1930         * remote.c (remote_set_syscall_catchpoint): Build a std::string
1931         instead of a gdb::unique_xmalloc_ptr, using string_appendf.
1932
1933 2017-10-30  Pedro Alves  <palves@redhat.com>
1934
1935         * common/common-utils.c (string_appendf, string_vappendf): New
1936         functions.
1937         * common/common-utils.h (string_appendf, string_vappendf): New
1938         declarations.
1939         * unittests/common-utils-selftests.c (string_appendf_func)
1940         (test_appendf_func, string_vappendf_wrapper, string_appendf_tests)
1941         (string_vappendf_tests): New functions.
1942         (_initialize_common_utils_selftests): Register "string_appendf" and
1943         "string_vappendf tests".
1944
1945 2017-10-30  Pedro Alves  <palves@redhat.com>
1946
1947         * unittests/common-utils-selftests.c (format_func): New typedef.
1948         (string_printf_tests, string_vprintf_tests): Tests factored out
1949         and merged to ...
1950         (test_format_func): ... this new function.
1951         (string_printf_tests, string_vprintf_tests): Reimplement on top of
1952         test_format_func.
1953
1954 2017-10-29  Simon Marchi  <simon.marchi@ericsson.com>
1955
1956         * darwin-nat.c: Remove include of gdb.h.
1957
1958 2017-10-29  Simon Marchi  <simon.marchi@ericsson.com>
1959
1960         * xtensa-xtregs.c: Fix formatting issues.
1961
1962 2017-10-29  Simon Marchi  <simon.marchi@ericsson.com>
1963
1964         * xtensa-xtregs.c (xtensa_regtable_t) <name>: Constify.
1965
1966 2017-10-28  Maksim Dzabraev  <dzabraew@gmail.com>
1967
1968         PR python/21213
1969         * python/py-infthread.c (thpy_get_inferior): Increment reference
1970         of inferior before returning it.
1971
1972 2017-10-27  Simon Marchi  <simon.marchi@ericsson.com>
1973
1974         * unittests/common-utils-selftests.c (format): Add
1975         ATTRIBUTE_PRINTF.
1976
1977 2017-10-27  Simon Marchi  <simon.marchi@polymtl.ca>
1978
1979         * xml-syscall.c (struct syscall_desc): Add constructor.
1980         <name>: Change type to std::string.
1981         (syscall_desc_up): New typedef.
1982         (syscall_desc_p): Remove typeder.
1983         (DEF_VEC_P(syscall_desc_p)): Remove.
1984         (struct syscall_group_desc): Add constructor.
1985         <name>: Change type to std::string.
1986         <syscalls>: Change type to std::vector.
1987         (syscall_group_desc_up): New typedef.
1988         (syscall_group_desc_p): Remove typedef.
1989         (DEF_VEC_P(syscall_group_desc_p)): Remove.
1990         (struct syscalls_info) <syscalls>: Change type to std::vector of
1991         unique_ptr.
1992         <groups>: Likewise.
1993         <my_gdb_datadir>: Change type to std::string.
1994         (syscalls_info_up): New typedef.
1995         (allocate_syscalls_info): Remove.
1996         (syscalls_info_free_syscalls_desc): Remove.
1997         (syscalls_info_free_syscall_group_desc): Remove.
1998         (free_syscalls_info): Remove.
1999         (make_cleanup_free_syscalls_info): Remove.
2000         (syscall_group_create_syscall_group_desc): Adjust.
2001         (syscall_group_add_syscall): Adjust.
2002         (syscall_create_syscall_desc): Adjust.
2003         (syscall_parse_xml): Adjust, use unique_ptr instead of cleanup.
2004         (init_syscalls_info): Adjust.
2005         (syscall_group_get_group_by_name): Adjust.
2006         (xml_get_syscall_number): Adjust.
2007         (xml_get_syscall_name): Adjust.
2008         (xml_list_of_syscalls): Adjust.
2009         (xml_list_syscalls_by_group): Adjust.
2010         (xml_list_of_groups): Adjust.
2011
2012 2017-10-27  Simon Marchi  <simon.marchi@ericsson.com>
2013
2014         * probe.h: Don't include gdb_vecs.h.
2015         (DEF_VEC_P (probe_p)): Remove.
2016         (find_probes_in_objfile): Return an std::vector.
2017         * probe.c (find_probes_in_objfile): Likewise.
2018         * breakpoint.c (breakpoint_objfile_data)
2019         <longjmp_probes>: Change type to std::vector.
2020         <exception_probes>: Likewise.
2021         (free_breakpoint_probes): Don't manually free vectors.
2022         (create_longjmp_master_breakpoint): Adjust.
2023         (create_exception_master_breakpoint): Adjust.
2024         * solib-svr4.c (svr4_create_probe_breakpoints): Change
2025         parameter type, adjust.
2026         (svr4_create_solib_event_breakpoints): Adjust.
2027
2028 2017-10-27  Simon Marchi  <simon.marchi@ericsson.com>
2029
2030         * breakpoint.c (breakpoint_objfile_data): Initialize fields.
2031         (get_breakpoint_objfile_data): Allocate breakpoint_objfile_data
2032         with new.
2033         (free_breakpoint_probes): Rename to ...
2034         (free_breakpoint_objfile_data): ... this, and call delete on
2035         bp_objfile_data..
2036
2037 2017-10-27  Simon Marchi  <simon.marchi@polymtl.ca>
2038
2039         * auto-load.c: Don't include gdb_vecs.h, include algorithm.
2040         (loaded_script_ptr): Remove typedef.
2041         (DEF_VEC_P (loaded_script_ptr)): Remove.
2042         (struct collect_matching_scripts_data): Add constructor.
2043         <scripts_p>: Change type to (pointer to) std::vector.
2044         (collect_matching_scripts_data): Adjust.
2045         (sort_scripts_by_name): Make suitable for std::sort.
2046         (print_scripts): Don't sort vector, adjust to std::vector.
2047         (auto_load_info_scripts): Sort vectors, adjust to std::vector.
2048
2049 2017-10-27  Simon Marchi  <simon.marchi@ericsson.com>
2050
2051         * symfile.c (filename_language): Make struct, not typedef.  Add
2052         constructor.
2053         <ext>: Change type to std::string.
2054         (DEF_VEC_O (filename_language)): Remove.
2055         (filename_language_table): Change type to std::vector.
2056         (add_filename_language): Adjust.
2057         (set_ext_lang_command): Adjust.
2058         (info_ext_lang_command): Adjust.
2059         (deduce_language_from_filename): Adjust.
2060         (class scoped_restore_filename_language_table): Remove.
2061         (test_filename_language): Use scoped_restore.
2062         (test_set_ext_lang_command): Use scoped_restore, adjust to
2063         std::vector change.
2064
2065 2017-10-27  Simon Marchi  <simon.marchi@ericsson.com>
2066
2067         * symfile.c: Include selftest.h.
2068         (class scoped_restore_filename_language_table): New.
2069         (test_filename_language): New test.
2070         (test_set_ext_lang_command): New test.
2071         (_initialize_symfile): Register tests.
2072
2073 2017-10-27  Keith Seitz  <keiths@redhat.com>
2074
2075         * breakpoint.c (print_breakpoint_location): Use the symbol saved
2076         in the bp_location, falling back to find_pc_sect_function when
2077         needed.
2078         (add_location_to_breakpoint): Save sal->symbol.
2079         * breakpoint.h (struct bp_location) <symbol>: New field.
2080         * symtab.c (find_function_start_sal): Save the symbol into the SaL.
2081         * symtab.h (struct symtab_and_line) <symbol>: New field.
2082
2083 2017-10-26  Patrick Frants  <osscontribute@gmail.com>
2084
2085         PR gdb/13669
2086         * cp-valprint.c (cp_print_value_fields): Use obstack_blank_fast
2087         to rewind obstack.
2088
2089 2017-10-26  Pedro Alves  <palves@redhat.com>
2090
2091         * remote.c (remote_async_terminal_ours_p): Delete.
2092         (remote_open_1, remote_terminal_inferior, remote_terminal_ours):
2093         Remove references to 'remote_async_terminal_ours_p'.
2094
2095 2017-10-26  Yao Qi  <yao.qi@linaro.org>
2096
2097         * breakpoint.h (regular_breakpoint_inserted_here_p): Remove.
2098
2099 2017-10-26  Yao Qi  <yao.qi@linaro.org>
2100
2101         * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Make
2102         aspace const.
2103         * break-catch-syscall.c (breakpoint_hit_catch_syscall):
2104         Likewise.
2105         * breakpoint.c (bpstat_check_location): Remove cast.
2106         (breakpoint_hit_catch_fork): Make aspce const.
2107         (breakpoint_hit_catch_solib): Likewise.
2108         (breakpoint_hit_catch_exec): Likewise.
2109         (breakpoint_hit_ranged_breakpoint): Likewise.
2110         (breakpoint_hit_watchpoint): Likewise.
2111         (base_breakpoint_breakpoint_hit): Likewise.
2112         (bkpt_breakpoint_hit): Likewise.
2113         (dprintf_breakpoint_hit): Likewise.
2114         (tracepoint_breakpoint_hit): Likewise.
2115         * breakpoint.h (breakpoint_ops) <breakpoint_hit>: Likewise.
2116
2117 2017-10-26  Yao Qi  <yao.qi@linaro.org>
2118
2119         * breakpoint.c (breakpoint_location_address_match): Change
2120         "struct address_space *" to "const address_space".
2121         (breakpoint_location_address_range_overlap): Likewise.
2122         (breakpoint_here_p): Likewise.
2123         (breakpoint_in_range_p): Likewise.
2124         (moribund_breakpoint_here_p): Likewise.
2125         (bp_location_inserted_here_p): Likewise.
2126         (software_breakpoint_inserted_here_p): Likewise.
2127         (hardware_breakpoint_inserted_here_p): Likewise.
2128         (hardware_watchpoint_inserted_in_range): Likewise.
2129         (bpstat_check_location): Likewise.
2130         (bpstat_stop_status): Likewise.
2131         (breakpoint_address_match): Likewise.
2132         (breakpoint_address_match_range): Likewise.
2133         (breakpoint_location_address_match): Likewise.
2134         (breakpoint_location_address_range_overlap): Likewise.
2135         (insert_single_step_breakpoint): Likewise.
2136         (breakpoint_has_location_inserted_here): Likewise.
2137         (single_step_breakpoint_inserted_here_p): Likewise.
2138         (pc_at_non_inline_function): Likewise.
2139         * breakpoint.h (bpstat_stop_status): Update declaration.
2140         (breakpoint_here_p): Likewise.
2141         (breakpoint_in_range_p): Likewise.
2142         (moribund_breakpoint_here_p): Likewise.
2143         (breakpoint_inserted_here_p): Likewise.
2144         (software_breakpoint_inserted_here_p): Likewise.
2145         (hardware_breakpoint_inserted_here_p): Likewise.
2146         (breakpoint_has_location_inserted_here): Likewise.
2147         (single_step_breakpoint_inserted_here_p): Likewise.
2148         (hardware_watchpoint_inserted_in_range): Likewise.
2149         (breakpoint_address_match): Likewise.
2150         (insert_single_step_breakpoint): Likewise.
2151         (pc_at_non_inline_function): Likewise.
2152         * gdbthread.h (thread_has_single_step_breakpoint_here): Likewise.
2153         * record.c (record_check_stopped_by_breakpoint): Likewise.
2154         * record.h (record_check_stopped_by_breakpoint): Likewise.
2155         * thread.c (thread_has_single_step_breakpoint_here): Likewise.
2156
2157 2017-10-25  Yao Qi  <yao.qi@linaro.org>
2158
2159         * aarch32-linux-nat.c (aarch32_gp_regcache_supply): Use
2160         regcache->arch () instead get_regcache_arch.
2161         * aarch64-fbsd-nat.c (aarch64_fbsd_fetch_inferior_registers):
2162         Likewise.
2163         (aarch64_fbsd_store_inferior_registers): Likewise.
2164         * aarch64-linux-nat.c (fetch_gregs_from_thread): Likewise.
2165         (store_gregs_to_thread): Likewise.
2166         (fetch_fpregs_from_thread): Likewise.
2167         (store_fpregs_to_thread): Likewise.
2168         * aarch64-tdep.c (aarch64_extract_return_value): Likewise.
2169         (aarch64_store_return_value): Likewise.
2170         (aarch64_software_single_step): Likewise.
2171         * aix-thread.c (aix_thread_wait): Likewise.
2172         (supply_reg32): Likewise.
2173         (supply_sprs64): Likewise.
2174         (supply_sprs32): Likewise.
2175         (fill_gprs64): Likewise.
2176         (fill_gprs32): Likewise.
2177         (fill_sprs64): Likewise.
2178         (fill_sprs32): Likewise.
2179         (store_regs_user_thread): Likewise.
2180         (store_regs_kernel_thread): Likewise.
2181         * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers): Likewise.
2182         (alphabsd_store_inferior_registers): Likewise.
2183         * alpha-tdep.c (alpha_extract_return_value): Likewise.
2184         (alpha_store_return_value): Likewise.
2185         (alpha_deal_with_atomic_sequence): Likewise.
2186         (alpha_next_pc): Likewise.
2187         (alpha_software_single_step): Likewise.
2188         * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Likewise.
2189         (amd64bsd_store_inferior_registers): Likewise.
2190         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers):
2191         Likewise.
2192         (amd64_linux_store_inferior_registers): Likewise.
2193         * amd64-nat.c (amd64_supply_native_gregset): Likewise.
2194         (amd64_collect_native_gregset): Likewise.
2195         * amd64-obsd-tdep.c (amd64obsd_supply_uthread): Likewise.
2196         (amd64obsd_collect_uthread): Likewise.
2197         * amd64-tdep.c (amd64_supply_fpregset): Likewise.
2198         (amd64_collect_fpregset): Likewise.
2199         (amd64_supply_fxsave): Likewise.
2200         (amd64_supply_xsave): Likewise.
2201         (amd64_collect_fxsave): Likewise.
2202         (amd64_collect_xsave): Likewise.
2203         * arc-tdep.c (arc_write_pc): Likewise.
2204         * arch-utils.c (default_skip_permanent_breakpoint): Likewise.
2205         * arm-fbsd-nat.c (arm_fbsd_fetch_inferior_registers): Likewise.
2206         (arm_fbsd_store_inferior_registers): Likewise.
2207         * arm-linux-nat.c (fetch_vfp_regs): Likewise.
2208         (store_vfp_regs): Likewise.
2209         (arm_linux_fetch_inferior_registers): Likewise.
2210         (arm_linux_store_inferior_registers): Likewise.
2211         * arm-linux-tdep.c (arm_linux_supply_gregset): Likewise.
2212         (arm_linux_sigreturn_next_pc): Likewise.
2213         (arm_linux_get_next_pcs_syscall_next_pc): Likewise.
2214         * arm-nbsd-nat.c (arm_supply_gregset): Likewise.
2215         (fetch_register): Likewise.
2216         (store_register): Likewise.
2217         * arm-tdep.c (arm_is_thumb): Likewise.
2218         (displaced_in_arm_mode): Likewise.
2219         (bx_write_pc): Likewise.
2220         (arm_get_next_pcs_addr_bits_remove): Likewise.
2221         (arm_software_single_step): Likewise.
2222         (arm_extract_return_value): Likewise.
2223         (arm_store_return_value): Likewise.
2224         (arm_write_pc): Likewise.
2225         * bfin-tdep.c (bfin_extract_return_value): Likewise.
2226         * bsd-uthread.c (bsd_uthread_fetch_registers): Likewise.
2227         (bsd_uthread_store_registers): Likewise.
2228         * core-regset.c (fetch_core_registers): Likewise.
2229         * corelow.c (get_core_registers): Likewise.
2230         * cris-tdep.c (cris_store_return_value): Likewise.
2231         (cris_extract_return_value): Likewise.
2232         (find_step_target): Likewise.
2233         (find_step_target): Likewise.
2234         (cris_software_single_step): Likewise.
2235         * ctf.c (ctf_fetch_registers): Likewise.
2236         * darwin-nat.c (cancel_breakpoint): Likewise.
2237         * fbsd-tdep.c (fbsd_collect_thread_registers): Likewise.
2238         * frv-tdep.c (frv_extract_return_value): Likewise.
2239         * ft32-tdep.c (ft32_store_return_value): Likewise.
2240         (ft32_extract_return_value): Likewise.
2241         * go32-nat.c (fetch_register): Likewise.
2242         (go32_fetch_registers): Likewise.
2243         (go32_store_registers): Likewise.
2244         (store_register): Likewise.
2245         * h8300-tdep.c (h8300_extract_return_value): Likewise.
2246         (h8300_store_return_value): Likewise.
2247         * hppa-linux-nat.c (fetch_register): Likewise.
2248         (store_register): Likewise.
2249         (hppa_linux_fetch_inferior_registers): Likewise.
2250         (hppa_linux_store_inferior_registers): Likewise.
2251         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Likewise.
2252         (i386_darwin_store_inferior_registers): Likewise.
2253         * i386-gnu-nat.c (gnu_fetch_registers): Likewise.
2254         (gnu_store_registers): Likewise.
2255         * i386-linux-nat.c (fetch_register): Likewise.
2256         (store_register): Likewise.
2257         (supply_gregset): Likewise.
2258         (fill_gregset): Likewise.
2259         (i386_linux_fetch_inferior_registers): Likewise.
2260         (i386_linux_store_inferior_registers): Likewise.
2261         (i386_linux_resume): Likewise.
2262         * i386-linux-tdep.c (i386_linux_get_syscall_number_from_regcache):
2263         Likewise.
2264         * i386-nto-tdep.c (i386nto_supply_gregset): Likewise.
2265         * i386-obsd-nat.c (i386obsd_supply_pcb): Likewise.
2266         * i386-obsd-tdep.c (i386obsd_supply_uthread): Likewise.
2267         (i386obsd_collect_uthread): Likewise.
2268         * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Likewise.
2269         (i386_supply_gregset): Likewise.
2270         (i386_collect_gregset): Likewise.
2271         (i386_supply_fpregset): Likewise.
2272         (i386_collect_fpregset): Likewise.
2273         (i386_mpx_bd_base): Likewise.
2274         * i386-v4-nat.c (supply_fpregset): Likewise.
2275         (fill_fpregset): Likewise.
2276         * i387-tdep.c (i387_supply_fsave): Likewise.
2277         (i387_collect_fsave): Likewise.
2278         (i387_supply_fxsave): Likewise.
2279         (i387_collect_fxsave): Likewise.
2280         (i387_supply_xsave): Likewise.
2281         (i387_collect_xsave): Likewise.
2282         * ia64-linux-nat.c (ia64_linux_fetch_registers): Likewise.
2283         (ia64_linux_store_registers): Likewise.
2284         * ia64-tdep.c (ia64_access_rse_reg): Likewise.
2285         (ia64_extract_return_value): Likewise.
2286         (ia64_store_return_value): Likewise.
2287         (find_func_descr): Likewise.
2288         * inf-child.c (inf_child_fetch_inferior_registers): Likewise.
2289         * inf-ptrace.c (inf_ptrace_fetch_registers): Likewise.
2290         (inf_ptrace_store_registers): Likewise.
2291         * infrun.c (use_displaced_stepping): Likewise.
2292         (displaced_step_prepare_throw): Likewise.
2293         (resume): Likewise.
2294         (proceed): Likewise.
2295         (do_target_wait): Likewise.
2296         (adjust_pc_after_break): Likewise.
2297         (handle_inferior_event_1): Likewise.
2298         (handle_signal_stop): Likewise.
2299         (save_infcall_suspend_state): Likewise.
2300         (restore_infcall_suspend_state): Likewise.
2301         * iq2000-tdep.c (iq2000_extract_return_value): Likewise.
2302         * jit.c (jit_frame_prev_register): Likewise.
2303         * linux-nat.c (save_stop_reason): Likewise.
2304         (linux_nat_wait_1): Likewise.
2305         (resume_stopped_resumed_lwps): Likewise.
2306         * linux-record.c (record_linux_sockaddr): Likewise.
2307         (record_linux_msghdr): Likewise.
2308         (record_linux_system_call): Likewise.
2309         * linux-tdep.c (linux_collect_thread_registers): Likewise.
2310         * lm32-tdep.c (lm32_extract_return_value): Likewise.
2311         (lm32_store_return_value): Likewise.
2312         * m32c-tdep.c (m32c_read_flg): Likewise.
2313         (m32c_pseudo_register_read): Likewise.
2314         (m32c_pseudo_register_write): Likewise.
2315         * m32r-linux-tdep.c (m32r_linux_supply_gregset): Likewise.
2316         (m32r_linux_collect_gregset): Likewise.
2317         * m32r-tdep.c (m32r_store_return_value): Likewise.
2318         (m32r_extract_return_value): Likewise.
2319         * m68k-bsd-nat.c (m68kbsd_supply_fpregset): Likewise.
2320         (m68kbsd_collect_fpregset): Likewise.
2321         * m68k-bsd-tdep.c (m68kbsd_supply_fpregset): Likewise.
2322         * m68k-linux-nat.c (fetch_register): Likewise.
2323         (old_fetch_inferior_registers): Likewise.
2324         (old_store_inferior_registers): Likewise.
2325         (store_regs): Likewise.
2326         * m68k-tdep.c (m68k_svr4_extract_return_value): Likewise.
2327         (m68k_svr4_store_return_value): Likewise.
2328         * m88k-tdep.c (m88k_store_arguments): Likewise.
2329         * mi/mi-main.c (mi_cmd_data_list_changed_registers): Likewise.
2330         (mi_cmd_data_write_register_values): Likewise.
2331         * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers): Likewise.
2332         (mips_fbsd_store_inferior_registers): Likewise.
2333         * mips-fbsd-tdep.c (mips_fbsd_supply_fpregs): Likewise.
2334         (mips_fbsd_supply_gregs): Likewise.
2335         (mips_fbsd_collect_fpregs): Likewise.
2336         (mips_fbsd_collect_gregs): Likewise.
2337         (mips_fbsd_supply_fpregset): Likewise.
2338         (mips_fbsd_collect_fpregset): Likewise.
2339         (mips_fbsd_supply_gregset): Likewise.
2340         (mips_fbsd_collect_gregset): Likewise.
2341         * mips-linux-nat.c (supply_gregset): Likewise.
2342         (fill_gregset): Likewise.
2343         (supply_fpregset): Likewise.
2344         (fill_fpregset): Likewise.
2345         * mips-linux-tdep.c (mips_supply_gregset): Likewise.
2346         (mips_fill_gregset): Likewise.
2347         (mips_supply_fpregset): Likewise.
2348         (mips_fill_fpregset): Likewise.
2349         (mips64_supply_gregset): Likewise.
2350         (micromips_linux_sigframe_validate): Likewise.
2351         * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers): Likewise.
2352         (mipsnbsd_fetch_inferior_registers): Likewise.
2353         (mipsnbsd_store_inferior_registers): Likewise.
2354         * mips-nbsd-tdep.c (mipsnbsd_supply_fpregset): Likewise.
2355         (mipsnbsd_supply_gregset): Likewise.
2356         (mipsnbsd_iterate_over_regset_sections): Likewise.
2357         (mipsnbsd_supply_reg): Likewise.
2358         (mipsnbsd_supply_fpreg): Likewise.
2359         * mips-tdep.c (mips_in_frame_stub): Likewise.
2360         (mips_dummy_id): Likewise.
2361         (is_octeon_bbit_op): Likewise.
2362         (micromips_bc1_pc): Likewise.
2363         (extended_mips16_next_pc): Likewise.
2364         (mips16_next_pc): Likewise.
2365         (deal_with_atomic_sequence): Likewise.
2366         * moxie-tdep.c (moxie_process_readu): Likewise.
2367         * nios2-tdep.c (nios2_get_next_pc): Likewise.
2368         * nto-procfs.c (procfs_store_registers): Likewise.
2369         * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers): Likewise.
2370         (ppcfbsd_store_inferior_registers): Likewise.
2371         * ppc-linux-nat.c (fetch_vsx_register): Likewise.
2372         (fetch_altivec_register): Likewise.
2373         (get_spe_registers): Likewise.
2374         (fetch_spe_register): Likewise.
2375         (fetch_altivec_registers): Likewise.
2376         (fetch_all_gp_regs): Likewise.
2377         (fetch_all_fp_regs): Likewise.
2378         (store_vsx_register): Likewise.
2379         (store_altivec_register): Likewise.
2380         (set_spe_registers): Likewise.
2381         (store_spe_register): Likewise.
2382         (store_altivec_registers): Likewise.
2383         (store_all_gp_regs): Likewise.
2384         (store_all_fp_regs): Likewise.
2385         * ppc-linux-tdep.c (ppc_linux_supply_gregset): Likewise.
2386         (ppc_linux_collect_gregset): Likewise.
2387         (ppc_canonicalize_syscall): Likewise.
2388         (ppc_linux_record_signal): Likewise.
2389         (ppu2spu_prev_register): Likewise.
2390         * ppc-nbsd-nat.c (ppcnbsd_supply_pcb): Likewise.
2391         * ppc-obsd-nat.c (ppcobsd_fetch_registers): Likewise.
2392         (ppcobsd_store_registers): Likewise.
2393         * ppc-ravenscar-thread.c (ppc_ravenscar_generic_fetch_registers):
2394         Likewise.
2395         (ppc_ravenscar_generic_store_registers): Likewise.
2396         * procfs.c (procfs_fetch_registers): Likewise.
2397         (procfs_store_registers): Likewise.
2398         * ravenscar-thread.c (ravenscar_fetch_registers): Likewise.
2399         (ravenscar_store_registers): Likewise.
2400         (ravenscar_prepare_to_store): Likewise.
2401         * record-btrace.c (record_btrace_fetch_registers): Likewise.
2402         * record-full.c (record_full_wait_1): Likewise.
2403         (record_full_registers_change): Likewise.
2404         (record_full_store_registers): Likewise.
2405         (record_full_core_fetch_registers): Likewise.
2406         (record_full_save): Likewise.
2407         (record_full_goto_insn): Likewise.
2408         * regcache.c (regcache_register_size): Likewise.
2409         (get_regcache_arch): Remove.
2410         (regcache_read_pc): Likewise.
2411         * regcache.h (get_regcache_arch): Remove.
2412         * remote-sim.c (gdbsim_fetch_register): Likewise.
2413         (gdbsim_store_register): Likewise.
2414         * remote.c (fetch_register_using_p): Likewise.
2415         (send_g_packet): Likewise.
2416         (remote_prepare_to_store): Likewise.
2417         (store_registers_using_G): Likewise.
2418         * reverse.c (save_bookmark_command): Likewise.
2419         (goto_bookmark_command): Likewise.
2420         * rs6000-aix-tdep.c (branch_dest): Likewise.
2421         * rs6000-nat.c (rs6000_ptrace64): Likewise.
2422         (fetch_register): Likewise.
2423         * rs6000-tdep.c (ppc_supply_reg): Likewise.
2424         (ppc_collect_reg): Likewise.
2425         (ppc_collect_gregset): Likewise.
2426         (ppc_collect_fpregset): Likewise.
2427         (ppc_collect_vsxregset): Likewise.
2428         (ppc_collect_vrregset): Likewise.
2429         (ppc_displaced_step_hw_singlestep): Likewise.
2430         (rs6000_pseudo_register_read): Likewise.
2431         (rs6000_pseudo_register_write): Likewise.
2432         * s390-linux-nat.c (supply_gregset): Likewise.
2433         (fill_gregset): Likewise.
2434         (s390_linux_fetch_inferior_registers): Likewise.
2435         * s390-linux-tdep.c (s390_write_pc): Likewise.
2436         (s390_software_single_step): Likewise.
2437         (s390_all_but_pc_registers_record): Likewise.
2438         (s390_linux_syscall_record): Likewise.
2439         * sentinel-frame.c (sentinel_frame_prev_arch): Likewise.
2440         * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers): Likewise.
2441         (shnbsd_store_inferior_registers): Likewise.
2442         * sh-tdep.c (sh_extract_return_value_nofpu): Likewise.
2443         (sh_extract_return_value_fpu): Likewise.
2444         (sh_store_return_value_nofpu): Likewise.
2445         (sh_corefile_supply_regset): Likewise.
2446         (sh_corefile_collect_regset): Likewise.
2447         * sh64-tdep.c (sh64_extract_return_value): Likewise.
2448         (sh64_store_return_value): Likewise.
2449         * sparc-linux-tdep.c (sparc32_linux_collect_core_fpregset): Likewise.
2450         * sparc-nat.c (sparc_fetch_inferior_registers): Likewise.
2451         (sparc_store_inferior_registers): Likewise.
2452         * sparc-ravenscar-thread.c (register_in_thread_descriptor_p): Likewise.
2453         (sparc_ravenscar_prepare_to_store): Likewise.
2454         * sparc-tdep.c (sparc32_store_arguments): Likewise.
2455         (sparc_analyze_control_transfer): Likewise.
2456         (sparc_step_trap): Likewise.
2457         (sparc_software_single_step): Likewise.
2458         (sparc32_gdbarch_init): Likewise.
2459         (sparc_supply_rwindow): Likewise.
2460         (sparc_collect_rwindow): Likewise.
2461         * sparc64-linux-tdep.c (sparc64_linux_collect_core_fpregset): Likewise.
2462         * sparc64-nbsd-nat.c (sparc64nbsd_supply_gregset): Likewise.
2463         (sparc64nbsd_collect_gregset): Likewise.
2464         (sparc64nbsd_supply_fpregset): Likewise.
2465         (sparc64nbsd_collect_fpregset): Likewise.
2466         * sparc64-tdep.c (sparc64_store_arguments): Likewise.
2467         (sparc64_supply_gregset): Likewise.
2468         (sparc64_collect_gregset): Likewise.
2469         (sparc64_supply_fpregset): Likewise.
2470         (sparc64_collect_fpregset): Likewise.
2471         * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
2472         * spu-tdep.c (spu_unwind_sp): Likewise.
2473         (spu2ppu_prev_register): Likewise.
2474         (spu_memory_remove_breakpoint): Likewise.
2475         * stack.c (return_command): Likewise.
2476         * tic6x-tdep.c (tic6x_extract_signed_field): Likewise.
2477         * tracefile-tfile.c (tfile_fetch_registers): Likewise.
2478         * tracefile.c (trace_save_ctf): Likewise.
2479         * windows-nat.c (do_windows_fetch_inferior_registers): Likewise.
2480         (do_windows_store_inferior_registers): Likewise.
2481         (windows_resume): Likewise.
2482         * xtensa-linux-nat.c (fill_gregset): Likewise.
2483         (supply_gregset_reg): Likewise.
2484         * xtensa-tdep.c (xtensa_register_write_masked): Likewise.
2485         (xtensa_register_read_masked): Likewise.
2486         (xtensa_supply_gregset): Likewise.
2487         (xtensa_extract_return_value): Likewise.
2488         (xtensa_store_return_value): Likewise.
2489
2490 2017-10-25  Ulrich Weigand  <uweigand@de.ibm.com>
2491
2492         * doublest.c (floatformat_from_string): New function.
2493         * doublest.h (floatformat_from_string): Add prototype.
2494
2495         * std-operator.def (OP_DOUBLE, OP_DECFLOAT): Remove, replace by ...
2496         (OP_FLOAT): ... this.
2497         * expression.h: Do not include "doublest.h".
2498         (union exp_element): Replace doubleconst and decfloatconst by
2499         new element floatconst.
2500         * ada-lang.c (resolve_subexp): Handle OP_FLOAT instead of OP_DOUBLE.
2501         (ada_evaluate_subexp): Likewise.
2502         * eval.c (evaluate_subexp_standard): Handle OP_FLOAT instead of
2503         OP_DOUBLE and OP_DECFLOAT.
2504         * expprint.c (print_subexp_standard): Likewise.
2505         (dump_subexp_body_standard): Likewise.
2506         * breakpoint.c (watchpoint_exp_is_const): Likewise.
2507
2508         * parse.c: Include "dfp.h".
2509         (write_exp_elt_dblcst, write_exp_elt_decfloatcst): Remove.
2510         (write_exp_elt_floatcst): New function.
2511         (operator_length_standard): Handle OP_FLOAT instead of OP_DOUBLE
2512         and OP_DECFLOAT.
2513         (operator_check_standard): Likewise.
2514         (parse_float): Do not accept suffix.  Take type as input.  Return bool.
2515         Return target format buffer instead of host DOUBLEST.
2516         Use floatformat_from_string and decimal_from_string to parse
2517         either binary or decimal floating-point types.
2518         (parse_c_float): Remove.
2519         * parser-defs.h: Do not include "doublest.h".
2520         (write_exp_elt_dblcst, write_exp_elt_decfloatcst): Remove.
2521         (write_exp_elt_floatcst): Add prototype.
2522         (parse_float): Update prototype.
2523         (parse_c_float): Remove.
2524
2525         * c-exp.y: Do not include "dfp.h".
2526         (typed_val_float): Use byte buffer instead of DOUBLEST.
2527         (typed_val_decfloat): Remove.
2528         (DECFLOAT): Remove.
2529         (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
2530         (parse_number): Update to new parse_float interface.
2531         Parse suffixes and determine type before calling parse_float.
2532         Handle decimal and binary FP types the same way.
2533
2534         * d-exp.y (typed_val_float): Use byte buffer instead of DOUBLEST.
2535         (FLOAT_LITERAL): Use OP_FLOAT and write_exp_elt_floatcst.
2536         (parse_number): Update to new parse_float interface.
2537         Parse suffixes and determine type before calling parse_float.
2538
2539         * f-exp.y: Replace dval by typed_val_float.
2540         (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
2541         (parse_number): Use parse_float instead of atof.
2542
2543         * go-exp.y (typed_val_float): Use byte buffer instead of DOUBLEST.
2544         (parse_go_float): Remove.
2545         (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
2546         (parse_number): Call parse_float instead of parse_go_float.
2547         Parse suffixes and determine type before calling parse_float.
2548
2549         * p-exp.y (typed_val_float): Use byte buffer instead of DOUBLEST.
2550         (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
2551         (parse_number): Update to new parse_float interface.
2552         Parse suffixes and determine type before calling parse_float.
2553
2554         * m2-exp.y: Replace dval by byte buffer val.
2555         (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
2556         (parse_number): Call parse_float instead of atof.
2557
2558         * rust-exp.y (typed_val_float): Use byte buffer instead of DOUBLEST.
2559         (lex_number): Call parse_float instead of strtod.
2560         (ast_dliteral): Use OP_FLOAT instead of OP_DOUBLE.
2561         (convert_ast_to_expression): Handle OP_FLOAT instead of OP_DOUBLE.
2562         Use write_exp_elt_floatcst.
2563         (unit_testing): Remove static variable.
2564         (rust_type): Do not check unit_testing.
2565         (rust_lex_tests): Do not set uint_testing.  Set up dummy rust_parser.
2566
2567         * ada-exp.y (type_float, type_double): Remove.
2568         (typed_val_float): Use byte buffer instead of DOUBLEST.
2569         (FLOAT): Use OP_FLOAT and write_exp_elt_floatcst.
2570         * ada-lex.l (processReal): Use parse_float instead of sscanf.
2571
2572 2017-10-25  Alan Hayward  <alan.hayward@arm.com>
2573
2574         * aarch64-tdep.h (enum aarch64_regnum): Remove.
2575         * arch/aarch64.h: New file.
2576
2577 2017-10-24  Ulrich Weigand  <uweigand@de.ibm.com>
2578
2579         * dfp.h (decimal_from_string): Use const reference for argument.
2580         * dfp.c (decimal_from_string): Likewise.
2581
2582 2017-10-24  Ulrich Weigand  <uweigand@de.ibm.com>
2583
2584         * i387-tdep.c (print_i387_value): Use floatformat_to_string.
2585         * sh64-tdep.c (sh64_do_fp_register): Likewise.
2586         * mips-tdep.c (mips_print_fp_register): Likewise.
2587
2588 2017-10-24  Ulrich Weigand  <uweigand@de.ibm.com>
2589
2590         * common/format.h (enum argclass): Replace decfloat_arg by
2591         dec32float_arg, dec64float_arg, and dec128float_arg.
2592         * common/format.c (parse_format_string): Update to return
2593         new decimal float argument classes.
2594
2595         * printcmd.c (printf_decfloat): Rename to ...
2596         (printf_floating): ... this.  Add argclass argument, and use it
2597         instead of parsing the format string again.  Add support for
2598         binary floating-point values, using floatformat_to_string.
2599         Convert value to the target format if it doesn't already match.
2600         (ui_printf): Call printf_floating instead of printf_decfloat,
2601         also for double_arg / long_double_arg.  Pass argclass.
2602
2603         * dfp.c (decimal_to_string): Add format string argument.
2604         * dfp.h (decimal_to_string): Likewise.
2605
2606         * doublest.c (floatformat_to_string): Add format string argument.
2607         * doublest.h (floatformat_to_string): Likewise.
2608
2609 2017-10-24  Ulrich Weigand  <uweigand@de.ibm.com>
2610
2611         * doublest.c (floatformat_precision): New routine.
2612         (floatformat_to_string): Likewise.
2613         * doublest.c (floatformat_to_string): Add prototype.
2614
2615         * printcmd.c (print_scalar_formatted): Only call print_floating
2616         on floating-point types.
2617         * valprint.c: Do not include "floatformat.h".
2618         (generic_val_print_decfloat): Remove.
2619         (generic_val_print): Call generic_val_print_float for both
2620         TYPE_CODE_FLT and TYPE_CODE_DECFLOAT.
2621         (print_floating): Use floatformat_to_string.  Handle decimal float.
2622         (print_decimal_floating): Remove, merge into floatformat_to_string.
2623         * value.h (print_decimal_floating): Remove.
2624
2625         * Makefile.in: Do not build doublest.c with -Wformat-nonliteral.
2626
2627 2017-10-24  Ulrich Weigand  <uweigand@de.ibm.com>
2628
2629         * buildsym.c (end_symtab_get_static_block): Use std::stable_sort.
2630
2631 2017-10-21  Simon Marchi  <simon.marchi@ericsson.com>
2632
2633         * memattr.h: Don't include vec.h.
2634         (struct mem_attrib): Initialize fields.
2635         <unknown>: New static method.
2636         (struct mem_region): Add constructors, operator<, initialize
2637         fields.
2638         * memattr.c: Include algorithm.
2639         (default_mem_attrib, unknown_mem_attrib): Remove.
2640         (user_mem_region_list): New global.
2641         (target_mem_region_list, mem_region_list): Change type to
2642         std::vector<mem_region>.
2643         (mem_use_target): Now a function.
2644         (target_mem_regions_valid): Change type to bool.
2645         (mem_region_lessthan, mem_region_cmp, mem_region_init): Remove.
2646         (require_user_regions): Adjust.
2647         (require_target_regions): Adjust.
2648         (create_mem_region): Adjust.
2649         (lookup_mem_region): Adjust.
2650         (invalidate_target_mem_regions): Adjust.
2651         (mem_clear): Rename to...
2652         (user_mem_clear): ... this, and adjust.
2653         (mem_command): Adjust.
2654         (info_mem_command): Adjust.
2655         (mem_enable, enable_mem_command, mem_disable,
2656         disable_mem_command): Adjust.
2657         (mem_delete): Adjust.
2658         (delete_mem_command): Adjust.
2659         * memory-map.h (parse_memory_map): Return an std::vector.
2660         * memory-map.c (parse_memory_map): Likewise.
2661         (struct memory_map_parsing_data): Add constructor.
2662         <memory_map>: Point to std::vector.
2663         (memory_map_start_memory): Adjust.
2664         (memory_map_end_memory): Adjust.
2665         (memory_map_end_property): Adjust.
2666         (clear_result): Remove.
2667         * remote.c (remote_memory_map): Return an std::vector.
2668         * target-debug.h (target_debug_print_VEC_mem_region_s__p):
2669         Remove.
2670         (target_debug_print_mem_region_vector): New.
2671         * target-delegates.c: Regenerate.
2672         * target.h (mem_region_vector): New typedef.
2673         (to_memory_map): Return mem_region_vector.
2674         (target_memory_map): Return an std::vector.
2675         * target.c (target_memory_map): Return an std::vector.
2676         (flash_erase_command): Adjust.
2677
2678 2017-10-21  Simon Marchi  <simon.marchi@ericsson.com>
2679
2680         * memory-map.c (struct memory_map_parsing_data) <property_name>:
2681         Change type to std::string.
2682         (memory_map_start_property): Adjust.
2683         (memory_map_end_property): Adjust.
2684
2685 2017-10-21  Simon Marchi  <simon.marchi@polymtl.ca>
2686
2687         * infrun.h: Include common/byte-vector.h.
2688         (struct displaced_step_closure): New struct.
2689         (struct buf_displaced_step_closure): New struct.
2690         * infrun.c (displaced_step_closure::~displaced_step_closure):
2691         Provide default implementation.
2692         (displaced_step_clear): Deallocate step closure with delete.
2693         * aarch64-tdep.c (displaced_step_closure): Rename to ...
2694         (aarch64_displaced_step_closure): ... this, extend
2695         displaced_step_closure.
2696         (aarch64_displaced_step_data) <dsc>: Change type to
2697         aarch64_displaced_step_closure.
2698         (aarch64_displaced_step_copy_insn): Adjust to type change, use
2699         unique_ptr.
2700         (aarch64_displaced_step_fixup): Add cast for displaced step
2701         closure.
2702         * amd64-tdep.c (displaced_step_closure): Rename to ...
2703         (amd64_displaced_step_closure): ... this, extend
2704         displaced_step_closure.
2705         <insn_buf>: Change type to std::vector<gdb_byte>.
2706         <max_len>: Remove.
2707         (fixup_riprel): Change type of DSC parameter, adjust to type
2708         change of insn_buf.
2709         (fixup_displaced_copy): Change type of DSC parameter.
2710         (amd64_displaced_step_copy_insn): Instantiate
2711         amd64_displaced_step_closure.
2712         (amd64_displaced_step_fixup): Add cast for closure type, adjust
2713         to type change of insn_buf.
2714         * arm-linux-tdep.c (arm_linux_cleanup_svc): Change type of
2715         parameter DSC.
2716         (arm_linux_copy_svc): Likewise.
2717         (cleanup_kernel_helper_return): Likewise.
2718         (arm_catch_kernel_helper_return): Likewise.
2719         (arm_linux_displaced_step_copy_insn): Instantiate
2720         arm_displaced_step_closure.
2721         * arm-tdep.c (arm_pc_is_thumb): Add cast for closure.
2722         (displaced_read_reg): Change type of parameter DSC.
2723         (branch_write_pc): Likewise.
2724         (load_write_pc): Likewise.
2725         (alu_write_pc): Likewise.
2726         (displaced_write_reg): Likewise.
2727         (arm_copy_unmodified): Likewise.
2728         (thumb_copy_unmodified_32bit): Likewise.
2729         (thumb_copy_unmodified_16bit): Likewise.
2730         (cleanup_preload): Likewise.
2731         (install_preload): Likewise.
2732         (arm_copy_preload): Likewise.
2733         (thumb2_copy_preload): Likewise.
2734         (install_preload_reg): Likewise.
2735         (arm_copy_preload_reg): Likewise.
2736         (cleanup_copro_load_store): Likewise.
2737         (install_copro_load_store): Likewise.
2738         (arm_copy_copro_load_store) Likewise.
2739         (thumb2_copy_copro_load_store): Likewise.
2740         (cleanup_branch): Likewise.
2741         (install_b_bl_blx): Likewise.
2742         (arm_copy_b_bl_blx): Likewise.
2743         (thumb2_copy_b_bl_blx): Likewise.
2744         (thumb_copy_b): Likewise.
2745         (install_bx_blx_reg): Likewise.
2746         (arm_copy_bx_blx_reg): Likewise.
2747         (thumb_copy_bx_blx_reg): Likewise.
2748         (cleanup_alu_imm): Likewise.
2749         (arm_copy_alu_imm): Likewise.
2750         (thumb2_copy_alu_imm): Likewise.
2751         (cleanup_alu_reg): Likewise.
2752         (install_alu_reg): Likewise.
2753         (arm_copy_alu_reg): Likewise.
2754         (thumb_copy_alu_reg): Likewise.
2755         (cleanup_alu_shifted_reg): Likewise.
2756         (install_alu_shifted_reg): Likewise.
2757         (arm_copy_alu_shifted_reg): Likewise.
2758         (cleanup_load): Likewise.
2759         (cleanup_store): Likewise.
2760         (arm_copy_extra_ld_st): Likewise.
2761         (install_load_store): Likewise.
2762         (thumb2_copy_load_literal): Likewise.
2763         (thumb2_copy_load_reg_imm): Likewise.
2764         (arm_copy_ldr_str_ldrb_strb): Likewise.
2765         (cleanup_block_load_all): Likewise.
2766         (cleanup_block_store_pc): Likewise.
2767         (cleanup_block_load_pc): Likewise.
2768         (arm_copy_block_xfer): Likewise.
2769         (thumb2_copy_block_xfer): Likewise.
2770         (cleanup_svc): Likewise.
2771         (install_svc): Likewise.
2772         (arm_copy_svc): Likewise.
2773         (thumb_copy_svc): Likewise.
2774         (arm_copy_undef): Likewise.
2775         (thumb_32bit_copy_undef): Likewise.
2776         (arm_copy_unpred): Likewise.
2777         (arm_decode_misc_memhint_neon): Likewise.
2778         (arm_decode_unconditional): Likewise.
2779         (arm_decode_miscellaneous): Likewise.
2780         (arm_decode_dp_misc): Likewise.
2781         (arm_decode_ld_st_word_ubyte): Likewise.
2782         (arm_decode_media): Likewise.
2783         (arm_decode_b_bl_ldmstm): Likewise.
2784         (arm_decode_ext_reg_ld_st): Likewise.
2785         (thumb2_decode_dp_shift_reg): Likewise.
2786         (thumb2_decode_ext_reg_ld_st): Likewise.
2787         (arm_decode_svc_copro): Likewise.
2788         (thumb2_decode_svc_copro): Likewise.
2789         (install_pc_relative): Likewise.
2790         (thumb_copy_pc_relative_16bit): Likewise.
2791         (thumb_decode_pc_relative_16bit): Likewise.
2792         (thumb_copy_pc_relative_32bit): Likewise.
2793         (thumb_copy_16bit_ldr_literal): Likewise.
2794         (thumb_copy_cbnz_cbz): Likewise.
2795         (thumb2_copy_table_branch): Likewise.
2796         (cleanup_pop_pc_16bit_all): Likewise.
2797         (thumb_copy_pop_pc_16bit): Likewise.
2798         (thumb_process_displaced_16bit_insn): Likewise.
2799         (decode_thumb_32bit_ld_mem_hints): Likewise.
2800         (thumb_process_displaced_32bit_insn): Likewise.
2801         (thumb_process_displaced_insn): Likewise.
2802         (arm_process_displaced_insn): Likewise.
2803         (arm_displaced_init_closure): Likewise.
2804         (arm_displaced_step_fixup): Add cast for closure.
2805         * arm-tdep.h: Include infrun.h.
2806         (displaced_step_closure): Rename to ...
2807         (arm_displaced_step_closure): ... this, extend
2808         displaced_step_closure.
2809         <u::svc::copy_svc_os>: Change type of parameter DSC.
2810         <cleanup>: Likewise.
2811         (arm_process_displaced_insn): Likewise.
2812         (arm_displaced_init_closure): Likewise.
2813         (displaced_read_reg): Likewise.
2814         (displaced_write_reg): Likewise.
2815         * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn):
2816         Adjust.
2817         * i386-tdep.h: Include infrun.h.
2818         (i386_displaced_step_closure): New typedef.
2819         * i386-tdep.c (i386_displaced_step_copy_insn): Use
2820         i386_displaced_step_closure.
2821         (i386_displaced_step_fixup): Adjust.
2822         * rs6000-tdep.c (ppc_displaced_step_closure): New typedef.
2823         (ppc_displaced_step_copy_insn): Use ppc_displaced_step_closure
2824         and unique_ptr.
2825         (ppc_displaced_step_fixup): Adjust.
2826         * s390-linux-tdep.c (s390_displaced_step_closure): New typedef.
2827         (s390_displaced_step_copy_insn): Use s390_displaced_step_closure
2828         and unique_ptr.
2829         (s390_displaced_step_fixup): Adjust.
2830
2831 2017-10-21  Simon Marchi  <simon.marchi@polymtl.ca>
2832
2833         * interps.h (interp_resume, interp_suspend, interp_set_temp):
2834         Remove declarations.
2835
2836 2017-10-20  Tom Tromey  <tom@tromey.com>
2837
2838         * gdb_bfd.c (struct gdb_bfd_data) <included_bfds>: Now a
2839         std::vector.
2840         (gdb_bfd_record_inclusion): Update.
2841         (bfdp): Remove typedef.
2842
2843 2017-10-20  Tom Tromey  <tom@tromey.com>
2844
2845         * gdb_bfd.c (gdb_bfd_ref): Use new.
2846         (struct gdb_bfd_data): Add constructor, destructor, and member
2847         initializers.
2848         (gdb_bfd_unref): Use delete.
2849
2850 2017-10-20  Tom Tromey  <tom@tromey.com>
2851
2852         * exec.c (exec_file_attach): Use new_bfd_ref.
2853         * symfile-mem.c (symbol_file_add_from_memory): Use new_bfd_ref.
2854         * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
2855         (gdb_bfd_openw, gdb_bfd_openr_iovec, gdb_bfd_fdopenr): Use
2856         new_bfd_ref.
2857         * gdb_bfd.h (new_bfd_ref): New function.
2858
2859 2017-10-20  Pedro Alves  <palves@redhat.com>
2860
2861         * main.c (captured_command_loop): Add attribute noinline.
2862
2863 2017-10-19  Simon Marchi  <simon.marchi@ericsson.com>
2864
2865         * interps.c (struct interp_factory): Add constructor.
2866         (interp_factory_p): Remove typedef.
2867         (DEF_VEC_P(interp_factory_p)): Remove.
2868         (interpreter_factories): Change type to std::vector.
2869         (interp_factory_register): Adjust.
2870         (interp_lookup): Adjust.
2871         (interpreter_completer): Adjust.
2872
2873 2017-10-19  Tom Tromey  <tom@tromey.com>
2874
2875         * break-catch-syscall.c (catch_syscall_completer): Use
2876         std::string, gdb::unique_xmalloc_ptr.
2877
2878 2017-10-19  Tom Tromey  <tom@tromey.com>
2879
2880         * infcall.c (call_function_by_hand_dummy): Use std::string.
2881
2882 2017-10-19  Tom Tromey  <tom@tromey.com>
2883
2884         * mi/mi-main.c (mi_cmd_execute): Update.
2885         * top.h (prepare_execute_command): Return scoped_value_mark.
2886         * value.h (class scoped_value_mark): Use DISABLE_COPY_AND_ASSIGN.
2887         Add move constructor.
2888         * top.c (prepare_execute_command): Return scoped_value_mark.
2889         (execute_command): Update.
2890
2891 2017-10-19  Pedro Alves  <palves@redhat.com>
2892
2893         * xml-support.c (xml_fetch_content_from_file): Check fread's
2894         return.
2895
2896 2017-10-19  Pedro Alves  <palves@redhat.com>
2897
2898         * ser-base.c (ser_base_read_error_fd): Delete the file handler if
2899         async.
2900         (handle_error_fd): New function.
2901         (ser_base_async): Add/delete an event loop file handler for
2902         error_fd.
2903
2904 2017-10-19  Pedro Alves  <palves@redhat.com>
2905
2906         * xml-support.c (xml_fetch_content_from_file): Don't read in
2907         chunks.  Instead use fseek to determine the file's size, and read
2908         it in one go.
2909
2910 2017-11-18  Keith Seitz  <keiths@redhat.com>
2911
2912         * c-exp.y (oper): Canonicalize conversion operators of user-defined
2913         types.
2914         Add whitespace to front of type name.
2915
2916 2017-10-18  Keith Seitz  <keiths@redhat.com>
2917
2918         * dwarf2read.c (dwarf2_add_typedef): Issue a complaint on unhandled
2919         DW_AT_accessibility.
2920
2921 2017-10-18  Yao Qi  <yao.qi@linaro.org>
2922
2923         * features/tic6x-c62x-linux.c: Remove.
2924
2925 2017-10-17  Tom Tromey  <tom@tromey.com>
2926
2927         * disasm.c (do_mixed_source_and_assembly_deprecated): Use
2928         gdb::optional, ui_out_emit_list, ui_out_emit_tuple.
2929         (do_mixed_source_and_assembly): Likewise.
2930
2931 2017-10-17  Tom Tromey  <tom@tromey.com>
2932
2933         * regcache.c (regcache::xfer_part): Remove assertion.
2934
2935 2017-10-17  Pedro Alves  <palves@redhat.com>
2936
2937         * xml-support.c (xml_fetch_content_from_file): Call
2938         unique_ptr::release() instead unique_ptr::get() when passing
2939         through xrealloc.
2940
2941 2017-10-17  Yao Qi  <yao.qi@linaro.org>
2942
2943         * regcache.c (regcache::xfer_part): Remove parameters read and
2944         write, add parameter is_raw.  All callers are updated.
2945
2946 2017-10-16  Keith Seitz  <keiths@redhat.com>
2947
2948         * c-typeprint.c (enum access_specifier): Moved here from
2949         c_type_print_base.
2950         (output_access_specifier): New function.
2951         (c_type_print_base): Consider typedefs when assessing
2952         whether access labels are needed.
2953         Use output_access_specifier as needed.
2954         Output access specifier for typedefs, if needed.
2955         * dwarf2read.c (dwarf2_add_typedef): Record DW_AT_accessibility.
2956         * gdbtypes.h (struct typedef_field) <is_protected, is_private>: New
2957         fields.
2958         (TYPE_TYPEDEF_FIELD_PROTECTED, TYPE_TYPEDEF_FIELD_PRIVATE): New
2959         accessor macros.
2960
2961 2017-10-16  Tom Tromey  <tom@tromey.com>
2962
2963         * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full)
2964         (linux_fill_prpsinfo, linux_vsyscall_range_raw): Update.
2965         * target.c (target_fileio_read_stralloc): Update.
2966         * sparc64-tdep.c (adi_is_addr_mapped): Update.
2967         * target.h (target_fileio_read_stralloc): Return
2968         unique_xmalloc_ptr.
2969
2970 2017-10-16  Tom Tromey  <tom@tromey.com>
2971
2972         * xml-syscall.c (xml_init_syscalls_info): Update.
2973         * xml-support.c (xinclude_start_include): Update.
2974         (xml_fetch_content_from_file): Return unique_xmalloc_ptr.
2975         * xml-support.h (xml_fetch_another): Return unique_xmalloc_ptr.
2976         (xml_fetch_content_from_file): Likewise.
2977         * osdata.c (get_osdata): Update.
2978         * target.h (target_read_stralloc, target_get_osdata): Return
2979         unique_xmalloc_ptr.
2980         * solib-aix.c (solib_aix_get_library_list): Update.
2981         * solib-target.c (solib_target_current_sos): Update.
2982         * solib-svr4.c (svr4_current_sos_via_xfer_libraries): Update.
2983         * xml-tdesc.c (fetch_available_features_from_target): Update.
2984         (target_fetch_description_xml): Update.
2985         (file_read_description_xml): Update.
2986         * remote.c (remote_get_threads_with_qxfer, remote_memory_map)
2987         (remote_traceframe_info, btrace_read_config, remote_read_btrace)
2988         (remote_pid_to_exec_file): Update.
2989         * target.c (target_read_stralloc): Return unique_xmalloc_ptr.
2990         (target_get_osdata): Likewise.
2991
2992 2017-10-16  Tom Tromey  <tom@tromey.com>
2993
2994         * remote.c (remote_register_number_and_offset): Use std::vector.
2995         (remote_set_syscall_catchpoint): Use gdb::unique_xmalloc_ptr.
2996         (putpkt_binary): Use gdb::def_vector.
2997         (compare_sections_command): Use gdb::byte_vector.
2998
2999 2017-10-16  Tom Tromey  <tom@tromey.com>
3000
3001         * ppc-linux-nat.c (hwdebug_insert_point): Use
3002         gdb::unique_xmalloc_ptr, XDUP.
3003
3004 2017-10-16  Tom Tromey  <tom@tromey.com>
3005
3006         * probe.c (parse_probes): Use std::string.
3007         (info_probes_for_ops, enable_probes_command)
3008         (disable_probes_command): Remove cleanups.
3009
3010 2017-10-16  Tom Tromey  <tom@tromey.com>
3011
3012         * buildsym.c (block_compar): Remove.
3013         (end_symtab_get_static_block): Use std::vector.
3014
3015 2017-10-16  Simon Marchi  <simon.marchi@ericsson.com>
3016
3017         * memrange.h (struct mem_range): Define operator< and operator==.
3018         (mem_range_s): Remove.
3019         (DEF_VEC_O (mem_range_s)): Remove.
3020         (normalize_mem_ranges): Change parameter type to std::vector.
3021         * memrange.c (compare_mem_ranges): Remove.
3022         (normalize_mem_ranges): Change parameter type to std::vector,
3023         adjust to vector change.
3024         * exec.c (section_table_available_memory): Return vector, remove
3025         parameter.
3026         (section_table_read_available_memory): Adjust to std::vector
3027         change.
3028         * remote.c (remote_read_bytes): Adjust to std::vector
3029         change.
3030         * tracepoint.h (traceframe_available_memory): Change parameter
3031         type to std::vector.
3032         * tracepoint.c (traceframe_available_memory): Change parameter
3033         type to std::vector, adjust.
3034         * gdb/mi/mi-main.c (mi_cmd_trace_frame_collected): Adjust to
3035         std::vector change.
3036         * gdb/Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
3037         unittests/memrange-selftests.c.
3038         (SUBDIR_UNITTESTS_OBS): Add memrange-selftests.o.
3039         * gdb/unittests/memrange-selftests.c: New file.
3040
3041 2017-10-16  Pedro Alves  <palves@redhat.com>
3042
3043         * elfread.c (probe_key_free): Rename range-for variable.
3044         * probe.c (parse_probes_in_pspace, find_probes_in_objfile)
3045         (find_probe_by_pc, collect_probes): Rename range-for variable.
3046
3047 2017-10-16  Yao Qi  <yao.qi@linaro.org>
3048
3049         * features/Makefile (XMLTOC): Remove tic6x-*.xml.
3050         * features/tic6x-c62x.c: Remove.
3051         * features/tic6x-c64x-linux.c: Remove.
3052         * features/tic6x-c64x.c: Remove.
3053         * features/tic6x-c64xp-linux.c: Remove.
3054         * features/tic6x-c64xp.c: Remove.
3055         * tic6x-linux-tdep.c (_initialize_tic6x_linux_tdep): Don't call
3056         initialize_tdesc_tic6x_*_linux functions.
3057         * tic6x-tdep.c (_initialize_tic6x_tdep): Don't call
3058         initialize_tdesc_tic6x_* functions.
3059
3060 2017-10-16  Yao Qi  <yao.qi@linaro.org>
3061
3062         * features/Makefile (WHICH): Remove tic6x-c64xp, tic6x-c64x
3063         tic6x-c62x.
3064         * regformats/tic6x-c62x.dat: Remove.
3065         * regformats/tic6x-c64x.dat: Remove.
3066         * regformats/tic6x-c64xp.dat: Remove.
3067
3068 2017-10-15  Simon Marchi  <simon.marchi@ericsson.com>
3069
3070         * tracepoint.c (parse_traceframe_info): Return a unique_ptr
3071         (the !HAVE_LIBEXPAT version).
3072
3073 2017-10-14  Simon Marchi  <simon.marchi@ericsson.com>
3074
3075         * nat/linux-osdata.c (struct pid_pgid_entry) <operator<>: Make
3076         const.
3077
3078 2017-10-14  Simon Marchi  <simon.marchi@polymtl.ca>
3079
3080         * target.h: Include tracepoint.h.
3081         (enum trace_find_type): Move to tracepoint.h.
3082         (struct target_ops) <to_traceframe_info>: Return a unique ptr.
3083         * tracepoint.h: Don't include target.h
3084         (enum trace_find_type): Move from target.h.
3085         (parse_traceframe_info): Return a unique ptr.
3086         * tracepoint.c (current_traceframe_info): Change type to unique
3087         ptr.
3088         (free_traceframe_info): Remove.
3089         (clear_traceframe_info): Don't manually free
3090         current_traceframe_info.
3091         (free_result): Remove.
3092         (parse_traceframe_info): Return a unique ptr.
3093         (get_traceframe_info): Adjust to unique ptr.
3094         * ctf.c (ctf_traceframe_info): Return a unique ptr.
3095         * remote.c (remote_traceframe_info): Return a unique ptr.
3096         * tracefile-tfile.c (tfile_traceframe_info): Return a unique
3097         ptr.
3098         * target-debug.h (target_debug_print_traceframe_info_up): New
3099         macro.
3100         * target-delegates.c: Regenerate.
3101
3102 2017-10-14  Simon Marchi  <simon.marchi@polymtl.ca>
3103
3104         * memrange.h (struct mem_range): Add constructors.
3105         * tracepoint.h (struct traceframe_info) <memory>: Change type to
3106         std::vector<mem_range>.
3107         * tracepoint.c (free_traceframe_info): Don't manually free
3108         vector.
3109         (traceframe_info_start_memory): Adjust to vector change.
3110         (traceframe_available_memory): Likewise.
3111         * tracefile-tfile.c (build_traceframe_info): Likewise.
3112         * ctf.c (ctf_traceframe_info): Likewise.
3113
3114 2017-10-14  Simon Marchi  <simon.marchi@polymtl.ca>
3115
3116         * tracepoint.h (struct traceframe_info) <tvars>: Change type to
3117         std::vector<int>.
3118         * tracepoint.c (free_traceframe_info): Deallocate with delete.
3119         (traceframe_info_start_tvar): Adjust to vector change.
3120         (parse_traceframe_info): Allocate with new.
3121         * ctf.c (ctf_traceframe_info): Allocate with new, adjust to
3122         vector change.
3123         * tracefile-tfile.c (build_traceframe_info): Adjust to vector
3124         change.
3125         tfile_traceframe_info): Allocate with new.
3126         * mi/mi-main.c (mi_cmd_trace_frame_collected): Adjust to vector
3127         change.
3128
3129 2017-10-14  Simon Marchi  <simon.marchi@polymtl.ca>
3130
3131         * tracepoint.c (traceframe_info): Rename to...
3132         (current_traceframe_info): ...this.
3133         (clear_traceframe_info): Adjust.
3134         (get_traceframe_info): Adjust.
3135
3136 2017-10-14  Simon Marchi  <simon.marchi@ericsson.com>
3137
3138         * nat/linux-osdata.c: Include algorithm.
3139         (compare_processes): Remove.
3140         (struct pid_pgid_entry): New struct.
3141         (linux_xfer_osdata_processgroups): Use std::vector instead of
3142         XNEWVEC.
3143
3144 2017-10-14  Simon Marchi  <simon.marchi@ericsson.com>
3145
3146         * objfiles.h: Don't include symfile.h.
3147         (struct partial_symbol): Remove forward-declaration.
3148         (struct objfile) <global_psymbols, static_psymbols>: Change type
3149         to std::vector<partial_symbol *>.
3150         * objfiles.c (objfile::objfile): Don't memset those fields.
3151         (objfile::~objfile): Don't free those fields.
3152         * psympriv.h (struct psymbol_allocation_list): Remove
3153         forward-declaration.
3154         (add_psymbol_to_list): Change psymbol_allocation_list parameter
3155         to std::vector.
3156         (start_psymtab_common): Change parameters to std::vector.
3157         * psymtab.c: Include algorithm.
3158         (require_partial_symbols): Call shrink_to_fit.
3159         (find_pc_sect_psymbol): Adjust to vector change.
3160         (match_partial_symbol): Likewise.
3161         (lookup_partial_symbol): Likewise.
3162         (psym_relocate): Likewise.
3163         (dump_psymtab): Likewise.
3164         (recursively_search_psymtabs): Likewise.
3165         (compare_psymbols): Remove.
3166         (sort_pst_symbols): Adjust to vector change.
3167         (start_psymtab_common): Likewise.
3168         (end_psymtab_common): Likewise.
3169         (psymbol_bcache_full): De-constify return value.
3170         (add_psymbol_to_bcache): Likewise.
3171         (extend_psymbol_list): Remove.
3172         (append_psymbol_to_list): Adjust to vector change.
3173         (add_psymbol_to_list): Likewise.
3174         (init_psymbol_list): Likewise.
3175         (maintenance_info_psymtabs): Likewise.
3176         (maintenance_check_psymtabs): Likewise.
3177         * symfile.h (struct psymbol_allocation_list): Remove.
3178         * symfile.c (reread_symbols): Adjust to vector change.
3179         * dbxread.c (start_psymtab): Change type of parameters.
3180         (dbx_symfile_read): Adjust to vector change.
3181         (read_dbx_symtab): Likewise.
3182         (start_psymtab): Change type of parameters.
3183         * dwarf2read.c (dwarf2_build_psymtabs): Adjust to vector change.
3184         (create_partial_symtab): Likewise.
3185         (add_partial_symbol): Likewise.
3186         (write_one_signatured_type): Likewise.
3187         (recursively_write_psymbols): Likewise.
3188         * mdebugread.c (parse_partial_symbols): Likewise.
3189         * xcoffread.c (xcoff_start_psymtab): Change type of parameters.
3190         (scan_xcoff_symtab): Adjust to vector change.
3191         (xcoff_initial_scan): Likewise.
3192
3193 2017-10-13  Simon Marchi  <simon.marchi@ericsson.com>
3194
3195         * ada-typeprint.c (print_dynamic_range_bound): Use std::string.
3196
3197 2017-10-13  Yao Qi  <yao.qi@linaro.org>
3198
3199         * features/Makefile: Remove tic6x-*-expedite, add tic6x-expedite.
3200         Remove s390x-*-expedite, add s390x-expedite.
3201
3202 2017-10-13  Yao Qi  <yao.qi@linaro.org>
3203
3204         * features/s390-gs-linux64.c: Regenerated.
3205         * features/s390x-gs-linux64.c: Regenerated.
3206
3207 2017-10-13  Tom Tromey  <tom@tromey.com>
3208
3209         * compile/compile-object-run.c (do_module_cleanup): Use delete.
3210         * solib.c (update_solib_list, reload_shared_libraries_1): Use
3211         delete.
3212         * symfile.c (symbol_file_add_with_addrs): Use new.
3213         (symbol_file_add_separate): Update comment.
3214         (syms_from_objfile_1, remove_symbol_file_command): Use delete.
3215         * jit.c (jit_object_close_impl): Use new.
3216         (jit_unregister_code): Use delete.
3217         * objfiles.c (objfile::objfile): Rename from allocate_objfile.
3218         (~objfile): Rename from free_objfile.
3219         (free_objfile_separate_debug, do_free_objfile_cleanup)
3220         (free_all_objfiles, objfile_purge_solibs): Use delete.
3221         * objfiles.h (struct objfile): Add constructor and destructor.
3222         Use DISABLE_COPY_AND_ASSIGN.  Add initializers to data members.
3223         (allocate_objfile, free_objfile): Don't declare.
3224         (struct objstats): Add initializers.
3225
3226 2017-10-12  Simon Marchi  <simon.marchi@ericsson.com>
3227
3228         * arch-utils.h (simple_displaced_step_copy_insn): Remove.
3229         * arch-utils.c (simple_displaced_step_copy_insn): Remove.
3230         * gdbarch.sh (displaced_step_copy_insn): Adjust comment.
3231         * gdbarch.h: Regenerate.
3232         * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn):
3233         Adjust comment.
3234         * i386-tdep.c (i386_displaced_step_copy_insn): Adjust comment.
3235         (i386_displaced_step_fixup): Adjust comment.
3236         * rs6000-tdep.c (ppc_displaced_step_copy_insn): Adjust comment.
3237
3238 2017-10-12  Tom Tromey  <tom@tromey.com>
3239
3240         * prologue-value.h (pv_area::store_would_trash): Return bool.
3241         (pv_area::find_reg): Likewise.
3242         * prologue-value.c (pv_area::store_would_trash): Return bool.
3243         (pv_area::find_reg): Likewise.
3244
3245 2017-10-12  Tom Tromey  <tom@tromey.com>
3246
3247         * s390-linux-tdep.c (s390_store, s390_load)
3248         (s390_check_for_saved, s390_analyze_prologue): Update.
3249         * rx-tdep.c (check_for_saved, rx_analyze_prologue): Update.
3250         * rl78-tdep.c (rl78_analyze_prologue, check_for_saved): Update.
3251         * prologue-value.h (class pv_area): Move from prologue-value.c.
3252         Change names of members.  Add constructor, destructor, member
3253         functions.
3254         (make_pv_area, free_pv_area, make_cleanup_free_pv_area)
3255         (pv_area_store, pv_area_fetch, pv_area_store_would_trash)
3256         (pv_area_fetch, pv_area_scan): Don't declare.
3257         * prologue-value.c (struct pv_area::area_entry): Now member of
3258         pv_area.
3259         (struct pv_area): Move to prologue-value.h.
3260         (pv_area::pv_area): Rename from make_pv_area.
3261         (pv_area::~pv_area): Rename from free_pv_area.
3262         (do_free_pv_area_cleanup, make_cleanup_free_pv_area): Remove.
3263         (clear_entries, find_entry, overlaps, store_would_trash, store)
3264         (fetch, find_reg, scan): Now member of pv_area.
3265         Remove "area" argument.  Update.
3266         * msp430-tdep.c (check_for_saved, msp430_analyze_prologue):
3267         Update.
3268         * mn10300-tdep.c (push_reg, check_for_saved)
3269         (mn10300_analyze_prologue): Update.
3270         * mep-tdep.c (is_arg_spill, check_for_saved)
3271         (mep_analyze_prologue): Update.
3272         * m32c-tdep.c (m32c_pv_push, m32c_srcdest_fetch)
3273         (m32c_srcdest_store, m32c_pv_enter, m32c_is_arg_spill)
3274         (m32c_is_struct_return, m32c_analyze_prologue): Update.
3275         * arm-tdep.c (thumb_analyze_prologue, arm_analyze_prologue):
3276         Update.
3277         * arc-tdep.c (arc_is_in_prologue, arc_analyze_prologue): Update.
3278         * aarch64-tdep.c (aarch64_analyze_prologue): Update.
3279
3280 2017-10-12  Simon Marchi  <simon.marchi@ericsson.com>
3281
3282         * linux-nat.h (linux_nat_set_delete_thread): New declaration.
3283         * linux-nat.c (linux_nat_delete_thread): New variable.
3284         (lwp_free): Invoke linux_nat_delete_thread if set.
3285         (linux_nat_set_delete_thread): New function.
3286         * aarch64-linux-nat.c (_initialize_aarch64_linux_nat): Assign
3287         thread delete callback.
3288         * arm-linux-nat.c (arm_linux_delete_thread): New function.
3289         (_initialize_arm_linux_nat): Assign thread delete callback.
3290         * s390-linux-nat.c (s390_delete_thread): New function.
3291         (_initialize_s390_nat): Assign thread delete callback.
3292         * x86-linux-nat.c (x86_linux_add_target): Likewise.
3293         * nat/aarch64-linux.c (aarch64_linux_delete_thread): New
3294         function.
3295         * nat/aarch64-linux.h (aarch64_linux_delete_thread): New
3296         declaration.
3297         * nat/x86-linux.c (x86_linux_delete_thread): New function.
3298         * nat/x86-linux.h (x86_linux_delete_thread): New declaration.
3299
3300 2017-10-09  Tom Tromey  <tom@tromey.com>
3301
3302         * tui/tui-win.c (tui_set_win_height, parse_scrolling_args): Use
3303         std::string.
3304         * tui/tui-layout.c (enum tui_status): Use std::string.
3305
3306 2017-10-11  Tom Tromey  <tom@tromey.com>
3307
3308         * gdbthread.h (thread_command): Constify.
3309         * inferior.h (detach_command): Constify.
3310         * top.h (set_history, show_history): Constify.
3311         * arm-tdep.c (set_arm_command, show_arm_command): Constify.
3312         * serial.c (serial_set_cmd, serial_show_cmd): Constify.
3313         * bsd-kvm.c (bsd_kvm_cmd): Constify.
3314         * printcmd.c (set_command): Constify.
3315         (non_const_set_command): New function.
3316         * dcache.c (set_dcache_command, show_dcache_command): Constify.
3317         * breakpoint.c (enable_command, disable_command, delete_command)
3318         (catch_command, tcatch_command, set_breakpoint_cmd)
3319         (show_breakpoint_cmd): Constify.
3320         * macrocmd.c (macro_command): Constify.
3321         * infcmd.c (unset_command, kill_command, detach_command)
3322         (info_proc_cmd): Constify.
3323         * i386-tdep.c (set_mpx_cmd, show_mpx_cmd): Constify.
3324         * auto-load.c (show_auto_load_cmd, set_auto_load_cmd)
3325         (info_auto_load_cmd): Constify.
3326         * target-descriptions.c (set_tdesc_cmd, show_tdesc_cmd)
3327         (unset_tdesc_cmd): Constify.
3328         * ada-lang.c (set_ada_command, show_ada_command)
3329         (maint_set_ada_cmd, maint_show_ada_cmd): Constify.
3330         * guile/guile.c (set_guile_command, show_guile_command)
3331         (info_guile_command): Constify.
3332         * tui/tui-win.c (tui_command, set_tui_cmd, show_tui_cmd):
3333         Constify.
3334         * skip.c (skip_command): Constify.
3335         * compile/compile.c (_initialize_compile): Constify.
3336         * dwarf2read.c (set_dwarf_cmd, show_dwarf_cmd): Constify.
3337         * btrace.c (maint_btrace_cmd, maint_btrace_set_cmd)
3338         (maint_btrace_show_cmd, maint_btrace_pt_set_cmd)
3339         (maint_btrace_pt_show_cmd): Constify.
3340         * remote.c (set_remote_cmd, show_remote_cmd, remote_command):
3341         Constify.
3342         * python/python.c (user_show_python, user_set_python): Constify.
3343         * mips-tdep.c (set_mips_command, show_mips_command)
3344         (set_mipsfpu_command): Constify.
3345         * record-btrace.c (cmd_record_btrace_start)
3346         (cmd_set_record_btrace, cmd_show_record_btrace)
3347         (cmd_set_record_btrace_bts, cmd_show_record_btrace_bts)
3348         (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): Constify.
3349         * rs6000-tdep.c (set_powerpc_command, show_powerpc_command):
3350         Constify.
3351         * symfile.c (overlay_command): Constify.
3352         * spu-tdep.c (set_spu_command, show_spu_command): Constify.
3353         * cli/cli-logging.c (set_logging_command, show_logging_command):
3354         Constify.
3355         * cli/cli-dump.c (dump_command, append_command)
3356         (srec_dump_command, ihex_dump_command, verilog_dump_command)
3357         (tekhex_dump_command, binary_dump_command)
3358         (binary_append_command): Constify.
3359         * cli/cli-decode.c (struct cmd_list_element): Change type of
3360         "fun".
3361         * cli/cli-cmds.c (info_command, show_command, set_debug)
3362         (show_debug): Constify.
3363         (show_command): Add non-const overload.
3364         * top.c (set_history, show_history): Constify.
3365         * sh-tdep.c (set_sh_command, show_sh_command): Constify.
3366         * command.h (add_prefix_cmd): Accept a cmd_const_cfunc_ftype.
3367         * target.c (target_command): Constify.
3368         * sparc64-tdep.c (info_adi_command): Constify.
3369         * record-full.c (cmd_record_full_start): Constify.
3370         (set_record_full_command): Constify.  Fix typo.
3371         (show_record_full_command): Constify.
3372         * thread.c (thread_command, thread_apply_command): Constify.
3373         * memattr.c (dummy_cmd): Constify.
3374         * value.c (function_command): Constify.
3375         * frame.c (set_backtrace_cmd, show_backtrace_cmd): Constify.
3376         * probe.c (info_probes_command): Constify.
3377         * ser-tcp.c (set_tcp_cmd, show_tcp_cmd): Constify.
3378         * gnu-nat.c (set_task_cmd, show_task_cmd, set_thread_cmd)
3379         (show_thread_cmd, set_thread_default_cmd)
3380         (show_thread_default_cmd): Constify.
3381         (check_empty): Constify.
3382         * tracepoint.c (tfind_command): Constify.
3383         * cp-support.c (maint_cplus_command): Constify.
3384         * windows-tdep.c (info_w32_command): Constify.
3385         * record.c (cmd_record_start, set_record_command)
3386         (show_record_command, info_record_command, cmd_record_goto):
3387         Constify.
3388         * ravenscar-thread.c (set_ravenscar_command)
3389         (show_ravenscar_command): Constify.
3390         * utils.c (set_internal_problem_cmd, show_internal_problem_cmd):
3391         Constify.
3392         (add_internal_problem_command): Remove casts.
3393         * arc-tdep.c (maintenance_print_arc_command): Constify.
3394         * valprint.c (set_print, show_print, set_print_raw)
3395         (show_print_raw): Constify.
3396         * maint.c (maintenance_command, maintenance_info_command)
3397         (maintenance_print_command, maintenance_set_cmd)
3398         (maintenance_show_cmd, set_per_command_cmd)
3399         (show_per_command_cmd, maintenance_check_command): Constify.
3400         * language.c (set_check, show_check): Constify.
3401         * typeprint.c (show_print_type, set_print_type): Constify.
3402         * go32-nat.c (go32_info_dos_command): Constify.
3403
3404 2017-10-11  Tom Tromey  <tom@tromey.com>
3405
3406         * breakpoint.c (prepare_re_set_context): Remove.
3407         (breakpoint_re_set_one): Update.  Don't use cleanups.
3408         (breakpoint_re_set): Use scoped_restore, std::string, and
3409         scoped_restore_current_language.
3410
3411 2017-10-11  Tom Tromey  <tom@tromey.com>
3412
3413         * breakpoint.c (commands_command_1): Use std::string.
3414         (cleanup_executing_breakpoints): Remove.
3415         (bpstat_do_actions_1): Use scoped_restore.
3416         (bpstat_check_watchpoint): Use std::string.
3417         (decode_static_tracepoint_spec): Likewise.
3418         (break_range_command): Likewise.
3419         (watch_command_1): Likewise.
3420         (compare_breakpoints): Change argument types.
3421         (clear_command): Use std::vector.
3422         (cleanup_executing_breakpoints): Remove.
3423         (update_global_location_list): Use unique_xmalloc_ptr.
3424         (strace_command): Remove unused declaration.
3425
3426 2017-10-11  John Baldwin  <jhb@FreeBSD.org>
3427
3428         * Makefile.in (ALLDEPFILES): Add arm-fbsd-nat.c.
3429         * NEWS: Mention new FreeBSD/arm native configuration.
3430         * configure.host: Add arm*-*-freebsd*.
3431         * configure.nat: Likewise.
3432         * arm-fbsd-nat.c: New file.
3433
3434 2017-10-11  John Baldwin  <jhb@FreeBSD.org>
3435
3436         * Makefile.in (ALL_TARGET_OBS): Add arm-fbsd-tdep.o.
3437         (ALLDEPFILES): Add arm-fbsd-tdep.c.
3438         * NEWS: Mention new FreeBSD/arm target.
3439         * configure.tgt: Add arm*-*-freebsd*.
3440         * arm-fbsd-tdep.c: New file.
3441         * arm-fbsd-tdep.h: New file.
3442
3443 2017-10-11  Maciej W. Rozycki  <macro@imgtec.com>
3444
3445         * linux-tdep.c (linux_make_corefile_notes): Remove call to
3446         `gdbarch_elfcore_write_linux_prpsinfo'.
3447         * gdbarch.sh (elfcore_write_linux_prpsinfo): Remove architecture
3448         method.
3449         (elf_internal_linux_prpsinfo): Remove declaration.
3450         * gdbarch.h: Regenerate.
3451         * gdbarch.c: Regenerate.
3452
3453 2017-10-11  Maciej W. Rozycki  <macro@imgtec.com>
3454
3455         * ppc-linux-tdep.c (ppc_linux_init_abi): Remove call to
3456         `set_gdbarch_elfcore_write_linux_prpsinfo'.
3457
3458 2017-10-11  Pedro Alves  <palves@redhat.com>
3459
3460         * breakpoint.c (reattach_breakpoints): Delete.
3461         * breakpoint.h (reattach_breakpoints): Delete.
3462
3463 2017-10-11  Simon Marchi  <simon.marchi@ericsson.com>
3464
3465         * symfile.c (registered_sym_fns): Make struct, not typedef.
3466         (DEF_VEC_O (registered_sym_fns)): Remove.
3467         (symtab_fns): Change type to std::vector.
3468         (add_symtab_fns): Adjust.
3469         (find_sym_fns): Adjust.
3470
3471 2017-10-11  Anton Kolesov  <Anton.Kolesov@synopsys.com>
3472
3473         * arc-tdep.c (arc_gdbarch_init): Pass proper cpu value to disassembler.
3474         * arc-tdep.h (arc_arch_is_em): New function.
3475         (arc_arch_is_hs): Likewise.
3476
3477 2017-10-11  Egeyar Bagcioglu  <egeyar.bagcioglu@oracle.com>
3478
3479         * macrotab.h (macro_lookup_inclusion): Remove unnecessary
3480         parentheses in the declaration.
3481         (macro_lookup_inclusion): Likewise.
3482         (macro_lookup_definition): Likewise.
3483         * p-lang.h (pascal_builtin_types): Likewise.
3484         * tui/tui-data.c (tui_win_list): Likewise.
3485         * tui/tui-data.h (tui_win_list): Likewise.
3486         * utils.h (make_cleanup_free_section_addr_info): Likewise.
3487
3488 2017-10-11  Mark Rages  <markrages@gmail.com>
3489
3490         * target-memory.c (block_boundaries): Fix for block address not
3491         aligned on block size.
3492
3493 2017-10-10  Pedro Alves <palves@redhat.com>
3494             Tom Tromey  <tom@tromey.com>
3495
3496         * breakpoint.c (struct captured_breakpoint_query_args)
3497         (do_captured_breakpoint_query, gdb_breakpoint_query): Delete.
3498         (print_breakpoint): New.
3499         * breakpoint.h (print_breakpoint): Declare.
3500         * common/common-exceptions.h (enum return_reason): Remove
3501         references to catch_exceptions.
3502         * exceptions.c (catch_exceptions, catch_exceptions_with_msg):
3503         Delete.
3504         * exceptions.h (catch_exceptions_ftype, catch_exceptions)
3505         (catch_exception_ftype, catch_exceptions_with_msg): Delete.
3506         * gdb.h: Delete.
3507         * gdbthread.h (thread_select): Declare.
3508         * mi/mi-cmd-break.c: Don't include gdb.h.
3509         (breakpoint_notify): Use print_breakpoint.
3510         * mi/mi-cmd-catch.c: Don't include gdb.h.
3511         * mi/mi-interp.c: Don't include gdb.h.
3512         (mi_print_breakpoint_for_event): New.
3513         (mi_breakpoint_created, mi_breakpoint_modified): Use
3514         mi_print_breakpoint_for_event.
3515         * mi/mi-main.c: Don't include gdb.h.
3516         (mi_cmd_thread_select): Parse the global thread ID here.  Use
3517         thread_select instead of gdb_thread_select.
3518         (mi_cmd_thread_list_ids): Output "thread-ids" tuple here instead
3519         of using gdb_list_thread_ids.
3520         * remote-fileio.c (do_remote_fileio_request): Change type.  Reply
3521         FILEIO_ENOSYS here.
3522         (remote_fileio_request): Use TRY/CATCH instead of
3523         catch_exceptions.
3524         * symfile-mem.c (struct symbol_file_add_from_memory_args)
3525         (symbol_file_add_from_memory_wrapper): Delete.
3526         (add_vsyscall_page): Use TRY/CATCH instead of catch_exceptions.
3527         * thread.c: Don't include gdb.h.
3528         (do_captured_list_thread_ids, gdb_list_thread_ids): Delete.
3529         (thread_alive): Use thread_select.
3530         (do_captured_thread_select): Delete, parts salvaged as ...
3531         (thread_select): ... this new function.
3532         (gdb_thread_select): Delete.
3533
3534 2017-10-10  Pedro Alves  <palves@redhat.com>
3535             Tom Tromey  <tom@tromey.com>
3536
3537         * breakpoint.c (breakpoint_cond_eval): Change return type to bool
3538         and reverse logic.
3539         (WP_DELETED, WP_VALUE_CHANGED, WP_VALUE_NOT_CHANGED, WP_IGNORE):
3540         No longer macros.  Instead ...
3541         (enum wp_check_result): They're now values of this new
3542         enumeration.
3543         (watchpoint_check): Change return type to wp_check_result and
3544         parameter type to bpstat.
3545         (bpstat_check_watchpoint): Use TRY/CATCH instead of catch_errors.
3546         (bpstat_check_breakpoint_conditions): Use TRY/CATCH instead of
3547         catch_errors.  Reverse logic of watchpoint_check call.
3548         (breakpoint_re_set_one): Now returns void and takes a breakpoint
3549         pointer as parameter.
3550         (breakpoint_re_set): Use TRY/CATCH instead of catch_errors.
3551         * common/common-exceptions.c (throw_exception_sjlj): Update
3552         comments to avoid mentioning catch_errors.
3553         * exceptions.c (catch_errors): Delete.
3554         * exceptions.h: Update comments to avoid mentioning catch_errors.
3555         (catch_errors_ftype, catch_errors): Delete.
3556         * infrun.c (normal_stop): Use TRY/CATCH instead of catch_errors.
3557         (hook_stop_stub): Delete.
3558         (restore_selected_frame): Change return type to void, and
3559         parameter type to const frame_id &.
3560         (restore_infcall_control_state): Use TRY/CATCH instead of
3561         catch_errors.
3562         * main.c (captured_command_loop): Return void and remove
3563         parameter.  Remove references to catch_errors.
3564         (captured_main): Use TRY/CATCH instead of catch_errors.
3565         * objc-lang.c (objc_submethod_helper_data)
3566         (find_objc_msgcall_submethod_helper): Delete.
3567         (find_objc_msgcall_submethod): Use TRY/CATCH instead of
3568         catch_errors.
3569         * record-full.c (record_full_message): Return void.
3570         (record_full_message_args, record_full_message_wrapper): Delete.
3571         (record_full_message_wrapper_safe): Return bool and use TRY/CATCH
3572         instead of catch_errors.
3573         * solib-aix.c (solib_aix_open_symbol_file_object): Change
3574         parameter type to int.
3575         * solib-darwin.c (open_symbol_file_object): Ditto.
3576         * solib-dsbt.c (open_symbol_file_object): Ditto.
3577         * solib-frv.c (open_symbol_file_object): Ditto.
3578         * solib-svr4.c (open_symbol_file_object): Ditto.
3579         * solib-target.c (solib_target_open_symbol_file_object): Ditto.
3580         * solib.c (update_solib_list): Use TRY/CATCH instead of
3581         catch_errors.
3582         * solist.h (struct target_so_ops) <open_symbol_file_object>:
3583         Change type.
3584         * symmisc.c (struct print_symbol_args): Remove.
3585         (dump_symtab_1): Use TRY/CATCH instead of catch_errors.
3586         (print_symbol): Change type.
3587         * windows-nat.c (handle_load_dll, handle_unload_dll): Return void
3588         and remove parameters.
3589         (catch_errors): New.
3590         (get_windows_debug_event): Adjust.
3591
3592 2017-10-09  Tom Tromey  <tom@tromey.com>
3593
3594         * mi/mi-main.c (free_splay_tree): Remove.
3595         (list_available_thread_groups): Use splay_tree_up.
3596         * common/gdb_splay_tree.h: New file.
3597
3598 2017-10-09  Tom Tromey  <tom@tromey.com>
3599
3600         * mi/mi-main.c (do_nothing): Remove.
3601         (list_available_thread_groups): Update.
3602
3603 2017-10-09  Pedro Alves  <palves@redhat.com>
3604
3605         * infrun.c (handle_inferior_event_1) <TARGET_WAITKIND_EXECD>: Skip
3606         reading registers when switching context.
3607
3608 2017-10-09  John Baldwin  <jhb@FreeBSD.org>
3609
3610         * fbsd-nat.c (fbsd_siginfo_size): Use gdbarch_long_bit.
3611         (fbsd_convert_siginfo): Likewise.
3612         * fbsd-tdep.c (fbsd_core_xfer_siginfo): Likewise.
3613
3614 2017-10-09  Simon Marchi  <simon.marchi@polymtl.ca>
3615
3616         * configure.ac (try_guile_versions): Remove guile-2.2.
3617         * configure: Regenerate.
3618
3619 2017-10-09  Tom Tromey  <tom@tromey.com>
3620
3621         * Makefile.in (COMPILE.post, POSTCOMPILE): Restore $(basename).
3622         (COMPILE.pre): Use $(CXX).
3623
3624 2017-10-09  Pedro Alves  <palves@redhat.com>
3625
3626         * cp-support.c (cp_remove_params): Return a gdb::unique_xmalloc_ptr.
3627         Use bool.
3628         (overload_list_add_symbol): Adjust to use gdb::unique_xmalloc_ptr.
3629         * cp-support.h (cp_remove_params): Now returns a
3630         gdb::unique_xmalloc_ptr.
3631         * dwarf2read.c (find_slot_in_mapped_hash): Now returns bool.
3632         Adjust to cp_remove_params returning a gdb::unique_xmalloc_ptr.
3633         * psymtab.c (psymtab_search_name): Adjust to cp_remove_params
3634         returning a gdb::unique_xmalloc_ptr.
3635         (lookup_partial_symbol): Adjust to use gdb::unique_xmalloc_ptr.
3636         * stack.c (find_frame_funname): Adjust to cp_remove_params
3637         returning a gdb::unique_xmalloc_ptr.
3638
3639 2017-10-08  Tom Tromey  <tom@tromey.com>
3640
3641         * dwarf2read.c (dwarf2_get_dwz_file): Use
3642         gdb::unique_xmalloc_ptr.
3643         (find_slot_in_mapped_hash): Likewise.
3644         (dwarf2_physname): Likewise.
3645         (create_dwo_unit_in_dwp_v1): Use std::string.
3646         (create_dwo_unit_in_dwp_v2): Likewise.
3647         (lookup_dwo_cutu): Likewise.
3648         (inherit_abstract_dies): Use std::vector.
3649         (read_array_type): Likewise.
3650         (dwarf_decode_macros): Remove unused declaration.
3651         (unsigned_int_compar): Remove.
3652         (dwarf2_build_psymtabs_hard): Use scoped_restore.
3653         (psymtabs_addrmap_cleanup): Remove.
3654
3655 2017-10-08  Tom Tromey  <tom@tromey.com>
3656
3657         * frame-unwind.c (frame_unwind_try_unwinder): Update.
3658         * frame.h (frame_cleanup_after_sniffer): Declare.
3659         (frame_prepare_for_sniffer): Return void.
3660         * frame.c (frame_cleanup_after_sniffer): No longer static.  Change
3661         type of argument.
3662         (frame_prepare_for_sniffer): Return void.
3663
3664 2017-10-08  Tom Tromey  <tom@tromey.com>
3665
3666         * utils.h (make_cleanup_value_free): Remove.
3667         * utils.c (do_value_free, struct cleanup): Remove.
3668         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full) <DWARF_VALUE_STACK>:
3669         Use gdb_value_up.
3670         * value.h (struct value_deleter): New.
3671         (gdb_value_up): New typedef.
3672
3673 2017-10-08  Tom Tromey  <tom@tromey.com>
3674
3675         * symtab.c (free_search_symbols, do_free_search_symbols_cleanup)
3676         (make_cleanup_free_search_symbols): Remove.
3677         (search_symbols): Return std::vector.
3678         (symbol_search::compare_search_syms): Now member of
3679         symbol_search.  Change arguments.
3680         (sort_search_symbols_remove_dups): Change arguments.  Rewrite.
3681         (symtab_symbol_info, rbreak_command): Update.
3682         * symtab.h (struct symbol_search) <next>: Remove.
3683         Add constructors.
3684         (symbol_search::operator<): New function.
3685         (symbol_search::operator==): New function.
3686         (search_symbols): Remove std::vector.
3687         (free_search_symbols, make_cleanup_free_search_symbols): Remove.
3688         (symbol_search::compare_search_syms): Declare.
3689
3690 2017-10-06  Yao Qi  <yao.qi@linaro.org>
3691
3692         * Makefile.in (ALL_64_TARGET_OBS): Replace aarch64-insn.o with
3693         arch/aarch64-insn.o.
3694         Remove one rule.
3695         * configure.tgt: Replace aarch64-insn.o with arch/aarch64-insn.o.
3696
3697 2017-10-06  Yao Qi  <yao.qi@linaro.org>
3698
3699         * Makefile.in (ALL_TARGET_OBS): Replace arm.o, arm-get-next-pcs.o,
3700         and arm-linux.o with arch/arm.o, arch/arm-get-next-pcs.o and
3701         arch/arm-linux.o respectively.
3702         * configure.tgt: Likewise.
3703
3704 2017-10-06  Yao Qi  <yao.qi@linaro.org>
3705
3706         * Makefile.in (ALL_TARGET_OBS): Rename i386.o to arch/i386.o.
3707         * configure.tgt (i386_tobjs): Replace i386.o with arch/i386.o.
3708
3709 2017-10-06  Pedro Alves  <palves@redhat.com>
3710
3711         * windows-nat.c: Include <algorithm>.
3712
3713 2017-10-06  Yao Qi  <yao.qi@linaro.org>
3714
3715         * configure.tgt (i386_tobjs): New variable.
3716         (amd64_tobjs): New variable.
3717         Set $cpu_obs and $os_obs.
3718
3719 2017-10-06  Yao Qi  <yao.qi@linaro.org>
3720
3721         * Makefile.in (CONFIG_SRC_SUBDIR): New.
3722         (ALL_64_TARGET_OBS): Replace amd64.o with arch/amd64.o.
3723         (clean): Remove object files and dependency files.
3724         (distclean): Remove the directory.
3725         * configure.ac: Invoke AC_CONFIG_COMMANDS.
3726         * configure: Re-generated.
3727         * configure.tgt: Replace amd64.o with arch/amd64.o.
3728
3729 2017-10-05  Jose E. Marchesi  <jose.marchesi@oracle.com>
3730
3731         PR build/22188
3732         * arm-tdep.c (arm_decode_misc_memhint_neon): Fix decoding of CPS
3733         and SETEND.
3734
3735 2017-10-05  Pedro Alves  <palves@redhat.com>
3736
3737         * linux-nat.c (linux_child_follow_fork): When following the parent
3738         and detaching the child, consult the parent thread's architecture
3739         instead of the child's.
3740
3741 2017-10-05  Ulrich Weigand  <uweigand@de.ibm.com>
3742
3743         * ax.h: Do not include "doublest.h".
3744         (union agent_val): Remove.
3745
3746 2017-10-05  Ulrich Weigand  <uweigand@de.ibm.com>
3747
3748         * dfp.h (MAX_DECIMAL_STRING): Move to dfp.c.
3749         (decimal_to_string): Return std::string object.
3750         (decimal_from_string): Accept std::string object.  Return bool.
3751         (decimal_from_integral, decimal_from_doublest): Remove.
3752         (decimal_from_longest): Add prototype.
3753         (decimal_from_ulongest): Likewise.
3754         (decimal_to_longest): Likewise.
3755         (decimal_from_doublest): Likewise.
3756         * dfp.c: Do not include "gdbtypes.h" or "value.h".
3757         (MAX_DECIMAL_STRING): Move here.
3758         (decimal_to_string): Return std::string object.
3759         (decimal_from_string): Accept std::string object.  Return bool.
3760         (decimal_from_integral): Remove, replace by ...
3761         (decimal_from_longest, decimal_from_ulongest): ... these new functions.
3762         (decimal_to_longest): New function.
3763         (decimal_from_floating): Remove, replace by ...
3764         (decimal_from_doublest): ... this new function.
3765         (decimal_to_doublest): Update to new decimal_to_string interface.
3766
3767         * value.c (unpack_long): Use decimal_to_longest.
3768         * valops.c (value_cast): Use decimal_from_doublest instead of
3769         decimal_from_floating.  Use decimal_from_[u]longest isntead of
3770         decimal_from_integral.
3771         * valarith.c (value_args_as_decimal): Likewise.
3772         * valprint.c (print_decimal_floating): Update to new
3773         decimal_to_string interface.
3774         * printcmd.c (printf_decfloat): Likewise.
3775         * c-exp.y (parse_number): Update to new decimal_from_string interface.
3776
3777 2017-10-05  Ulrich Weigand  <uweigand@de.ibm.com>
3778
3779         * doublest.h: Do not include "floatformat.h".  Remove stale comments.
3780         * gdbtypes.c: Include "floatformat.h".
3781         * value.c: Likewise.
3782         * m68k-tdep.c: Likewise.
3783
3784         * findvar.c: Do not include "floatformat.h".
3785         * amd64-darwin-tdep.c: Likewise.
3786         * arm-linux-tdep.c: Likewise.
3787         * i386-darwin-tdep.c: Likewise.
3788         * i387-tdep.c: Likewise.
3789         * m68k-linux-tdep.c: Likewise.
3790         * mep-tdep.c: Likewise.
3791         * mips-tdep.c: Likewise.
3792         * nios2-tdep.c: Likewise.
3793         * s390-linux-tdep.c: Likewise.
3794         * sparc-obsd-tdep.c: Likewise.
3795         * sparc-tdep.c: Likewise.
3796         * sparc64-tdep.c: Likewise.
3797         * spu-tdep.c: Likewise.
3798         * tic6x-tdep.c: Likewise.
3799         * tilegx-tdep.c: Likewise.
3800         * vax-tdep.c: Likewise.
3801         * xstormy16-tdep.c: Likewise.
3802         * xtensa-tdep.c: Likewise.
3803
3804         * top.c: Do not include "doublest.h".
3805         * aarch64-tdep.c: Likewise.
3806         * alpha-tdep.c: Likewise.
3807         * arm-linux-tdep.c: Likewise.
3808         * m68k-linux-tdep.c: Likewise.
3809         * tilegx-tdep.c: Likewise.
3810         * xstormy16-tdep.c: Likewise.
3811
3812 2017-10-05  John Baldwin  <jhb@FreeBSD.org>
3813
3814         * mips-fbsd-tdep.c (MIPS_INST_ADDIU_A0_SP_N32): Define.
3815         (mipsn32_fbsd_sigframe): Define.
3816         (mips_fbsd_init_abi): Install mipsn32_fbsd_sigframe unwinder
3817         for FreeBSD/mipsn32.
3818
3819 2017-10-05  John Baldwin  <jhb@FreeBSD.org>
3820
3821         * fbsd-tdep.c (fbsd_print_auxv_entry): Handle AT_EHDRFLAGS and
3822         AT_HWCAP.
3823
3824 2017-10-05  Tristan Gingold  <tgingold@free.fr>
3825
3826         * MAINTAINERS (Misc): Update my email address.
3827
3828 2017-10-04  Pedro Alves  <palves@redhat.com>
3829
3830         * remote.c (get_remote_arch_state): New 'gdbarch' parameter.  Use
3831         it instead of target_gdbarch.
3832         (get_remote_state, get_remote_packet_size): Adjust
3833         get_remote_arch_state calls, passing down target_gdbarch
3834         explicitly.
3835         (packet_reg_from_regnum, packet_reg_from_pnum): New parameter
3836         'gdbarch' and use it instead of target_gdbarch.
3837         (get_memory_packet_size): Adjust get_remote_arch_state calls,
3838         passing down target_gdbarch explicitly.
3839         (struct stop_reply) <arch>: New field.
3840         (remote_parse_stop_reply): Use the stopped thread's architecture,
3841         not the current inferior's.  Save the architecture in the
3842         stop_reply.
3843         (process_stop_reply): Use the stop reply's architecture.
3844         (process_g_packet, remote_fetch_registers)
3845         (remote_prepare_to_store, store_registers_using_G)
3846         (remote_store_registers): Adjust get_remote_arch_state calls,
3847         using the regcache's architecture.
3848         (remote_get_trace_status): Adjust get_remote_arch_state calls,
3849         passing down target_gdbarch explicitly.
3850         * spu-multiarch.c (spu_thread_architecture): Defer to the target
3851         beneath instead of calling target_gdbarch.
3852         * target.c (default_thread_architecture): Use the specified
3853         inferior's architecture, instead of the current inferior's
3854         architecture (via target_gdbarch).
3855
3856 2017-10-04  Pedro Alves  <palves@redhat.com>
3857
3858         * regcache.c (get_thread_arch_regcache): Remove null_ptid special
3859         case.
3860         (regcache_print): Handle !target_has_registers here instead.
3861
3862 2017-10-04  Pedro Alves  <palves@redhat.com>
3863
3864         * frame.c (create_test_frame): Delete.
3865         * frame.h (create_test_frame): Delete.
3866         * gdbarch-selftests.c: Include gdbthread.h and target.h.
3867         (class regcache_test): Delete.
3868         (test_target_has_registers, test_target_has_stack)
3869         (test_target_has_memory, test_target_prepare_to_store)
3870         (test_target_store_registers): New functions.
3871         (test_target_ops): New class.
3872         (register_to_value_test): Error out if there's already a
3873         process_stratum (or higher) target pushed.  Create a fuller mock
3874         environment, with mock target_ops, inferior, address space, thread
3875         and inferior_ptid.
3876         * progspace.c (struct address_space): Move to ...
3877         * progspace.h (struct address_space): ... here.
3878         * regcache.h (regcache::~regcache, regcache::raw_write)
3879         [GDB_SELF_TEST]: No longer virtual.
3880
3881 2017-10-04  Simon Marchi  <simon.marchi@ericsson.com>
3882
3883         * mi/mi-main.c (list_available_thread_groups): Reverse filter logic.
3884
3885 2017-10-04  Pedro Alves  <palves@redhat.com>
3886
3887         * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Move code
3888         out of 'between TRY and CATCH'.
3889
3890 2017-10-04  Pedro Alves  <palves@redhat.com>
3891
3892         * cli/cli-cmds.c (complete_command): Add missing END_CATCH.
3893         * common/common-exceptions.h (TRY): Open an outermost scope.
3894         Expand intro comment.
3895         (CATCH): Reindent.
3896         (END_CATCH): Close the outermost scope.
3897         * completer.c (complete_line_internal): Add missing END_CATCH.
3898
3899 2017-10-04  Sergio Durigan Junior  <sergiodj@redhat.com>
3900
3901         * NEWS (Changes since GDB 8.0): Add entry about new
3902         'set-cwd-on-gdbserver' feature.
3903         (New remote packets): Add entry for QSetWorkingDir.
3904         * common/common-inferior.h (set_inferior_cwd): New prototype.
3905         * infcmd.c (set_inferior_cwd): Remove "static".
3906         (show_cwd_command): Expand text to include remote debugging.
3907         * remote.c: Add PACKET_QSetWorkingDir.
3908         (remote_protocol_features) <QSetWorkingDir>: New entry for
3909         PACKET_QSetWorkingDir.
3910         (extended_remote_set_inferior_cwd): New function.
3911         (extended_remote_create_inferior): Call
3912         "extended_remote_set_inferior_cwd".
3913         (_initialize_remote): Call "add_packet_config_cmd" for
3914         QSetWorkingDir.
3915
3916 2017-10-04  Sergio Durigan Junior  <sergiodj@redhat.com>
3917
3918         * NEWS (New commands): Mention "set/show cwd".
3919         * cli/cli-cmds.c (_initialize_cli_cmds): Mention "set cwd" on
3920         "cd" command's help text.
3921         * common/common-inferior.h (get_inferior_cwd): New prototype.
3922         * infcmd.c (inferior_cwd_scratch): New global variable.
3923         (set_inferior_cwd): New function.
3924         (get_inferior_cwd): Likewise.
3925         (set_cwd_command): Likewise.
3926         (show_cwd_command): Likewise.
3927         (_initialize_infcmd): Add "set/show cwd" commands.
3928         * inferior.h (class inferior) <cwd>: New field.
3929         * nat/fork-inferior.c: Include "gdb_tilde_expand.h".
3930         (fork_inferior): Change inferior's cwd before its execution.
3931         * windows-nat.c (windows_create_inferior): Pass inferior's cwd
3932         to CreateProcess.
3933
3934 2017-10-04  Sergio Durigan Junior  <sergiodj@redhat.com>
3935
3936         * Makefile.in (SFILES): Add gdb_tilde_expand.c.
3937         (HFILES_NO_SRCDIR): Add gdb_tilde_expand.h.
3938         (COMMON_OBS): Add gdb_tilde_expand.o.
3939         * common/gdb_tilde_expand.c: New file.
3940         * common/gdb_tilde_expand.h: Likewise.
3941
3942 2017-10-03  Maciej W. Rozycki  <macro@imgtec.com>
3943
3944         * gdbarch.sh (objfile): Remove duplicate declaration.
3945         * gdbarch.h: Regenerate.
3946
3947 2017-10-03  Tom Tromey  <tom@tromey.com>
3948
3949         * utils.c (internal_vproblem): Use string_vprintf.
3950
3951 2017-10-03  Tom Tromey  <tom@tromey.com>
3952
3953         * printcmd.c (info_symbol_command): Use std::string.
3954
3955 2017-10-03  Tom Tromey  <tom@tromey.com>
3956
3957         * top.c (gdb_safe_append_history): Use std::string.
3958
3959 2017-10-03  Tom Tromey  <tom@tromey.com>
3960
3961         * event-top.c (stdin_event_handler): Update.
3962         * main.c (captured_main_1): Update.
3963         * top.h (make_delete_ui_cleanup): Remove.
3964         (struct ui): Add constructor and destructor.
3965         (new_ui, delete_ui): Remove.
3966         * top.c (make_delete_ui_cleanup): Remove.
3967         (new_ui_command): Use std::unique_ptr.
3968         (delete_ui_cleanup): Remove.
3969         (ui::ui): Rename from new_ui.  Update.
3970         (free_ui): Remove.
3971         (ui::~ui): Rename from delete_ui.  Update.
3972
3973 2017-10-03  Tom Tromey  <tom@tromey.com>
3974
3975         * symfile.c (load_progress): Use gdb::byte_vector.
3976
3977 2017-10-03  Tom Tromey  <tom@tromey.com>
3978
3979         * mi/mi-main.c (mi_cmd_trace_frame_collected): Remove unused
3980         declaration.
3981         * printcmd.c (x_command): Remove unused declaration.
3982         * symfile.c (symbol_file_command): Remove unused declaration.
3983
3984 2017-10-03  Tom Tromey  <tom@tromey.com>
3985
3986         * utils.c (internal_vproblem): Use std::string.
3987         (defaulted_query): Likewise.
3988
3989 2017-10-03  Tom Tromey  <tom@tromey.com>
3990
3991         * guile/scm-ports.c (ioscm_with_output_to_port_worker): Update.
3992         * top.c (execute_command_to_string): Update.
3993         * utils.c (make_cleanup_restore_page_info): Remove.
3994         (do_restore_page_info_cleanup): Remove.
3995         (set_batch_flag_and_restore_page_info):
3996         New.
3997         (make_cleanup_restore_page_info): Remove.
3998         (set_batch_flag_and_make_cleanup_restore_page_info): Remove.
3999         (~set_batch_flag_and_restore_page_info): New
4000         (make_cleanup_restore_uinteger): Remove.
4001         (make_cleanup_restore_integer): Remove.
4002         (struct restore_integer_closure): Remove.
4003         (restore_integer): Remove.
4004         * utils.h (struct set_batch_flag_and_restore_page_info): New
4005         class.
4006         (set_batch_flag_and_make_cleanup_restore_page_info): Remove.
4007         (make_cleanup_restore_page_info): Remove.
4008         (make_cleanup_restore_uinteger) Remove.
4009         (make_cleanup_restore_integer) Remove.
4010
4011 2017-10-03  Tom Tromey  <tom@tromey.com>
4012
4013         * record-full.h (record_full_gdb_operation_disable_set): Return
4014         scoped_restore_tmpl<int>.
4015         * infrun.c (adjust_pc_after_break): Update.
4016         (handle_signal_stop): Update.
4017         * record-full.c (record_full_gdb_operation_disable_set): Return
4018         scoped_restore_tmpl<int>.
4019         (record_full_wait_1, record_full_insert_breakpoint)
4020         (record_full_remove_breakpoint, record_full_save)
4021         (record_full_goto_insn): Update.
4022
4023 2017-10-02  Tom Tromey  <tom@tromey.com>
4024
4025         PR rust/22236:
4026         * rust-lang.c (rust_val_print_str): New function.
4027         (val_print_struct): Call it.
4028         (rust_subscript): Preserve name of slice type.
4029
4030 2017-10-02  Tom Tromey  <tom@tromey.com>
4031
4032         * rust-lang.c (rust_subscript): Handle slices in
4033         EVAL_AVOID_SIDE_EFFECTS case.
4034
4035 2017-10-02  Tom Tromey  <tom@tromey.com>
4036
4037         * rust-lang.c (rust_slice_type_p): Recognize &str as a slice type.
4038
4039 2017-10-02  Tom Tromey  <tom@tromey.com>
4040
4041         * rust-lang.h (rust_slice_type): Add "extern".
4042
4043 2017-10-02  Tom Tromey  <tom@tromey.com>
4044             Pedro Alves  <palves@redhat.com>
4045
4046         * ada-lang.h (ada_exc_info::operator<): Make const.
4047         (ada_exc_info::operator==): Make const.
4048         * ada-lang.c (ada_exc_info::operator<, ada_exc_info::operator==):
4049         Make const.
4050
4051 2017-09-29  Tom Tromey  <tom@tromey.com>
4052
4053         * target.c (read_whatever_is_readable): Change type of "result".
4054         Update.
4055         (free_memory_read_result_vector): Remove.
4056         (read_memory_robust): Change return type.  Update.
4057         * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Update.  Use
4058         bin2hex, std::string.
4059         * target.h (memory_read_result_s): Remove typedef.
4060         (free_memory_read_result_vector): Remove.
4061         (read_memory_robust): Return std::vector.
4062
4063 2017-09-29  Tom Tromey  <tom@tromey.com>
4064
4065         * mi/mi-main.c (captured_mi_execute_command): Use scope_restore.
4066
4067 2017-09-29  Tom Tromey  <tom@tromey.com>
4068
4069         * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Update.
4070         * ada-lang.h (struct ada_exc_info): Remove typedef.  Declare
4071         operator< and operator==.
4072         (ada_exceptions_list): Return a std::vector.
4073         * ada-lang.c (ada_exc_info::operator<): Rename from
4074         compare_ada_exception_info.
4075         (ada_exc_info::operator==): New.
4076         (sort_remove_dups_ada_exceptions_list): Change type of
4077         "exceptions".
4078         (ada_add_standard_exceptions, ada_add_exceptions_from_frame)
4079         (ada_add_global_exceptions): Likewise.
4080         (ada_exceptions_list_1): Return a std::vector.
4081         (ada_exceptions_list): Likewise.
4082
4083 2017-09-29  Tom Tromey  <tom@tromey.com>
4084
4085         * mi/mi-main.c (struct print_one_inferior_data) <inferiors>: Now a
4086         'std::set *'.
4087         (print_one_inferior): Update.
4088         (free_vector_of_ints): Remove.
4089         (list_available_thread_groups): Change "ids" to std::set.
4090         (mi_cmd_list_thread_groups): Update.
4091         (struct collect_cores_data) <core>: Now a std::set.
4092         (collect_cores): Update.
4093         (unique): Remove.
4094         (print_one_inferior): Update.
4095
4096 2017-09-29  Tom Tromey  <tom@tromey.com>
4097
4098         * mi/mi-main.c (mi_execute_cli_command): Use std::string.
4099         (mi_execute_async_cli_command): Likewise.
4100         (mi_cmd_trace_frame_collected): Use field_fmt.
4101
4102 2017-09-29  Tom Tromey  <tom@tromey.com>
4103
4104         * mi/mi-main.c (mi_cmd_data_write_memory_bytes): Use
4105         gdb::byte_vector.
4106
4107 2017-09-29  Tom Tromey  <tom@tromey.com>
4108
4109         * mi/mi-parse.c (mi_parse): Remove unused declaration.
4110
4111 2017-09-29  Tom Tromey  <tom@tromey.com>
4112
4113         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Don't copy "oarg".
4114
4115 2017-09-29  Tom Tromey  <tom@tromey.com>
4116
4117         * varobj.h (varobj_gen_name): Return std::string.
4118         * varobj.c (varobj_gen_name): Return std::string.
4119         * mi/mi-cmd-var.c (mi_cmd_var_create): Use std::string.
4120         (mi_cmd_var_delete): Don't copy "name".
4121
4122 2017-09-29  Tom Tromey  <tom@tromey.com>
4123
4124         * mi/mi-cmd-break.c (mi_argv_to_format): Return std::string.
4125         (mi_cmd_break_insert_1): Update.
4126
4127 2017-09-29  Tom Tromey  <tom@tromey.com>
4128
4129         * target.h (make_scoped_defer_target_commit_resume): Update.
4130         * target.c (make_scoped_defer_target_commit_resume): Rename from
4131         make_cleanup_defer_target_commit_resume.  Return a
4132         scoped_restore.
4133         * infrun.c (proceed): Use make_scoped_defer_target_commit_resume.
4134
4135 2017-09-29  Tom Tromey  <tom@tromey.com>
4136
4137         * main.c (captured_main_1): Remove unused declaration.
4138         * spu-multiarch.c (parse_spufs_run): Remove unused declaration.
4139
4140 2017-09-29  Tom Tromey  <tom@tromey.com>
4141
4142         * symtab.c (search_symbols): Remove unused outer cleanup.
4143         (make_source_files_completion_list): Remove unused declaration.
4144
4145 2017-09-29  Tom Tromey  <tom@tromey.com>
4146
4147         * mt-tdep.c (mt_push_dummy_call): Use gdb::byte_vector.
4148
4149 2017-09-29  Tom Tromey  <tom@tromey.com>
4150
4151         * xstormy16-tdep.c (xstormy16_push_dummy_call): Use
4152         gdb::byte_vector.
4153
4154 2017-09-29  Tom Tromey  <tom@tromey.com>
4155
4156         * complaints.c (vcomplaint): Use std::string.
4157
4158 2017-09-29  Tom Tromey  <tom@tromey.com>
4159
4160         * tracepoint.c (trace_variable_command): Use std::string.
4161         (encode_actions_1): Remove unused declarations.
4162         (create_tsv_from_upload): Use std::string.
4163
4164 2017-09-29  Tom Tromey  <tom@tromey.com>
4165
4166         * cp-support.c (gdb_demangle): Use std::string.
4167
4168 2017-09-29  Tom Tromey  <tom@tromey.com>
4169
4170         * stack.c (parse_frame_specification): Use std::string
4171         (info_frame_command): Use gdb::unique_xmalloc_ptr.
4172
4173 2017-09-29  Tom Tromey  <tom@tromey.com>
4174
4175         * tilegx-tdep.c (tilegx_push_dummy_call): Use gdb::byte_vector.
4176
4177 2017-09-29  Tom Tromey  <tom@tromey.com>
4178
4179         * utils.c (vfprintf_maybe_filtered): Use std::string.
4180         (vfprintf_unfiltered): Likewise.
4181
4182 2017-09-29  Tom Tromey  <tom@tromey.com>
4183
4184         * event-top.c (top_level_prompt): Return std::string.
4185         (display_gdb_prompt): Update.
4186
4187 2017-09-29  Tom Tromey  <tom@tromey.com>
4188
4189         * unittests/common-utils-selftests.c (format): New function.
4190         (string_vprintf_tests): New function.
4191         (_initialize_common_utils_selftests): Register new tests.
4192         * common/common-utils.c (string_vprintf): New function.
4193         * common/common-utils.h (string_vprintf): Declare.
4194
4195 2017-09-29  Pedro Alves  <palves@redhat.com>
4196
4197         * common/rsp-low.c (unpack_varlen_hex): Constify.
4198         * common/rsp-low.h (unpack_varlen_hex): Constify.
4199         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
4200         Constify.
4201         * remote.c (remote_set_permissions, read_ptid)
4202         (remote_current_thread, remote_get_threads_with_qthreadinfo)
4203         (remote_static_tracepoint_marker_at)
4204         (remote_static_tracepoint_markers_by_strid)
4205         (stop_reply_extract_thread, remote_parse_stop_reply): Constify.
4206         * tracepoint.c (parse_trace_status, parse_tracepoint_status)
4207         (parse_tracepoint_definition, parse_tsv_definition)
4208         (parse_static_tracepoint_marker_definition): Constify.
4209         * tracepoint.h (parse_static_tracepoint_marker_definition)
4210         (parse_trace_status, parse_tracepoint_status)
4211         (parse_tracepoint_definition, parse_tsv_definition): Constify.
4212
4213 2017-09-29  Pedro Alves  <palves@redhat.com>
4214
4215         * remote.c (target_buf, target_buf_size): Delete.
4216         (remote_get_noisy_reply): Remove buf_p and sizeof_buf parameters.
4217         Use the connection's packet buffer instead.
4218         All callers adjusted.
4219         (_initialize_remote): Remove references to target_buf and
4220         target_buf_size.
4221
4222 2017-09-28  Pedro Alves  <palves@redhat.com>
4223
4224         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
4225         unittests/common-utils-selftests.c.
4226         (SUBDIR_UNITTESTS_OBS): Add common-utils-selftests.o.
4227         (COMMON_OBS): Remove utils-selftests.o.
4228         * utils-selftests.c: Move to ...
4229         * unittests/common-utils-selftests.c: ... here and rename self
4230         test to "string_printf".
4231
4232 2017-09-28  Alexander Shaposhnikov <alexander.v.shaposhnikov@gmail.com> (tiny patch)
4233
4234         * dwarf2read.c (open_and_init_dwp_file): Protect against dwp_file
4235         having NULL cus or tus.
4236
4237 2017-09-27  Ulrich Weigand  <uweigand@de.ibm.com>
4238
4239         * arm-tdep.c: (convert_from_extended): Remove.
4240         (convert_to_extended): Likewise.
4241         (arm_extract_return_value): Use convert_typed_floating.
4242         (arm_store_return_value): Likewise.
4243
4244         * sh-tdep.h (struct gdbarch_tdep): Add sh_littlebyte_bigword_type.
4245         * sh-tdep.c: Do not include "floatformat.h".
4246         (sh_littlebyte_bigword_type): New function.
4247         (sh_register_convert_to_virtual): Use convert_typed_floating.
4248         (sh_register_convert_to_raw): Likewise.
4249         * sh64-tdep.c: (struct gdbarch_tdep): Add sh_littlebyte_bigword_type.
4250         (sh64_littlebyte_bigword_type): New function.
4251         (sh64_extract_return_value): Use convert_typed_floating.
4252         (sh64_register_convert_to_virtual): Likewise.
4253         (sh64_register_convert_to_raw): Likewise.
4254
4255 2017-09-27  Ulrich Weigand  <uweigand@de.ibm.com>
4256
4257         * doublest.h (floatformat_from_type): Move to gdbtypes.h.
4258         * doublest.c (floatformat_from_type): Move to gdbtypes.c.
4259
4260         * gdbtypes.h (union type_specific): Make field floatformat hold
4261         just a single struct floatformat, not an array.
4262         (floatformat_from_type): Move here.
4263         * gdbtypes.c (floatformat_from_type): Move here.  Update to
4264         changed TYPE_FLOATFORMAT definition.
4265         (verify_floatformat): Update to changed TYPE_FLOATFORMAT.
4266         (recursive_dump_type): Likewise.
4267         (init_float_type): Install correct floatformat for byte order.
4268         (arch_float_type): Likewise.
4269
4270 2017-09-27  Ulrich Weigand  <uweigand@de.ibm.com>
4271
4272         * gdbtypes.c (init_type): Change incoming argument from
4273         length-in-bytes to length-in-bits.  Assert length is a
4274         multiple of TARGET_CHAR_BITS.
4275         (arch_type, arch_flags_type): Likewise.
4276         (init_integer_type): Update call to init_type.
4277         (init_character_type): Likewise.
4278         (init_boolean_type): Likewise.
4279         (init_float_type): Likewise.
4280         (init_decfloat_type): Likewise.
4281         (init_complex_type): Likewise.
4282         (init_pointer_type): Likewise.
4283         (objfile_type): Likewise.
4284         (arch_integer_type): Update call to arch_type.
4285         (arch_character_type): Likewise.
4286         (arch_boolean_type): Likewise.
4287         (arch_float_type): Likewise.
4288         (arch_decfloat_type): Likewise.
4289         (arch_complex_type): Likewise.
4290         (arch_pointer_type): Likewise.
4291         (gdbtypes_post_init): Likewise.
4292
4293         * dwarf2read.c (dwarf2_init_float_type): Update call to init_type.
4294         (read_base_type): Likewise.
4295         * mdebugread.c (basic_type): Likewise.
4296         * stabsread.c (dbx_init_float_type): Likewise.
4297         (rs6000_builtin_type): Likewise.
4298         (read_range_type): Likewise.  Also, fix call to init_integer_type
4299         with erroneous length argument.
4300
4301         * ada-lang.c (ada_language_arch_info): Update call to arch_type.
4302         * d-lang.c (build_d_types): Likewise.
4303         * f-lang.c (build_fortran_types): Likewise.
4304         * go-lang.c (build_go_types): Likewise.
4305         * opencl-lang.c (build_opencl_types): Likewise.
4306         * jit.c (finalize_symtab): Likewise.
4307         * gnu-v3-abi.c (build_gdb_vtable_type): Likewise.
4308         (build_std_type_info_type): Likewise.
4309         * target-descriptions.c (tdesc_gdb_type): Likewise.  Also,
4310         update call to arch_flags_type.
4311
4312         * linux-tdep.c (linux_get_siginfo_type_with_fields): Update call to
4313         arch_type.
4314         * fbsd-tdep.c (fbsd_get_siginfo_type): Likewise.
4315         * windows-tdep.c (windows_get_tlb_type): Likewise.
4316
4317         * avr-tdep.c (avr_gdbarch_init): Update call to arch_type.
4318         * ft32-tdep.c (ft32_gdbarch_init): Likewise.
4319         * m32c-tdep.c (make_types): Likewise.
4320         * rl78-tdep.c (rl78_gdbarch_init): Likewise.
4321         (rl78_psw_type): Update call to arch_flags_type.
4322         * m68k-tdep.c (m68k_ps_type): Update call to arch_flags_type.
4323         * rx-tdep.c (rx_psw_type): Likewise.
4324         (rx_fpsw_type): Likewise.
4325         * sparc-tdep.c (sparc_psr_type): Likewise.
4326         (sparc_fsr_type): Likewise.
4327         * sparc64-tdep.c (sparc64_pstate_type): Likewise.
4328         (sparc64_ccr_type): Likewise.
4329         (sparc64_fsr_type): Likewise.
4330         (sparc64_fprs_type): Likewise.
4331
4332 2017-09-27  Tom Tromey  <tom@tromey.com>
4333
4334         * findcmd.c (find_command): Constify.
4335
4336 2017-09-27  Tom Tromey  <tom@tromey.com>
4337
4338         * ada-tasks.c (task_command_1, task_command): Constify.
4339
4340 2017-09-27  Tom Tromey  <tom@tromey.com>
4341
4342         * symtab.c (maintenance_print_symbol_cache)
4343         (maintenance_flush_symbol_cache)
4344         (maintenance_print_symbol_cache_statistics): Constify.
4345
4346 2017-09-27  Tom Tromey  <tom@tromey.com>
4347
4348         * inferior.c (detach_inferior_command, kill_inferior_command)
4349         (inferior_command): Constify.
4350
4351 2017-09-27  Tom Tromey  <tom@tromey.com>
4352
4353         * regcache.c (regcache_print, maintenance_print_registers)
4354         (maintenance_print_raw_registers)
4355         (maintenance_print_cooked_registers)
4356         (maintenance_print_register_groups)
4357         (maintenance_print_remote_registers): Constify.
4358
4359 2017-09-27  Tom Tromey  <tom@tromey.com>
4360
4361         * printcmd.c (map_display_numbers, undisplay_command)
4362         (enable_disable_display_command, enable_display_command)
4363         (disable_display_command): Constify.
4364
4365 2017-09-27  Tom Tromey  <tom@tromey.com>
4366
4367         * breakpoint.h (delete_command): Don't declare.
4368         * breakpoint.c (delete_command, enable_once_command)
4369         (enable_count_command, enable_delete_command, breakpoint_1)
4370         (maintenance_info_breakpoints, stopin_command, stopat_command)
4371         (delete_command, delete_trace_command, save_breakpoints)
4372         (save_breakpoints_command, save_tracepoints_command): Constify.
4373
4374 2017-09-27  Tom Tromey  <tom@tromey.com>
4375
4376         * macrocmd.c (macro_expand_command, macro_expand_once_command)
4377         (skip_ws, extract_identifier, macro_define_command)
4378         (macro_undef_command, macro_list_command): Constify.
4379
4380 2017-09-27  Tom Tromey  <tom@tromey.com>
4381
4382         * infcmd.c (environment_info, set_environment_command)
4383         (unset_environment_command, path_info, info_proc_cmd_1)
4384         (info_proc_cmd_mappings, info_proc_cmd_stat)
4385         (info_proc_cmd_status, info_proc_cmd_cwd, info_proc_cmd_cmdline)
4386         (info_proc_cmd_exe, info_proc_cmd_all): Constify.
4387
4388 2017-09-27  Tom Tromey  <tom@tromey.com>
4389
4390         * i386-tdep.c (i386_mpx_info_bounds, i386_mpx_set_bounds):
4391         Constify.
4392
4393 2017-09-27  Tom Tromey  <tom@tromey.com>
4394
4395         * symfile-mem.c (add_symbol_file_from_memory_command): Constify.
4396
4397 2017-09-27  Tom Tromey  <tom@tromey.com>
4398
4399         * demangle.c (demangle_command): Constify.
4400
4401 2017-09-27  Tom Tromey  <tom@tromey.com>
4402
4403         * progspace.c (maintenance_info_program_spaces_command):
4404         Constify.
4405
4406 2017-09-27  Tom Tromey  <tom@tromey.com>
4407
4408         * compile/compile.c (check_raw_argument, compile_file_command)
4409         (compile_code_command, compile_print_command): Constify.
4410
4411 2017-09-27  Tom Tromey  <tom@tromey.com>
4412
4413         * reggroups.c (maintenance_print_reggroups): Constify.
4414
4415 2017-09-27  Tom Tromey  <tom@tromey.com>
4416
4417         * dwarf2read.c (save_gdb_index_command): Constify.
4418
4419 2017-09-27  Tom Tromey  <tom@tromey.com>
4420
4421         * stap-probe.c (info_probes_stap_command): Constify.
4422
4423 2017-09-27  Tom Tromey  <tom@tromey.com>
4424
4425         * fork-child.c (unset_exec_wrapper_command): Constify.
4426
4427 2017-09-27  Tom Tromey  <tom@tromey.com>
4428
4429         * btrace.c (get_uint, get_context_size, no_chunk)
4430         (maint_btrace_packet_history_cmd)
4431         (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd)
4432         (maint_info_btrace_cmd): Constify.
4433
4434 2017-09-27  Tom Tromey  <tom@tromey.com>
4435
4436         * reverse.c (delete_bookmark_command): Constify.
4437
4438 2017-09-27  Tom Tromey  <tom@tromey.com>
4439
4440         * remote.c (set_memory_packet_size)
4441         (set_memory_write_packet_size, show_memory_write_packet_size)
4442         (set_memory_read_packet_size, show_memory_read_packet_size)
4443         (compare_sections_command, packet_command, remote_put_command)
4444         (remote_get_command, remote_delete_command): Constify.
4445
4446 2017-09-27  Tom Tromey  <tom@tromey.com>
4447
4448         * mips-tdep.c (show_mipsfpu_command, set_mipsfpu_single_command)
4449         (set_mipsfpu_double_command, set_mipsfpu_none_command)
4450         (set_mipsfpu_auto_command): Constify.
4451
4452 2017-09-27  Tom Tromey  <tom@tromey.com>
4453
4454         * cli/cli-cmds.h (cd_command): Constify.
4455         * cli/cli-cmds.c (cd_command): Constify.
4456
4457 2017-09-27  Tom Tromey  <tom@tromey.com>
4458
4459         * thread.c (thread_name_command, thread_find_command): Constify.
4460
4461 2017-09-27  Tom Tromey  <tom@tromey.com>
4462
4463         * probe.c (enable_probes_command, disable_probes_command):
4464         Constify.
4465
4466 2017-09-27  Tom Tromey  <tom@tromey.com>
4467
4468         * symfile.c (symbol_file_command): Constify.
4469         * gdbcore.h (deprecated_file_changed_hook): Constify.
4470         * exec.c (deprecated_file_changed_hook, exec_file_command)
4471         (file_command): Constify.
4472         * defs.h (symbol_file_command): Constify.
4473
4474 2017-09-27  Tom Tromey  <tom@tromey.com>
4475
4476         * remote-fileio.c (set_system_call_allowed)
4477         (show_system_call_allowed): Constify.
4478
4479 2017-09-27  Tom Tromey  <tom@tromey.com>
4480
4481         * tracepoint.c (delete_trace_variable_command)
4482         (tfind_end_command, tfind_start_command, tfind_pc_command)
4483         (tfind_tracepoint_command, tfind_line_command)
4484         (tfind_range_command, tfind_outside_command): Constify.
4485
4486 2017-09-27  Tom Tromey  <tom@tromey.com>
4487
4488         * ax-gdb.c (maint_agent_printf_command, agent_command)
4489         (agent_eval_command): Constify.
4490
4491 2017-09-27  Tom Tromey  <tom@tromey.com>
4492
4493         * tracepoint.c (info_scope_command): Constify.
4494         * python/python.c (gdbpy_decode_line): Constify.
4495         * python/py-breakpoint.c (bppy_init): Constify.
4496         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Constify.
4497         * location.h: (new_linespec_location)
4498         (string_to_event_location_basic, string_to_event_location):
4499         Constify.
4500         * location.c (new_linespec_location)
4501         (string_to_event_location_basic, string_to_event_location):
4502         Constify.
4503         * linespec.h (decode_line_with_current_source)
4504         (decode_line_with_last_displayed, linespec_lex_to_end): Constify.
4505         * linespec.c (linespec_lex_to_end)
4506         (decode_line_with_current_source)
4507         (decode_line_with_last_displayed): Constify.
4508         * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x):
4509         Constify.
4510         * cli/cli-cmds.c (edit_command, list_command): Constify.
4511         * breakpoint.h (until_break_command, watch_command_wrapper)
4512         (awatch_command_wrapper, rwatch_command_wrapper)
4513         (init_ada_exception_breakpoint): Constify.
4514         * breakpoint.c (break_command_1, dprintf_command)
4515         (break_range_command, watch_command_wrapper)
4516         (rwatch_command_wrapper, awatch_command_wrapper)
4517         (until_break_command, init_ada_exception_breakpoint)
4518         (strace_marker_create_sals_from_location, trace_command)
4519         (ftrace_command, strace_command, struct tracepoint): Constify.
4520         * ax-gdb.c (agent_command_1): Constify.
4521         * ada-lang.c (ada_exception_sal): Constify.
4522
4523 2017-09-27  Tom Tromey  <tom@tromey.com>
4524
4525         * record.c (cmd_record_delete, cmd_record_stop, cmd_record_save)
4526         (cmd_record_goto_begin, cmd_record_goto_end, get_insn_number)
4527         (get_context_size, no_chunk, get_insn_history_modifiers)
4528         (cmd_record_insn_history, get_call_history_modifiers)
4529         (cmd_record_call_history): Constify.
4530
4531 2017-09-27  Tom Tromey  <tom@tromey.com>
4532
4533         * source.c (show_substitute_path_command)
4534         (unset_substitute_path_command, set_substitute_path_command):
4535         Constify.
4536
4537 2017-09-27  Tom Tromey  <tom@tromey.com>
4538
4539         * typeprint.c (maintenance_print_type): Constify.
4540         * maint.c (maintenance_dump_me, maintenance_demangle)
4541         (maintenance_time_display, maintenance_info_sections)
4542         (maintenance_print_statistics, maintenance_deprecate)
4543         (maintenance_undeprecate): Constify.
4544         (maintenance_do_deprecate): Constify.  Use std::string.
4545         (maintenance_selftest): Constify.
4546         * gdbtypes.h (maintenance_print_type): Constify.
4547
4548 2017-09-27  Tom Tromey  <tom@tromey.com>
4549
4550         * hppa-tdep.c (unwind_command): Constify.
4551
4552 2017-09-27  Tom Tromey  <tom@tromey.com>
4553
4554         * target-descriptions.c (unset_tdesc_filename_cmd)
4555         (maint_print_c_tdesc_cmd, maintenance_check_xml_descriptions):
4556         Constify.
4557
4558 2017-09-27  Tom Tromey  <tom@tromey.com>
4559
4560         * dummy-frame.c (maintenance_print_dummy_frames): Constify.
4561
4562 2017-09-27  Tom Tromey  <tom@tromey.com>
4563
4564         * tui/tui.c (tui_enable_command, tui_disable_command): Constify.
4565
4566 2017-09-27  Tom Tromey  <tom@tromey.com>
4567
4568         * tui/tui-regs.c (tui_reg_command): Constify.
4569
4570 2017-09-27  Tom Tromey  <tom@tromey.com>
4571
4572         * skip.c (skip_file_command, skip_function_command)
4573         (skip_enable_command, skip_disable_command, skip_delete_command):
4574         Constify.
4575
4576 2017-09-27  Tom Tromey  <tom@tromey.com>
4577
4578         * record-btrace.c (cmd_record_btrace_bts_start)
4579         (cmd_record_btrace_pt_start): Constify.
4580
4581 2017-09-27  Tom Tromey  <tom@tromey.com>
4582
4583         * symmisc.c (maintenance_print_symbols)
4584         (maintenance_print_msymbols, maintenance_print_objfiles)
4585         (maintenance_info_symtabs, maintenance_check_symtabs)
4586         (maintenance_expand_symtabs, maintenance_info_line_tables):
4587         Constify.
4588
4589 2017-09-27  Tom Tromey  <tom@tromey.com>
4590
4591         * top.c (new_ui_command): Constify.
4592
4593 2017-09-27  Tom Tromey  <tom@tromey.com>
4594
4595         * symfile.c (add_symbol_file_command)
4596         (remove_symbol_file_command, list_overlays_command)
4597         (map_overlay_command, unmap_overlay_command)
4598         (overlay_auto_command, overlay_manual_command)
4599         (overlay_off_command, overlay_load_command): Constify.
4600
4601 2017-09-27  Tom Tromey  <tom@tromey.com>
4602
4603         * spu-tdep.c (info_spu_event_command, info_spu_signal_command)
4604         (info_spu_mailbox_command, info_spu_dma_command)
4605         (info_spu_proxydma_command): Constify.
4606
4607 2017-09-27  Tom Tromey  <tom@tromey.com>
4608
4609         * cli/cli-logging.c (set_logging_on, set_logging_off): Constify.
4610
4611 2017-09-27  Tom Tromey  <tom@tromey.com>
4612
4613         * cli/cli-script.c (user_defined_command): Constify.
4614
4615 2017-09-27  Tom Tromey  <tom@tromey.com>
4616
4617         * cli/cli-dump.c (dump_memory_command, dump_value_command)
4618         (dump_srec_memory, dump_srec_value, dump_ihex_memory)
4619         (dump_ihex_value, dump_verilog_memory, dump_verilog_value)
4620         (dump_tekhex_memory, dump_tekhex_value, dump_binary_memory)
4621         (dump_binary_value, append_binary_memory, append_binary_value):
4622         Constify.
4623         (struct dump_context) <func>: Constify.
4624         (add_dump_command): Update.
4625
4626 2017-09-27  Tom Tromey  <tom@tromey.com>
4627
4628         * cli/cli-cmds.c (show_version, show_configuration)
4629         (source_command, show_user): Constify.
4630
4631 2017-09-27  Tom Tromey  <tom@tromey.com>
4632
4633         * target.c (maintenance_print_target_stack): Constify.
4634
4635 2017-09-27  Tom Tromey  <tom@tromey.com>
4636
4637         * interps.c (interpreter_exec_cmd): Constify.
4638
4639 2017-09-27  Tom Tromey  <tom@tromey.com>
4640
4641         * record-full.c (cmd_record_full_restore): Constify.
4642
4643 2017-09-27  Tom Tromey  <tom@tromey.com>
4644
4645         * memattr.c (enable_mem_command, disable_mem_command)
4646         (delete_mem_command): Constify.
4647
4648 2017-09-27  Tom Tromey  <tom@tromey.com>
4649
4650         * value.c (show_convenience): Constify.
4651
4652 2017-09-27  Tom Tromey  <tom@tromey.com>
4653
4654         * gdbcore.h (core_file_command): Update.
4655         * corefile.c (core_file_command): Constify.
4656
4657 2017-09-27  Tom Tromey  <tom@tromey.com>
4658
4659         * user-regs.c (maintenance_print_user_registers): Constify.
4660
4661 2017-09-27  Tom Tromey  <tom@tromey.com>
4662
4663         * cp-namespace.c (maintenance_cplus_namespace): Constify.
4664
4665 2017-09-27  Tom Tromey  <tom@tromey.com>
4666
4667         * cp-support.c (first_component_command): Constify.
4668
4669 2017-09-27  Tom Tromey  <tom@tromey.com>
4670
4671         * psymtab.c (maintenance_print_psymbols)
4672         (maintenance_info_psymtabs, maintenance_check_psymtabs):
4673         Constify.
4674
4675 2017-09-27  Tom Tromey  <tom@tromey.com>
4676
4677         * windows-tdep.c (display_tib): Constify.
4678
4679 2017-09-27  Tom Tromey  <tom@tromey.com>
4680
4681         * linux-fork.c (delete_checkpoint_command)
4682         (detach_checkpoint_command): Constify.
4683
4684 2017-09-27  Tom Tromey  <tom@tromey.com>
4685
4686         * cp-abi.c (set_cp_abi_cmd, show_cp_abi_cmd): Constify.
4687
4688 2017-09-27  Tom Tromey  <tom@tromey.com>
4689
4690         * arc-tdep.c (dump_arc_instruction_command): Constify.
4691
4692 2017-09-27  Tom Tromey  <tom@tromey.com>
4693
4694         * valprint.c (set_radix, show_radix): Constify.
4695
4696 2017-09-27  Tom Tromey  <tom@tromey.com>
4697
4698         * dtrace-probe.c (info_probes_dtrace_command): Constify.
4699
4700 2017-09-27  Tom Tromey  <tom@tromey.com>
4701
4702         * command.h (not_just_help_class_command): Update.
4703         * cli/cli-decode.h (not_just_help_class_command): Update.
4704         * cli/cli-decode.c (not_just_help_class_command): Constify.
4705
4706 2017-09-27  Tom Tromey  <tom@tromey.com>
4707
4708         * gdb_bfd.c (maintenance_info_bfds): Constify.
4709
4710 2017-09-27  Tom Tromey  <tom@tromey.com>
4711
4712         * cli/cli-decode.c (add_cmd, set_cmd_cfunc): New function
4713         overloads.
4714         (do_add_cmd): Rename from add_cmd.  Don't call set_cmd_cfunc.
4715         (do_const_cfunc): New function.
4716         (cmd_cfunc_eq): New overload.
4717         (cli_user_command_p): Check do_const_cfunc.
4718         * cli/cli-decode.h (struct cmd_list_element) <function>: New field
4719         const_cfunc.
4720         * command.h (add_cmd): Add const overload and no-function
4721         overload.
4722         (set_cmd_cfunc): Add const overload.
4723         (cmd_const_cfunc_ftype): Declare.
4724         (cmd_cfunc_eq): Add const overload.
4725         * breakpoint.c, cli-cmds.c, cli-dump.c, guile/scm-cmd.c,
4726         python/py-cmd.c, target.c, tracepoint.c: Use no-function add_cmd
4727         overload.
4728
4729 2017-09-27  Tom Tromey  <tom@tromey.com>
4730
4731         * macroexp.c (get_next_token_for_substitution): New function.
4732         (substitute_args): Call it.  Check for __VA_OPT__.
4733
4734 2017-09-26  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4735             Pedro Alves <palves@redhat.com>
4736
4737         * dwarf2read.c (dwarf2_cu): Remove field producer_is_icc and add
4738         producer_is_icc_lt_14.
4739         (producer_is_icc_lt_14): New function.
4740         (check_producer): Add code for checking version of ICC.
4741         (producer_is_icc): Move to producer.c.
4742         (read_structure_type): Restrict ICC workaround to ICC<14.
4743         * producer.c: Include selftest.h.
4744         (producer_is_icc, producer_parsing_tests, _initialize_producer):
4745         New functions.
4746         * producer.h (producer_is_icc): New declaration.
4747
4748 2017-09-26  Walfred Tedeschi  <walfred.tedeschi@intel.com>
4749
4750         * Makefile.in (SFILES): Add producer.c.
4751         (COMMON_OBS): Add producer.o
4752         * amd64-tdep.c (producer.h): Add new include.
4753         * dwarf2read.c (producer.h): Add new include.
4754         * producer.c: New file.
4755         * producer.h: New file.
4756         * utils.c (producer_is_gcc, producer_is_gcc_ge_4): Move to
4757         producer.c.
4758         * utils.h (producer_is_gcc, producer_is_gcc_ge_4): Move to
4759         producer.h.
4760
4761 2017-09-26  Matthias Klose  <doko@ubuntu.com>
4762
4763         * configure.ac: Search ncursesw before ncurses.
4764         Check ncursesw/ncurses.h before ncurses/ncurses.h.
4765         * gdb_curses.h: Include <ncursesw/ncurses.h>
4766         * config.in, configure: Regenerate.
4767
4768 2017-09-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
4769
4770         PR gdb/22185
4771         * configure.host <*-*-solaris2.[01], *-*-solaris2.[2-9]*>: Mark as
4772         obsolete.
4773         Use gdb_host sol2 for i[34567]86-*-solaris2*, x86_64-*-solaris2*.
4774         Remove i386sol2 support.
4775         * configure.nat <i386sol2>: Remove.
4776         <sol2-64>: Fold into ...
4777         <sol2>: ... this.
4778         Move common settings to default section.
4779         Add sol-thread.o.
4780         * configure.tgt <i[34567]86-*-solaris2.1[0-9]*,
4781         x86_64-*-solaris2.1[0-9]*>: Rename to ...
4782         <i[34567]86-*-solaris2*, x86_64-*-solaris2*>: ... this.
4783         <i[34567]86-*-solaris*>: Remove.
4784         <sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*>: Remove.
4785
4786         * configure.ac: Remove wctype in libw check.
4787         (_MSE_INT_H): Don't define on Solaris 7-9.
4788         <solaris*>: Remove libthread_db.so.1 check.
4789         * configure: Regenerate.
4790         * config.in: Regenerate.
4791
4792         * proc-service.c: Remove PROC_SERVICE_IS_OLD handling.
4793         (gdb_ps_prochandle_t, gdb_ps_read_buf_t, gdb_ps_write_buf_t)
4794         (gdb_ps_size_t): Remove.
4795         Use base types in users.
4796         * sol-thread.c: Likewise, also for gdb_ps_addr_t.
4797
4798         * NEWS (Changes since GDB 8.0): Document Solaris 2.0-9 removal.
4799
4800 2017-09-26  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
4801
4802         PR build/22206
4803         * sparc64-tdep.c (adi_tag_fd): Print pid as long.
4804         (adi_is_addr_mapped): Likewise.
4805         (PSR_ICC): Don't redefine.
4806         (PSR_IMPL): Likewise.
4807
4808 2017-09-25  Tom Tromey  <tom@tromey.com>
4809
4810         * regcache.c (regcache::dump): Use string_printf.
4811
4812 2017-09-25  Tom Tromey  <tom@tromey.com>
4813
4814         * regcache.c (class regcache_invalidator): New.
4815         (struct register_to_invalidate): Remove.
4816         (make_cleanup_regcache_invalidate): Remove.
4817         (regcache::raw_write): Use regcache_invalidator.
4818
4819 2017-09-25  Tom Tromey  <tom@tromey.com>
4820
4821         * spu-tdep.c (spu2ppu_sniffer): Update.
4822         * regcache.h (make_cleanup_regcache_xfree): Don't declare.
4823         * regcache.c (do_regcache_xfree, make_cleanup_regcache_xfree):
4824         Remove.
4825         * ppc-linux-tdep.c (ppu2spu_sniffer): Update.
4826         * mi/mi-main.c (mi_cmd_data_list_changed_registers): Update.
4827         * frame.h (frame_save_as_regcache): Return std::unique_ptr.
4828         * frame.c (frame_save_as_regcache): Return std::unique_ptr.
4829         (frame_pop): Update.
4830
4831 2017-09-25  Tom Tromey  <tom@tromey.com>
4832
4833         * spu-tdep.c (spu2ppu_dealloc_cache): Use delete.
4834         * regcache.h (regcache_xfree): Don't declare.
4835         * regcache.c (regcache_xfree): Remove.
4836         (do_regcache_xfree): Use delete.
4837         * ppc-linux-tdep.c (ppu2spu_dealloc_cache): Use delete.
4838         * linux-fork.c (free_fork): Use delete.
4839         (fork_save_infrun_state): Likewise.
4840         * jit.c (jit_dealloc_cache): Use delete.
4841         * infrun.c (discard_infcall_suspend_state): Use delete.
4842
4843 2017-09-25  Tom Tromey  <tom@tromey.com>
4844
4845         * regcache.h (regcache_xmalloc): Don't declare.
4846         (regcache_raw_set_cached_value): Update comment.
4847         * regcache.c (regcache_xmalloc): Remove.
4848         * ppc-linux-tdep.c (ppu2spu_sniffer): Use new.
4849         * jit.c (jit_frame_sniffer): Use new.
4850         * frame.c (frame_save_as_regcache): Use new.
4851
4852 2017-09-25  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4853
4854         * NEWS: Advertise support for guarded-storage registers on IBM z.
4855
4856 2017-09-25  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4857
4858         * s390-linux-nat.c (have_regset_gs): New static variable.
4859         (s390_linux_fetch_inferior_registers): Handle guarded-storage
4860         control block and guarded-storage broadcast control regsets.
4861         (s390_read_description): Detect whether the target has
4862         guarded-storage support, return appropriate tdesc.
4863         * s390-linux-tdep.c (features/s390-gs-linux64.c): New include.
4864         (features/s390x-gs-linux64.c): Likewise.
4865         (struct gdbarch_tdep) <have_gs>: New field.
4866         (s390_regmap_gs, s390_regmap_gsbc, s390_gs_regset)
4867         (s390_gsbc_regset): New variables.
4868         (s390_iterate_over_regset_sections): Iterate over s390_gs_regset
4869         and s390_gsbc_regset, if applicable.
4870         (s390_core_read_description): Check whether core file was from a
4871         target with guarded-storage support; include appropriate regsets.
4872         (s390_gdbarch_init): Add registers for guarded-storage support.
4873         (_initialize_s390_tdep): Initialize new target descriptions that
4874         include registers for guarded-storage support.
4875         * s390-linux-tdep.h (HWCAP_S390_GS, S390_GSD_REGNUM)
4876         (S390_GSSM_REGNUM, S390_GSEPLA_REGNUM)
4877         (S390_BC_GSD_REGNUM, S390_BC_GSSM_REGNUM): New defines.
4878         (S390_NUM_REGS): Adjust macro definition.
4879         (s390_gs_regset, s390_gsbc_regset, tdesc_s390_gs_linux64)
4880         (tdesc_s390x_gs_linux64): New declarations.
4881
4882 2017-09-25  Andreas Arnez  <arnez@linux.vnet.ibm.com>
4883
4884         * features/s390-gs-linux64.xml: New file.
4885         * features/s390-gs.xml: New file.
4886         * features/s390-gsbc.xml: New file.
4887         * features/s390x-gs-linux64.xml: New file.
4888         * features/Makefile (WHICH): Add s390-gs-linux64 and
4889         s390x-gs-linux64.
4890         (s390-gs-linux64-expedite, s390x-gs-linux64-expedite): New macros.
4891         (XMLTOC): Add s390-gs-linux64.xml and s390x-linux64.xml.
4892         * features/s390-gs-linux64.c: New generated file.
4893         * features/s390x-gs-linux64.c: New file.
4894         * regformats/s390-gs-linux64.dat: New file.
4895         * regformats/s390x-gs-linux64.dat: New file.
4896
4897 2017-09-23  Tom Tromey  <tom@tromey.com>
4898
4899         * defs.h (make_cleanup_override_quit_handler): Don't declare.
4900
4901 2017-09-22  Tom Tromey  <tom@tromey.com>
4902
4903         * utils.c (class scoped_input_handler) <m_quit_handler>: Change
4904         type to scoped_restore_tmpl.
4905         <scoped_input_handler>: Initialize m_quit_handler directly.
4906
4907 2017-09-22  Sergio Durigan Junior  <sergiodj@redhat.com>
4908
4909         * cli/cli-cmds.c (pwd_command): Use "getcwd (NULL, 0)".
4910         (cd_command): Likewise.  Free "current_directory" before
4911         assigning to it.
4912         * main.c (captured_main_1): Use "getcwd (NULL, 0)".
4913         * mi/mi-cmd-env.c (mi_cmd_env_pwd): Likewise.
4914         * top.c (gdb_dirbuf): Remove global declaration.
4915         * top.h (gdb_dirbuf): Likewise.
4916
4917 2017-09-22  Sergio Durigan Junior  <sergiodj@redhat.com>
4918
4919         * gnulib/aclocal.m4: Regenerate.
4920         * gnulib/config.in: Regenerate.
4921         * gnulib/configure: Regenerate.
4922         * gnulib/import/Makefile.am: Regenerate.
4923         * gnulib/import/Makefile.in: Regenerate.
4924         * gnulib/import/assure.h: New file.
4925         * gnulib/import/at-func.c: Likewise
4926         * gnulib/import/chdir-long.c: New file.
4927         * gnulib/import/chdir-long.h: New file.
4928         * gnulib/import/cloexec.c: New file.
4929         * gnulib/import/cloexec.h: New file.
4930         * gnulib/import/close.c: New file.
4931         * gnulib/import/closedir.c: New file.
4932         * gnulib/import/dirent-private.h: New file.
4933         * gnulib/import/dup-safer.c: New file.
4934         * gnulib/import/dup.c: New file.
4935         * gnulib/import/dup2.c: New file.
4936         * gnulib/import/error.c: New file.
4937         * gnulib/import/error.h: New file.
4938         * gnulib/import/exitfail.c: New file.
4939         * gnulib/import/exitfail.h: New file.
4940         * gnulib/import/fchdir.c: New file.
4941         * gnulib/import/fcntl.c: New file.
4942         * gnulib/import/fcntl.in.h: New file.
4943         * gnulib/import/fd-hook.c: New file.
4944         * gnulib/import/fd-hook.h: New file.
4945         * gnulib/import/fd-safer.c: New file.
4946         * gnulib/import/fdopendir.c: New file.
4947         * gnulib/import/filename.h: New file.
4948         * gnulib/import/filenamecat-lgpl.c: New file.
4949         * gnulib/import/filenamecat.h: New file.
4950         * gnulib/import/fstat.c: New file.
4951         * gnulib/import/fstatat.c: New file.
4952         * gnulib/import/getcwd-lgpl.c: New file.
4953         * gnulib/import/getcwd.c: New file.
4954         * gnulib/import/getdtablesize.c: New file.
4955         * gnulib/import/getlogin_r.c: New file.
4956         * gnulib/import/getprogname.c: New file.
4957         * gnulib/import/getprogname.h: New file.
4958         * gnulib/import/gettext.h: New file.
4959         * gnulib/import/glob-libc.h: New file.
4960         * gnulib/import/glob.c: New file.
4961         * gnulib/import/glob.in.h: New file.
4962         * gnulib/import/intprops.h: New file.
4963         * gnulib/import/m4/chdir-long.m4: New file.
4964         * gnulib/import/m4/close.m4: New file.
4965         * gnulib/import/m4/closedir.m4: New file.
4966         * gnulib/import/m4/d-ino.m4: New file.
4967         * gnulib/import/m4/d-type.m4: New file.
4968         * gnulib/import/m4/dup.m4: New file.
4969         * gnulib/import/m4/dup2.m4: New file.
4970         * gnulib/import/m4/error.m4: New file.
4971         * gnulib/import/m4/fchdir.m4: New file.
4972         * gnulib/import/m4/fcntl.m4: New file.
4973         * gnulib/import/m4/fcntl_h.m4: New file.
4974         * gnulib/import/m4/fdopendir.m4: New file.
4975         * gnulib/import/m4/filenamecat.m4: New file.
4976         * gnulib/import/m4/fstat.m4: New file.
4977         * gnulib/import/m4/fstatat.m4: New file.
4978         * gnulib/import/m4/getcwd-abort-bug.m4: New file.
4979         * gnulib/import/m4/getcwd-path-max.m4: New file.
4980         * gnulib/import/m4/getcwd.m4: New file.
4981         * gnulib/import/m4/getdtablesize.m4: New file.
4982         * gnulib/import/m4/getlogin_r.m4: New file.
4983         * gnulib/import/m4/getprogname.m4: New file.
4984         * gnulib/import/m4/glob.m4: New file.
4985         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
4986         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
4987         * gnulib/import/m4/mempcpy.m4: New file.
4988         * gnulib/import/m4/memrchr.m4: New file.
4989         * gnulib/import/m4/mode_t.m4: New file.
4990         * gnulib/import/m4/msvc-inval.m4: New file.
4991         * gnulib/import/m4/msvc-nothrow.m4: New file.
4992         * gnulib/import/m4/open.m4: New file.
4993         * gnulib/import/m4/openat.m4: New file.
4994         * gnulib/import/m4/opendir.m4: New file.
4995         * gnulib/import/m4/readdir.m4: New file.
4996         * gnulib/import/m4/realloc.m4: New file.
4997         * gnulib/import/m4/rewinddir.m4: New file.
4998         * gnulib/import/m4/save-cwd.m4: New file.
4999         * gnulib/import/m4/strdup.m4: New file.
5000         * gnulib/import/m4/strerror.m4: New file.
5001         * gnulib/import/m4/unistd-safer.m4: New file.
5002         * gnulib/import/mempcpy.c: New file.
5003         * gnulib/import/memrchr.c: New file.
5004         * gnulib/import/msvc-inval.c: New file.
5005         * gnulib/import/msvc-inval.h: New file.
5006         * gnulib/import/msvc-nothrow.c: New file.
5007         * gnulib/import/msvc-nothrow.h: New file.
5008         * gnulib/import/open.c: New file.
5009         * gnulib/import/openat-die.c: New file.
5010         * gnulib/import/openat-priv.h: New file.
5011         * gnulib/import/openat-proc.c: New file.
5012         * gnulib/import/openat.c: New file.
5013         * gnulib/import/openat.h: New file.
5014         * gnulib/import/opendir.c: New file.
5015         * gnulib/import/pipe-safer.c: New file.
5016         * gnulib/import/readdir.c: New file.
5017         * gnulib/import/realloc.c: New file.
5018         * gnulib/import/rewinddir.c: New file.
5019         * gnulib/import/save-cwd.c: New file.
5020         * gnulib/import/save-cwd.h: New file.
5021         * gnulib/import/strdup.c: New file.
5022         * gnulib/import/strerror-override.c: New file.
5023         * gnulib/import/strerror-override.h: New file.
5024         * gnulib/import/strerror.c: New file.
5025         * gnulib/import/unistd--.h: New file.
5026         * gnulib/import/unistd-safer.h: New file.
5027         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
5028         "getcwd" and "glob".
5029         * ser-tcp.c: Undefine "close" before redefining it.
5030
5031 2017-09-21  Simon Marchi  <simon.marchi@ericsson.com>
5032
5033         * guile/scm-value.c (gdbscm_value_address): Initialize address,
5034         get rid of res_val.
5035
5036 2017-09-22  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
5037
5038         * configure.nat <i386sol2,i386>: Add fork-inferior.o to NATDEPFILES.
5039         <sol2,sparc>: Likewise.
5040         <sol2-64,i386>: Likewise.
5041
5042         * warning.m4 (AM_GDB_WARNINGS): Disable -Wunknown-pragmas,
5043         -Wdeprecated-declarations on *-*-solaris*.
5044         * configure: Regenerate.
5045
5046         * procfs.c: Include "nat/inferior.h".
5047         (procfs_info_proc): Fix typo.
5048
5049 2017-09-21  Kevin Buettner  <kevinb@redhat.com>
5050
5051         * remote.c (vector): Include.
5052         (struct private_thread_info): Add field, thread_handle.
5053         (free_private_thread_info): Deallocate storage associated with
5054         thread handle.
5055         (get_private_info_thread): Initialize `thread_handle' field.
5056         (struct thread_item): Add field, thread_handle.
5057         (clear_threads_listing_context): Deallocate storage associated
5058         with thread handle.
5059         (start_thread): Add support for "handle" attribute.
5060         (thread_attributes): Add "handle".
5061         (remote_get_threads_with_qthreadinfo): Initialize thread_handle
5062         field.
5063         (remote_update_thread_list): Update thread_handle.
5064         (remote_thread_handle_to_thread_info): New function.
5065         (init_remote_ops): Initialize to_thread_handle_to_thread_info.
5066
5067 2017-09-21  Kevin Buettner  <kevinb@redhat.com>
5068
5069         * python/py-inferior.c (gdbpy_thread_from_thread_handle): New
5070         function.
5071         (inferior_object_methods): Add gdbpy_thread_from_thread_handle.
5072         * python/python-internal.h (thread_object_type): Declare.
5073
5074 2017-09-21  Kevin Buettner  <kevinb@redhat.com>
5075
5076         * target.h (struct target_ops): Add to_thread_handle_to_thread_info.
5077         (target_thread_handle_to_thread_info): Declare.
5078         * target.c (target_thread_handle_to_thread_info): New function.
5079         * target-delegates.c: Regenerate.
5080         * gdbthread.h (find_thread_by_handle): Declare.
5081         * thread.c (find_thread_by_handle): New function.
5082         * linux-thread-db.c (thread_db_thread_handle_to_thread_info): New
5083         function.
5084         (init_thread_db_ops): Register thread_db_thread_handle_to_thread_info.
5085
5086 2017-09-21  Simon Marchi  <simon.marchi@ericsson.com>
5087
5088         * nat/linux-waitpid.c (linux_debug): Add ATTRIBUTE_PRINTF.
5089
5090 2017-09-21  Simon Marchi  <simon.marchi@ericsson.com>
5091
5092         * microblaze-tdep.c (microblaze_debug): Add ATTRIBUTE_PRINTF.
5093
5094 2017-09-21  Yao Qi  <yao.qi@linaro.org>
5095
5096         * configure.tgt (aarch64*-*-freebsd*): Add fbsd-tdep.o solib-svr4.o
5097         to gdb_target_obs.
5098
5099 2017-09-20  Tom Tromey  <tom@tromey.com>
5100
5101         * breakpoint.c (struct counted_command_line): Remove.
5102         (breakpoint_commands): Update.
5103         (alloc_counted_command_line, incref_counted_command_line)
5104         (decref_counted_command_line, do_cleanup_counted_command_line)
5105         (make_cleanup_decref_counted_command_line): Remove.
5106         (breakpoint_set_commands, commands_command_1, ~bpstats, bpstats)
5107         (bpstat_clear_actions, bpstat_do_actions_1, watchpoint_check)
5108         (bpstat_stop_status, print_one_breakpoint_location, ~breakpoint)
5109         (save_breakpoints): Update.
5110         * breakpoint.h (counted_command_line): Now a typedef to
5111         shared_ptr.
5112         (struct breakpoint) <commands>: Now a counted_command_line.
5113         (struct bpstats) <command>: Likewise.
5114
5115 2017-09-20  Tom Tromey  <tom@tromey.com>
5116
5117         * breakpoint.c (struct commands_info, do_map_commands_command):
5118         Remove.
5119         (commands_command_1): Update.
5120         (iterate_over_related_breakpoints): Take a function_view.
5121         (do_delete_breakpoint, do_map_delete_breakpoint): Remove.
5122         (delete_command): Update.
5123         (map_breakpoint_numbers): Take a function_view.
5124         (do_disable_breakpoint, do_map_delete_breakpoint): Remove.
5125         (disable_command): Update.
5126         (do_enable_breakpoint, do_map_enable_breakpoint): Remove.
5127         (enable_command): Update.
5128         (struct disp_data, do_enable_breakpoint_disp)
5129         (do_map_enable_once_breakpoint, do_map_enable_count_breakpoint)
5130         (do_map_enable_delete_breakpoint): Remove.
5131         (enable_once_command, enable_count_command, enable_delete_command)
5132         (delete_trace_variable_command): Update.
5133
5134 2017-09-20  Tom Tromey  <tom@tromey.com>
5135
5136         * breakpoint.c (~bpstats): Rename from bpstat_free.  Update.
5137         (bpstat_clear): Use delete.
5138         (bpstats): New constructors.
5139         (bpstat_copy, bpstat_stop_status): Use new.
5140         (dprintf_after_condition_true): Update.
5141         * breakpoint.h (bpstats::bpstats): Add constructors.
5142         (bpstats::~bpstats): Add destructor.
5143
5144 2017-09-20  Pedro Alves  <palves@redhat.com>
5145
5146         * eval.c (make_params): Delete, refactored as ...
5147         (class fake_method): ... this new type's ctor.
5148         (fake_method::~fake_method): New.
5149         (evaluate_subexp_standard): Use 'fake_method'.
5150
5151 2017-09-20  Tom Tromey  <tom@tromey.com>
5152
5153         * windows-nat.c (get_windows_debug_event, windows_wait)
5154         (do_initial_windows_stuff, windows_attach): Update.
5155         * utils.c (vwarning, internal_vproblem): Update.
5156         (ui_unregister_input_event_handler_cleanup)
5157         (prepare_to_handle_input): Remove.
5158         (class scoped_input_handler): New.
5159         (defaulted_query, prompt_for_continue): Update.
5160         * tui/tui-hooks.c (tui_refresh_frame_and_register_information):
5161         Update.
5162         * top.c (undo_terminal_modifications_before_exit): Update.
5163         * target/target.h (target_terminal_init, target_terminal_inferior)
5164         (target_terminal_ours): Don't declare.
5165         (class target_terminal): New.
5166         * target.h (target_terminal_is_inferior, target_terminal_is_ours)
5167         (target_terminal_ours_for_output)
5168         (make_cleanup_restore_target_terminal): Don't declare.
5169         (target_terminal_info): Remove.
5170         * target.c (enum terminal_state, terminal_state): Remove.
5171         (target_terminal::terminal_state): Define.
5172         (target_terminal::init): Rename from target_terminal_init.
5173         (target_terminal::inferior): Rename from
5174         target_terminal_inferior.
5175         (target_terminal::ours): Rename from target_terminal_ours.
5176         (target_terminal::ours_for_output): Rename from
5177         target_terminal_ours_for_output.
5178         (target_terminal::info): New method.
5179         (cleanup_restore_target_terminal)
5180         (make_cleanup_restore_target_terminal): Remove.
5181         * solib.c (handle_solib_event): Update.
5182         * remote.c (remote_serial_quit_handler): Update.
5183         (remote_terminal_inferior, remote_wait_as): Update.
5184         * record-full.c (record_full_wait_1): Update.
5185         * nto-procfs.c (procfs_create_inferior): Update.
5186         * nat/fork-inferior.c (startup_inferior): Update.
5187         * mi/mi-interp.c (mi_new_thread, mi_thread_exit)
5188         (mi_record_changed, mi_inferior_added, mi_inferior_appeared)
5189         (mi_inferior_exit, mi_inferior_removed, mi_traceframe_changed)
5190         (mi_tsv_created, mi_tsv_deleted, mi_tsv_modified)
5191         (mi_breakpoint_created, mi_breakpoint_deleted)
5192         (mi_breakpoint_modified, mi_on_resume, mi_solib_loaded)
5193         (mi_solib_unloaded, mi_command_param_changed, mi_memory_changed)
5194         (mi_user_selected_context_changed, report_initial_inferior):
5195         Update.
5196         * linux-nat.c (linux_nat_attach, linux_nat_terminal_ours)
5197         (linux_nat_terminal_inferior): Update.
5198         * infrun.c (follow_fork_inferior)
5199         (handle_vfork_child_exec_or_exit, do_target_resume)
5200         (check_curr_ui_sync_execution_done, handle_inferior_event_1)
5201         (handle_signal_stop, maybe_remove_breakpoints, normal_stop):
5202         Update.
5203         * inflow.c (child_terminal_init, info_terminal_command): Update.
5204         * infcmd.c (post_create_inferior, continue_1, prepare_one_step)
5205         (attach_command): Update.
5206         * infcall.c (call_thread_fsm_should_stop): Update.
5207         * gnu-nat.c (gnu_attach): Update.
5208         * extension.c (struct active_ext_lang_state)
5209         (restore_active_ext_lang): Update.
5210         * exceptions.c (print_flush): Update.
5211         * event-top.c (async_enable_stdin, default_quit_handler): Update.
5212         (struct quit_handler_cleanup_data, restore_quit_handler)
5213         (restore_quit_handler_dtor, make_cleanup_override_quit_handler):
5214         Remove.
5215         * cp-support.c (gdb_demangle): Update.
5216         * breakpoint.c (update_inserted_breakpoint_locations)
5217         (insert_breakpoint_locations, handle_jit_event)
5218         (disable_breakpoints_in_unloaded_shlib): Update.
5219         * annotate.c (annotate_breakpoints_invalid)
5220         (annotate_frames_invalid): Update.
5221
5222 2017-09-20  Tom Tromey  <tom@tromey.com>
5223
5224         * main.c (catch_command_errors): Rename from
5225         catch_command_errors_const.
5226         (captured_main_1): Update.
5227
5228 2017-09-20  Pedro Alves  <palves@redhat.com>
5229
5230         * cli/cli-cmds.c (list_command): Use print_sal_location.
5231         (print_sal_location): New function.
5232         (ambiguous_line_spec): Use print_sal_location.
5233         * linespec.c (symbol_to_sal): Record the symbol in the sal.
5234         * symtab.c (find_function_start_sal): Likewise.
5235         * symtab.h (symtab_and_line::symbol): New field.
5236
5237 2017-09-20  Pedro Alves  <palves@redhat.com>
5238
5239         * linespec.c (minsym_found): Handle non-text minsyms.
5240         (symbol_to_sal): Record a sal.pc for non-block, non-label symbols.
5241
5242 2017-09-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
5243
5244         * features/Makefile (i386-avx-mpx-avx512-pku.dat): Add missing
5245         backslash.
5246
5247 2017-09-20  Walfred Tedeschi  <walfred.tedeschi@intel.com>
5248
5249         * gdb.arch/i386-avx512.c (move_zmm_data_to_reg): Use
5250         vmovups instead vmovaps.
5251         (move_zmm_data_to_memory): Use vmovups instead vmovaps.
5252
5253 2017-09-19  John Baldwin  <jhb@FreeBSD.org>
5254
5255         * NEWS (Changes since GDB 8.0): Add starti.
5256         * infcmd.c (enum run_break): New.
5257         (run_command_1): Queue pending event for RUN_STOP_AT_FIRST_INSN
5258         case.
5259         (run_command): Use enum run_how.
5260         (start_command): Likewise.
5261         (starti_command): New function.
5262         (RUN_ARGS_HELP): New macro.
5263         (_initialize_infcmd): Use RUN_ARGS_HELP for run and start
5264         commands.  Add starti command.
5265
5266 2017-09-19  Yao Qi  <yao.qi@linaro.org>
5267
5268         * Makefile.in (monitor.o): Remove the rule.
5269
5270 2017-09-19  Yao Qi  <yao.qi@linaro.org>
5271
5272         * annotate.h (struct annotate_arg_emitter): Use
5273         DISABLE_COPY_AND_ASSIGN.
5274         * common/refcounted-object.h (refcounted_object): Likewise.
5275         * completer.h (struct completion_result): Likewise.
5276         * dwarf2read.c (struct dwarf2_per_objfile): Likewise.
5277         * filename-seen-cache.h (filename_seen_cache): Likewise.
5278         * gdbcore.h (thread_section_name): Likewise.
5279         * gdb_regex.h (compiled_regex): Likewise.
5280         * gdbthread.h (scoped_restore_current_thread): Likewise.
5281         * inferior.h (scoped_restore_current_inferior): Likewise.
5282         * jit.c (jit_reader): Likewise.
5283         * linespec.h (struct linespec_result): Likewise.
5284         * mi/mi-parse.h (struct mi_parse): Likewise.
5285         * nat/fork-inferior.c (execv_argv): Likewise.
5286         * progspace.h (scoped_restore_current_program_space): Likewise.
5287         * python/python-internal.h (class gdbpy_enter): Likewise.
5288         * regcache.h (regcache): Likewise.
5289         * target-descriptions.c (struct tdesc_reg): Likewise.
5290         (struct tdesc_type): Likewise.
5291         (struct tdesc_feature): Likewise.
5292         * ui-out.h (ui_out_emit_type): Likewise.
5293
5294 2017-09-18  Simon Marchi  <simon.marchi@ericsson.com>
5295
5296         * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Remove
5297         label abort_expression.
5298
5299 2017-09-16  Simon Marchi  <simon.marchi@ericsson.com>
5300
5301         * common/buffer.c (buffer_xml_printf): Adjust.
5302         * common/xml-utils.c (xml_escape_text): Change return type to
5303         std::string, update code accordingly.
5304         * common/xml-utils.h (xml_escape_text): Change return type to
5305         std::string.
5306         * rs6000-aix-tdep.c (rs6000_aix_shared_library_to_xml): Adjust.
5307         * windows-tdep.c (windows_xfer_shared_library): Adjust.
5308         * unittests/xml-utils-selftests.c (test_xml_escape_text):
5309         Adjust.
5310
5311 2017-09-16  Simon Marchi  <simon.marchi@ericsson.com>
5312
5313         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add new source file.
5314         (SUBDIR_UNITTESTS_OBS): Add new object file.
5315         * unittests/xml-utils-selftests.c: New file.
5316
5317 2017-09-16  Simon Marchi  <simon.marchi@ericsson.com>
5318
5319         * common/selftest.h (selftest): New struct/interface.
5320         (register_test): Add name parameter, add new overload.
5321         (run_tests): Add filter parameter.
5322         (for_each_selftest_ftype): New typedef.
5323         (for_each_selftest): New declaration.
5324         * common/selftest.c (tests): Change type to
5325         map<string, unique_ptr<selftest>>.
5326         (simple_selftest): New struct.
5327         (register_test): New function.
5328         (register_test): Add name parameter and use it.
5329         (run_tests): Add filter parameter and use it.  Add prints.
5330         Adjust to vector -> map change.
5331         * aarch64-tdep.c (_initialize_aarch64_tdep): Add names when
5332         registering selftests.
5333         * arm-tdep.c (_initialize_arm_tdep): Likewise.
5334         * disasm-selftests.c (_initialize_disasm_selftests): Likewise.
5335         * dwarf2-frame.c (_initialize_dwarf2_frame): Likewise.
5336         * dwarf2loc.c (_initialize_dwarf2loc): Likewise.
5337         * findvar.c (_initialize_findvar): Likewise.
5338         * gdbarch-selftests.c (_initialize_gdbarch_selftests): Likewise.
5339         * maint.c (maintenance_selftest): Update call to run_tests.
5340         (maintenance_info_selftests): New function.
5341         (_initialize_maint_cmds): Register "maintenance info selftests"
5342         command.  Update "maintenance selftest" doc.
5343         * regcache.c (_initialize_regcache): Add names when registering
5344         selftests.
5345         * rust-exp.y (_initialize_rust_exp): Likewise.
5346         * selftest-arch.c (gdbarch_selftest): New struct.
5347         (gdbarch_tests): Remove.
5348         (register_test_foreach_arch): Add name parameter.  Call
5349         register_test.
5350         (tests_with_arch): Remove, move most content to
5351         gdbarch_selftest::operator().
5352         (_initialize_selftests_foreach_arch): Remove.
5353         * selftest-arch.h (register_test_foreach_arch): Add name
5354         parameter.
5355         (run_tests_with_arch): New declaration.
5356         * utils-selftests.c (_initialize_utils_selftests): Add names
5357         when registering selftests.
5358         * utils.c (_initialize_utils): Likewise.
5359         * unittests/array-view-selftests.c
5360         (_initialize_array_view_selftests): Likewise.
5361         * unittests/environ-selftests.c (_initialize_environ_selftests):
5362         Likewise.
5363         * unittests/function-view-selftests.c
5364         (_initialize_function_view_selftests): Likewise.
5365         * unittests/offset-type-selftests.c
5366         (_initialize_offset_type_selftests): Likewise.
5367         * unittests/optional-selftests.c
5368         (_initialize_optional_selftests): Likewise.
5369         * unittests/scoped_restore-selftests.c
5370         (_initialize_scoped_restore_selftests): Likewise.
5371         * NEWS: Document "maintenance selftest" and "maint info
5372         selftests".
5373
5374 2017-09-16  Simon Marchi  <simon.marchi@ericsson.com>
5375
5376         * mi/mi-main.c (mi_load_progress): Restore current_uiout using a
5377         scoped_restore.
5378
5379 2017-09-16  Simon Marchi  <simon.marchi@ericsson.com>
5380
5381         * mi/mi-main.c (mi_load_progress): Make uiout variable
5382         a unique_ptr.
5383
5384 2017-09-15  Pedro Alves  <palves@redhat.com>
5385
5386         * compile/compile-c-types.c (convert_enum, convert_int)
5387         (convert_float): Adjust to refer to int_type_v0 and float_type_v0.
5388
5389 2017-09-15  Simon Marchi  <simon.marchi@ericsson.com>
5390
5391         * dwarf2read.c (copy_string): Remove.
5392         (parse_macro_definition): Replace copy_string with savestring.
5393
5394 2017-09-15  Yao Qi  <yao.qi@linaro.org>
5395
5396         * configure.tgt (i[34567]86-*-darwin*): Append amd64.o to
5397         gdb_target_obs.
5398         (i[34567]86-*-solaris2.1[0-9]* | x86_64-*-solaris2.1[0-9]*):
5399         Likewise.
5400         (i[34567]86-*-linux*): Likewise.
5401
5402 2017-09-14  Simon Marchi  <simon.marchi@ericsson.com>
5403
5404         * dwarf2expr.h (dwarf_stack_value): Add constructor.
5405         (dwarf_expr_context) <~dwarf_expr_context>: Define as default.
5406         <stack>: Change type to std::vector.
5407         <stack_len, stack_allocated>: Remove.
5408         <grow_stack>: Remove.
5409         * dwarf2expr.c (dwarf_expr_context::dwarf_expr_context): Adjust.
5410         (dwarf_expr_context::~dwarf_expr_context): Remove.
5411         (dwarf_expr_context::grow_stack): Remove.
5412         (dwarf_expr_context::push): Adjust.
5413         (dwarf_expr_context::pop): Adjust.
5414         (dwarf_expr_context::fetch): Adjust.
5415         (dwarf_expr_context::fetch_in_stack_memory): Adjust.
5416         (dwarf_expr_context::stack_empty_p): Adjust.
5417         (dwarf_expr_context::execute_stack_op): Adjust.
5418
5419 2017-09-14  Simon Marchi  <simon.marchi@ericsson.com>
5420
5421         * dwarf2expr.h (dwarf_expr_context) <stack_empty_p>: Change
5422         return type to bool.
5423         * dwarf2expr.c (dwarf_expr_context::stack_empty_p): Likewise.
5424
5425 2017-09-14  Simon Marchi  <simon.marchi@ericsson.com>
5426
5427         * dwarf2expr.h (dwarf_expr_piece) <v.mem.in_stack_memory>:
5428         Change type to bool.
5429         (dwarf_stack_value) <in_stack_memory>: Likewise.
5430         (dwarf_expr_context) <push_address>: Change parameter type to
5431         bool.
5432         <fetch_in_stack_memory>: Change return type to bool.
5433         <push>: Change parameter type to bool.
5434         * dwarf2expr.c (dwarf_expr_context::push): Change parameter type
5435         to bool.
5436         (dwarf_expr_context::push_address): Likewise.
5437         (dwarf_expr_context::fetch_in_stack_memory): Change return type
5438         to bool.
5439         (dwarf_expr_context::execute_stack_op): Adjust.
5440         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Adjust.
5441
5442 2017-09-14  Simon Marchi  <simon.marchi@ericsson.com>
5443
5444         * dwarf2expr.h (struct dwarf_expr_piece): Move up.
5445         (struct dwarf_expr_context) <n_pieces>: Remove.
5446         <pieces>: Change type to std::vector.
5447         * dwarf2expr.c (dwarf_expr_context::dwarf_expr_context): Adjust.
5448         (dwarf_expr_context::~dwarf_expr_context): Don't manually free
5449         pieces.
5450         (dwarf_expr_context::add_piece): Adjust.
5451         * dwarf2loc.c (struct piece_closure): Initialize fields.
5452         <n_pieces>: Remove.
5453         <pieces>: Change type to std::vector.
5454         (allocate_piece_closure): Adjust, change parameter to
5455         std::vector rvalue and std::move it to piece_closure.
5456         (rw_pieced_value): Adjust.
5457         (check_pieced_synthetic_pointer): Adjust.
5458         (indirect_synthetic_pointer): Adjust.
5459         (coerce_pieced_ref): Adjust.
5460         (free_pieced_value_closure):  Adjust.  Use delete to free
5461         piece_closure.
5462         (dwarf2_evaluate_loc_desc_full): Adjust.  std::move ctx.pieces
5463         to allocate_piece_closure.
5464         (dwarf2_loc_desc_get_symbol_read_needs): Adjust.
5465
5466 2017-09-12  Simon Marchi  <simon.marchi@ericsson.com>
5467
5468         * probe.h (probe_ops_cp): Remove typedef.
5469         (DEF_VEC_P (probe_ops_cp)): Remove.
5470         (all_probe_ops): Change type to std::vector.
5471         * probe.c (info_probes_for_ops): Adjust to vector change.
5472         (probe_linespec_to_ops): Likewise.
5473         (all_probe_ops): Change type to std::vector.
5474         (_initialize_probe): Adjust to vector change.
5475         * dtrace-probe.c (_initialize_dtrace_probe): Likewise.
5476         * elfread.c (elf_get_probes): Likewise.
5477         * stap-probe.c (_initialize_stap_probe): Likewise.
5478
5479 2017-09-12  Simon Marchi  <simon.marchi@ericsson.com>
5480
5481         * probe.h (struct bound_probe): Define constructors.
5482         * probe.c (bound_probe_s): Remove typedef.
5483         (DEF_VEC_O (bound_probe_s)): Remove VEC.
5484         (collect_probes): Change return type to std::vector, remove
5485         cleanup.
5486         (compare_probes): Return bool, change parameter type.  Change
5487         semantic to "less than".
5488         (gen_ui_out_table_header_info): Change parameter to std::vector
5489         and update.
5490         (exists_probe_with_pops): Likewise.
5491         (info_probes_for_ops): Update to std::vector change.
5492         (enable_probes_command): Likewise.
5493         (disable_probes_command): Likewise.
5494
5495 2017-09-12  Simon Marchi  <simon.marchi@ericsson.com>
5496
5497         * probe.h (struct probe_ops) <get_probes>: Change parameter from
5498         vec to std::vector.
5499         * probe.c (parse_probes_in_pspace): Update.
5500         (find_probes_in_objfile): Update.
5501         (find_probe_by_pc): Update.
5502         (collect_probes): Update.
5503         (probe_any_get_probes): Update.
5504         * symfile.h (struct sym_probe_fns) <sym_get_probes> Change
5505         return type to reference to std::vector.
5506         * dtrace-probe.c (dtrace_process_dof_probe): Change parameter to
5507         std::vector and update.
5508         (dtrace_process_dof): Likewise.
5509         (dtrace_get_probes): Likewise.
5510         * elfread.c (elf_get_probes): Change return type to std::vector,
5511         store an std::vector in bfd_data.
5512         (probe_key_free): Update to std::vector.
5513         * stap-probe.c (handle_stap_probe): Change parameter to
5514         std::vector and update.
5515         (stap_get_probes): Likewise.
5516         * symfile-debug.c (debug_sym_get_probes): Change return type to
5517         std::vector and update.
5518
5519 2017-09-11  Tom Tromey  <tom@tromey.com>
5520
5521         * breakpoint.c (program_breakpoint_here_p): Update.
5522         * target.c (make_scoped_restore_show_memory_breakpoints): Rename
5523         from make_show_memory_breakpoints_cleanup.  Return a
5524         scoped_restore_tmpl<int>.
5525         (restore_show_memory_breakpoints): Remove.
5526         * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Update.
5527         * mem-break.c (memory_validate_breakpoint): Update.
5528         * ia64-tdep.c (ia64_memory_insert_breakpoint): Update.
5529         (ia64_memory_remove_breakpoint): Update.
5530         (ia64_breakpoint_from_pc): Update.
5531         * target.h (make_scoped_restore_show_memory_breakpoints): Rename
5532         from make_show_memory_breakpoints_cleanup.
5533
5534 2017-09-11  Tom Tromey  <tom@tromey.com>
5535
5536         * d-namespace.c (d_lookup_symbol): Use std::string.
5537         (find_symbol_in_baseclass): Likewise.
5538
5539 2017-09-11  Tom Tromey  <tom@tromey.com>
5540
5541         * ctf.c (ctf_start): Use std::string.
5542
5543 2017-09-11  Tom Tromey  <tom@tromey.com>
5544
5545         * ada-lang.c (is_known_support_routine): Update.
5546         (ada_unhandled_exception_name_addr_from_raise): Update.
5547         * guile/scm-frame.c (gdbscm_frame_name): Update.
5548         * python/py-frame.c (frapy_name): Update.
5549         (frapy_function): Update.
5550         * stack.h (find_frame_funname): Update.
5551         * stack.c (find_frame_funname): Return unique_xmalloc_ptr.
5552         (print_frame): Update.
5553
5554 2017-09-11  Tom Tromey  <tom@tromey.com>
5555
5556         * findcmd.c (put_bits): Take a gdb::byte_vector.
5557         (parse_find_args): Return gdb::byte_vector.  "args" now const.
5558         Remove "pattern_bufp" and "pattern_lenp" parameters.  Remove
5559         cleanups.
5560         (find_command): Update.
5561
5562 2017-09-11  Tom Tromey  <tom@tromey.com>
5563
5564         * cli/cli-script.c (class scoped_restore_hook_in): New.
5565         (clear_hook_in_cleanup): Remove.
5566         (execute_cmd_pre_hook, execute_cmd_post_hook): Use
5567         scoped_restore_hook_in.
5568
5569 2017-09-11  Tom Tromey  <tom@tromey.com>
5570
5571         * cli/cli-script.c (restore_interp): Remove.
5572         (read_command_lines): Use scoped_restore_interp.
5573         * interps.c (scoped_restore_interp::set_temp): Rename from
5574         interp_set_temp.
5575         * interps.h (class scoped_restore_interp): New.
5576         (interp_set_temp): Remove.
5577
5578 2017-09-11  Tom Tromey  <tom@tromey.com>
5579
5580         * mi/mi-cmd-catch.c (mi_cmd_catch_assert)
5581         (mi_cmd_catch_exception, mi_catch_load_unload): Update.
5582         * mi/mi-cmd-break.c (setup_breakpoint_reporting): Return a
5583         scoped_restore.
5584         (mi_cmd_break_insert_1): Update.
5585         * mi/mi-cmd-break.h (setup_breakpoint_reporting): Return a
5586         scoped_restore.
5587
5588 2017-09-11  Tom Tromey  <tom@tromey.com>
5589
5590         * demangle.c (demangle_command): Update.
5591         * breakpoint.c (disable_command): Update.
5592         (enable_command): Update.
5593         (find_location_by_number): Make "number" const.  Use
5594         get_number_trailer.
5595         * cli/cli-utils.c (extract_arg): Return std::string.
5596         * probe.c (parse_probe_linespec): Update.  Change types.
5597         (collect_probes): Take string arguments.
5598         (parse_probe_linespec): Likewise.
5599         (info_probes_for_ops): Update.
5600         (enable_probes_command): Update.
5601         (disable_probes_command): Update.
5602         * break-catch-sig.c (catch_signal_split_args): Update.
5603         * mi/mi-parse.c (mi_parse): Update.
5604
5605 2017-09-11  Tom Tromey  <tom@tromey.com>
5606
5607         * language.h (language_enum): Make argument const.
5608         * language.c (language_enum): Make argument const.
5609
5610 2017-09-11  Tom Tromey  <tom@tromey.com>
5611
5612         * common/common-utils.h (skip_to_space): Remove macro, redeclare
5613         as function.
5614         (skip_to_space): Rename from skip_to_space_const.
5615         * common/common-utils.c (skip_to_space): New function.
5616         (skip_to_space): Rename from skip_to_space_const.
5617         * cli/cli-utils.h (get_number): Rename from get_number_const.
5618         (extract_arg): Rename from extract_arg_const.
5619         * cli/cli-utils.c (get_number): Rename from get_number_const.
5620         (extract_arg): Rename from extract_arg_const.
5621         (number_or_range_parser::get_number): Use ::get_number.
5622         * aarch64-linux-tdep.c, ada-lang.c, arm-linux-tdep.c, ax-gdb.c,
5623         break-catch-throw.c, breakpoint.c, cli/cli-cmds.c, cli/cli-dump.c,
5624         cli/cli-script.c, cli/cli-setshow.c, compile/compile.c,
5625         completer.c, demangle.c, disasm.c, findcmd.c, linespec.c,
5626         linux-tdep.c, linux-thread-db.c, location.c, mi/mi-parse.c,
5627         minsyms.c, nat/linux-procfs.c, printcmd.c, probe.c,
5628         python/py-breakpoint.c, record.c, rust-exp.y, serial.c, stack.c,
5629         stap-probe.c, tid-parse.c, tracepoint.c: Update all callers.
5630
5631 2017-09-11  Tom Tromey  <tom@tromey.com>
5632
5633         * python/python.c (do_start_initialization): Use
5634         py-event-types.def to initialize types.
5635         Define all object type structures.
5636         * python/python-internal.h: Don't declare event initialization
5637         functions.
5638         * python/py-threadevent.c (thread_event_object_type): Don't
5639         define.
5640         * python/py-stopevent.c (stop_event_object_type): Don't define.
5641         * python/py-signalevent.c (signal_event_object_type): Don't
5642         declare or define.
5643         * python/py-newobjfileevent.c (new_objfile_event_object_type)
5644         (clear_objfiles_event_object_type): Don't declare or define.
5645         * python/py-infevents.c (inferior_call_pre_event_object_type)
5646         (inferior_call_post_event_object_type)
5647         (register_changed_event_object_type)
5648         (memory_changed_event_object_type): Don't declare or define.
5649         * python/py-inferior.c (new_thread_event_object_type)
5650         (new_inferior_event_object_type)
5651         (inferior_deleted_event_object_type): Don't declare or define.
5652         * python/py-exitedevent.c (exited_event_object_type): Don't
5653         declare or define.
5654         * python/py-evts.c (gdbpy_initialize_py_events): Use
5655         py-all-events.def.
5656         * python/py-events.h (thread_event_object_type): Don't declare.
5657         (events_object): Use py-all-events.def.
5658         * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove.  Use
5659         py-event-types.def.
5660         * python/py-event-types.def: New file.
5661         * python/py-continueevent.c (create_continue_event_object): Don't
5662         declare or define.
5663         * python/py-bpevent.c (breakpoint_event_object_type): Don't
5664         declare or define.
5665         * python/py-all-events.def: New file.
5666
5667 2017-09-11  Tom Tromey  <tom@tromey.com>
5668
5669         * python/py-threadevent.c (create_thread_event_object): Return
5670         gdbpy_ref.
5671         * python/py-stopevent.h (create_stop_event_object)
5672         (create_breakpoint_event_object, create_signal_event_object):
5673         Update.
5674         * python/py-stopevent.c (create_stop_event_object): Return
5675         gdbpy_ref.
5676         (emit_stop_event): Update.
5677         * python/py-signalevent.c (create_signal_event_object): Return
5678         gdbpy_ref.
5679         * python/py-infevents.c (create_inferior_call_event_object):
5680         Update.
5681         * python/py-event.h (create_event_object)
5682         (create_thread_event_object): Update.
5683         * python/py-event.c (create_event_object): Return gdbpy_ref.
5684         * python/py-continueevent.c: Return gdbpy_ref.
5685         * python/py-bpevent.c (create_breakpoint_event_object): Return
5686         gdbpy_ref.
5687
5688 2017-09-11  Tom Tromey  <tom@tromey.com>
5689
5690         PR python/15622:
5691         * NEWS: Add entry.
5692         * python/python.c (do_start_initialization): Initialize new event
5693         types.
5694         * python/python-internal.h (gdbpy_initialize_new_inferior_event)
5695         (gdbpy_initialize_inferior_deleted_event)
5696         (gdbpy_initialize_new_thread_event): Declare.
5697         * python/py-threadevent.c (create_thread_event_object): Add option
5698         "thread" parameter.
5699         * python/py-inferior.c (new_thread_event_object_type)
5700         (new_inferior_event_object_type)
5701         (inferior_deleted_event_object_type): Declare.
5702         (python_new_inferior, python_inferior_deleted): New functions.
5703         (add_thread_object): Emit new_thread event.
5704         (gdbpy_initialize_inferior): Attach new functions to corresponding
5705         observers.
5706         (new_thread, new_inferior, inferior_deleted): Define new event
5707         types.
5708         * python/py-evts.c (gdbpy_initialize_py_events): Add new
5709         registries.
5710         * python/py-events.h (events_object) <new_inferior,
5711         inferior_deleted, new_thread>: New fields.
5712         * python/py-event.h (create_thread_event_breakpoint): Add optional
5713         "thread" parameter.
5714
5715 2017-09-10  Andrew Burgess  <andrew.burgess@embecosm.com>
5716
5717         * utils.c (abort_with_message): Don't compare gdb_stderr to NULL,
5718         check current_ui instead.
5719         (internal_vproblem): Likewise.
5720
5721 2017-09-09  Simon Marchi  <simon.marchi@ericsson.com>
5722
5723         * thread.c (print_thread_info_1): Remove unnecessary calls to
5724         uiout->is_mi_like_p.
5725
5726 2017-09-09  Tom Tromey  <tom@tromey.com>
5727
5728         * namespace.h (add_using_directive): Update.
5729         * namespace.c (add_using_directive): Change type of excludes to
5730         std::vector.
5731         * dwarf2read.c (read_import_statement): Use std::vector.
5732         (read_namespace): Update.
5733         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
5734
5735 2017-09-09  Tom Tromey  <tom@tromey.com>
5736
5737         * linespec.c (create_sals_line_offset): Use gdb::def_vector.
5738
5739 2017-09-09  Tom Tromey  <tom@tromey.com>
5740
5741         * p-valprint.c (pascal_object_print_value): Use gdb::byte_vector.
5742
5743 2017-09-09  Tom Tromey  <tom@tromey.com>
5744
5745         * stack.c (func_command): Use gdb::def_vector.
5746
5747 2017-09-09  Tom Tromey  <tom@tromey.com>
5748
5749         * mi/mi-cmd-var.c (mi_cmd_var_list_children): Use gdb::optional,
5750         ui_out_emit_list, ui_out_emit_tuple.
5751         (mi_cmd_var_update): Likewise.
5752
5753 2017-09-09  Tom Tromey  <tom@tromey.com>
5754
5755         * mi/mi-interp.c (mi_user_selected_context_changed): Use
5756         ui_out_redirect_pop.
5757         * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
5758         ui_out_redirect_pop.
5759         * utils.c (do_ui_out_redirect_pop)
5760         (make_cleanup_ui_out_redirect_pop): Remove.
5761         * top.c (execute_command_to_string): Use ui_out_redirect_pop.
5762         * utils.h (make_cleanup_ui_out_redirect_pop): Remove.
5763         * ui-out.h (ui_out_redirect_pop): New class.
5764
5765 2017-09-09  Tom Tromey  <tom@tromey.com>
5766
5767         * mi/mi-main.c (output_cores): Use ui_out_emit_list.
5768         (list_available_thread_groups, mi_cmd_list_thread_groups)
5769         (mi_cmd_data_list_changed_registers, mi_cmd_data_read_memory)
5770         (mi_cmd_data_read_memory_bytes, mi_cmd_trace_frame_collected):
5771         Likewise.
5772
5773 2017-09-09  Tom Tromey  <tom@tromey.com>
5774
5775         * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn): Use
5776         ui_out_emit_tuple.
5777
5778 2017-09-09  Tom Tromey  <tom@tromey.com>
5779
5780         * target.c (flash_erase_command): Use ui_out_emit_tuple.
5781         * stack.c (print_frame): Use ui_out_emit_tuple.
5782         * spu-tdep.c (info_spu_event_command): Use ui_out_emit_tuple.
5783         (info_spu_mailbox_command, info_spu_dma_command)
5784         (info_spu_proxydma_command): Likewise.
5785         * mi/mi-main.c (mi_cmd_trace_frame_collected): Use
5786         ui_out_emit_tuple, gdb::byte_vector, bin2hex.
5787         * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
5788         ui_out_emit_tuple.
5789         * breakpoint.c (print_it_watchpoint): Use ui_out_emit_tuple.
5790
5791 2017-09-09  Tom Tromey  <tom@tromey.com>
5792
5793         * ui-out.h (make_cleanup_ui_out_table_begin_end): Remove.
5794         (class ui_out_emit_table): Update comment.
5795         * ui-out.c (do_cleanup_table_end)
5796         (make_cleanup_ui_out_table_begin_end): Remove.
5797         * spu-tdep.c (info_spu_mailbox_list): Use ui_out_emit_table.
5798         (info_spu_dma_cmdlist): Likewise.
5799         * probe.c (info_probes_for_ops): Use ui_out_emit_table.
5800         * darwin-nat-info.c (darwin_debug_regions_recurse): Use
5801         ui_out_emit_table.
5802
5803 2017-09-09  Tom Tromey  <tom@tromey.com>
5804
5805         * thread.c (print_thread_info_1): Use ui_out_emit_table,
5806         ui_out_emit_list, gdb::optional.
5807
5808 2017-09-09  John Baldwin  <jhb@FreeBSD.org>
5809
5810         * aarch64-linux-nat.c: Remove _initialize_aarch64_linux_nat
5811         prototype.
5812         * aarch64-linux-tdep.c: Remove _initialize_aarch64_linux_tdep
5813         prototype.
5814         * aarch64-newlib-tdep.c: Remove _initialize_aarch64_newlib_tdep
5815         prototype.
5816         * aarch64-tdep.c: Remove _initialize_aarch64_tdep prototype.
5817         * ada-exp.y: Remove _initialize_ada_exp prototype.
5818         * ada-lang.c: Remove _initialize_ada_language prototype.
5819         * ada-tasks.c: Remove _initialize_tasks prototype.
5820         * addrmap.c: Remove _initialize_addrmap prototype.
5821         * agent.c: Remove _initialize_agent prototype.
5822         * aix-thread.c: Remove _initialize_aix_thread prototype.
5823         * alpha-bsd-nat.c: Remove _initialize_alphabsd_nat prototype.
5824         * alpha-linux-nat.c: Remove _initialize_alpha_linux_nat prototype.
5825         * alpha-linux-tdep.c: Remove _initialize_alpha_linux_tdep
5826         prototype.
5827         * alpha-nbsd-tdep.c: Remove _initialize_alphanbsd_tdep prototype.
5828         * alpha-obsd-tdep.c: Remove _initialize_alphaobsd_tdep prototype.
5829         * alpha-tdep.c: Remove _initialize_alpha_tdep prototype.
5830         * amd64-darwin-tdep.c: Remove _initialize_amd64_darwin_tdep
5831         prototype.
5832         * amd64-dicos-tdep.c: Remove _initialize_amd64_dicos_tdep
5833         prototype.
5834         * amd64-fbsd-nat.c: Remove _initialize_amd64fbsd_nat prototype.
5835         * amd64-fbsd-tdep.c: Remove _initialize_amd64fbsd_tdep prototype.
5836         * amd64-linux-nat.c: Remove _initialize_amd64_linux_nat prototype.
5837         * amd64-linux-tdep.c: Remove _initialize_amd64_linux_tdep
5838         prototype.
5839         * amd64-nbsd-nat.c: Remove _initialize_amd64nbsd_nat prototype.
5840         * amd64-nbsd-tdep.c: Remove _initialize_amd64nbsd_tdep prototype.
5841         * amd64-obsd-nat.c: Remove _initialize_amd64obsd_nat prototype.
5842         * amd64-obsd-tdep.c: Remove _initialize_amd64obsd_tdep prototype.
5843         * amd64-sol2-tdep.c: Remove _initialize_amd64_sol2_tdep prototype.
5844         * amd64-tdep.c: Remove _initialize_amd64_tdep prototype.
5845         * amd64-windows-nat.c: Remove _initialize_amd64_windows_nat
5846         prototype.
5847         * amd64-windows-tdep.c: Remove _initialize_amd64_windows_tdep
5848         prototype.
5849         * annotate.c: Remove _initialize_annotate prototype.
5850         * arc-newlib-tdep.c: Remove _initialize_arc_newlib_tdep prototype.
5851         * arc-tdep.c: Remove _initialize_arc_tdep prototype.
5852         * arch-utils.c: Remove _initialize_gdbarch_utils prototype.
5853         * arm-linux-nat.c: Remove _initialize_arm_linux_nat prototype.
5854         * arm-linux-tdep.c: Remove _initialize_arm_linux_tdep prototype.
5855         * arm-nbsd-tdep.c: Remove _initialize_arm_netbsd_tdep prototype.
5856         * arm-obsd-tdep.c: Remove _initialize_armobsd_tdep prototype.
5857         * arm-symbian-tdep.c: Remove _initialize_arm_symbian_tdep
5858         prototype.
5859         * arm-tdep.c: Remove _initialize_arm_tdep prototype.
5860         * arm-wince-tdep.c: Remove _initialize_arm_wince_tdep prototype.
5861         * auto-load.c: Remove _initialize_auto_load prototype.
5862         * auxv.c: Remove _initialize_auxv prototype.
5863         * avr-tdep.c: Remove _initialize_avr_tdep prototype.
5864         * ax-gdb.c: Remove _initialize_ax_gdb prototype.
5865         * bfin-linux-tdep.c: Remove _initialize_bfin_linux_tdep prototype.
5866         * bfin-tdep.c: Remove _initialize_bfin_tdep prototype.
5867         * break-catch-sig.c: Remove _initialize_break_catch_sig prototype.
5868         * break-catch-syscall.c: Remove _initialize_break_catch_syscall
5869         prototype.
5870         * break-catch-throw.c: Remove _initialize_break_catch_throw
5871         prototype.
5872         * breakpoint.c: Remove _initialize_breakpoint prototype.
5873         * bsd-uthread.c: Remove _initialize_bsd_uthread prototype.
5874         * btrace.c: Remove _initialize_btrace prototype.
5875         * charset.c: Remove _initialize_charset prototype.
5876         * cli/cli-cmds.c: Remove _initialize_cli_cmds prototype.
5877         * cli/cli-dump.c: Remove _initialize_cli_dump prototype.
5878         * cli/cli-interp.c: Remove _initialize_cli_interp prototype.
5879         * cli/cli-logging.c: Remove _initialize_cli_logging prototype.
5880         * cli/cli-script.c: Remove _initialize_cli_script prototype.
5881         * coff-pe-read.c: Remove _initialize_coff_pe_read prototype.
5882         * coffread.c: Remove _initialize_coffread prototype.
5883         * compile/compile.c: Remove _initialize_compile prototype.
5884         * complaints.c: Remove _initialize_complaints prototype.
5885         * completer.c: Remove _initialize_completer prototype.
5886         * copying.awk: Remove _initialize_copying prototype.
5887         * copying.c: Regenerate.
5888         * core-regset.c: Remove _initialize_core_regset prototype.
5889         * corefile.c: Remove _initialize_core prototype.
5890         * corelow.c: Remove _initialize_corelow prototype.
5891         * cp-abi.c: Remove _initialize_cp_abi prototype.
5892         * cp-namespace.c: Remove _initialize_cp_namespace prototype.
5893         * cp-support.c: Remove _initialize_cp_support prototype.
5894         * cp-valprint.c: Remove _initialize_cp_valprint prototype.
5895         * cris-linux-tdep.c: Remove _initialize_cris_linux_tdep prototype.
5896         * cris-tdep.c: Remove _initialize_cris_tdep prototype.
5897         * ctf.c: Remove _initialize_ctf prototype.
5898         * d-lang.c: Remove _initialize_d_language prototype.
5899         * darwin-nat-info.c: Remove _initialize_darwin_info_commands
5900         prototype.
5901         * darwin-nat.c: Remove _initialize_darwin_inferior prototype.
5902         * dbxread.c: Remove _initialize_dbxread prototype.
5903         * dcache.c: Remove _initialize_dcache prototype.
5904         * demangle.c: Remove _initialize_demangler prototype.
5905         * disasm-selftests.c: Remove _initialize_disasm_selftests
5906         prototype.
5907         * disasm.c: Remove _initialize_disasm prototype.
5908         * dtrace-probe.c: Remove _initialize_dtrace_probe prototype.
5909         * dummy-frame.c: Remove _initialize_dummy_frame prototype.
5910         * dwarf2-frame-tailcall.c: Remove _initialize_tailcall_frame
5911         prototype.
5912         * dwarf2-frame.c: Remove _initialize_dwarf2_frame prototype.
5913         * dwarf2expr.c: Remove _initialize_dwarf2expr prototype.
5914         * dwarf2loc.c: Remove _initialize_dwarf2loc prototype.
5915         * dwarf2read.c: Remove _initialize_dwarf2_read prototype.
5916         * elfread.c: Remove _initialize_elfread prototype.
5917         * exec.c: Remove _initialize_exec prototype.
5918         * extension.c: Remove _initialize_extension prototype.
5919         * f-lang.c: Remove _initialize_f_language prototype.
5920         * f-valprint.c: Remove _initialize_f_valprint prototype.
5921         * fbsd-nat.c: Remove _initialize_fbsd_nat prototype.
5922         * fbsd-tdep.c: Remove _initialize_fbsd_tdep prototype.
5923         * filesystem.c: Remove _initialize_filesystem prototype.
5924         * findcmd.c: Remove _initialize_mem_search prototype.
5925         * fork-child.c: Remove _initialize_fork_child prototype.
5926         * frame-base.c: Remove _initialize_frame_base prototype.
5927         * frame-unwind.c: Remove _initialize_frame_unwind prototype.
5928         * frame.c: Remove _initialize_frame prototype.
5929         * frv-linux-tdep.c: Remove _initialize_frv_linux_tdep prototype.
5930         * frv-tdep.c: Remove _initialize_frv_tdep prototype.
5931         * ft32-tdep.c: Remove _initialize_ft32_tdep prototype.
5932         * gcore.c: Remove _initialize_gcore prototype.
5933         * gdb_bfd.c: Remove _initialize_gdb_bfd prototype.
5934         * gdbarch.c: Regenerate.
5935         * gdbarch.sh: Remove _initialize_gdbarch prototype.
5936         * gdbtypes.c: Remove _initialize_gdbtypes prototype.
5937         * gnu-nat.c: Remove _initialize_gnu_nat prototype.
5938         * gnu-v2-abi.c: Remove _initialize_gnu_v2_abi prototype.
5939         * gnu-v3-abi.c: Remove _initialize_gnu_v3_abi prototype.
5940         * go-lang.c: Remove _initialize_go_language prototype.
5941         * go32-nat.c: Remove _initialize_go32_nat prototype.
5942         * guile/guile.c: Remove _initialize_guile prototype.
5943         * h8300-tdep.c: Remove _initialize_h8300_tdep prototype.
5944         * hppa-linux-nat.c: Remove _initialize_hppa_linux_nat prototype.
5945         * hppa-linux-tdep.c: Remove _initialize_hppa_linux_tdep prototype.
5946         * hppa-nbsd-nat.c: Remove _initialize_hppanbsd_nat prototype.
5947         * hppa-nbsd-tdep.c: Remove _initialize_hppanbsd_tdep prototype.
5948         * hppa-obsd-nat.c: Remove _initialize_hppaobsd_nat prototype.
5949         * hppa-obsd-tdep.c: Remove _initialize_hppaobsd_tdep prototype.
5950         * hppa-tdep.c: Remove _initialize_hppa_tdep prototype.
5951         * i386-bsd-nat.c: Remove _initialize_i386bsd_nat prototype.
5952         * i386-cygwin-tdep.c: Remove _initialize_i386_cygwin_tdep
5953         prototype.
5954         * i386-darwin-tdep.c: Remove _initialize_i386_darwin_tdep
5955         prototype.
5956         * i386-dicos-tdep.c: Remove _initialize_i386_dicos_tdep prototype.
5957         * i386-fbsd-nat.c: Remove _initialize_i386fbsd_nat prototype.
5958         * i386-fbsd-tdep.c: Remove _initialize_i386fbsd_tdep prototype.
5959         * i386-gnu-nat.c: Remove _initialize_i386gnu_nat prototype.
5960         * i386-gnu-tdep.c: Remove _initialize_i386gnu_tdep prototype.
5961         * i386-linux-nat.c: Remove _initialize_i386_linux_nat prototype.
5962         * i386-linux-tdep.c: Remove _initialize_i386_linux_tdep prototype.
5963         * i386-nbsd-nat.c: Remove _initialize_i386nbsd_nat prototype.
5964         * i386-nbsd-tdep.c: Remove _initialize_i386nbsd_tdep prototype.
5965         * i386-nto-tdep.c: Remove _initialize_i386nto_tdep prototype.
5966         * i386-obsd-nat.c: Remove _initialize_i386obsd_nat prototype.
5967         * i386-obsd-tdep.c: Remove _initialize_i386obsd_tdep prototype.
5968         * i386-sol2-nat.c: Remove _initialize_amd64_sol2_nat prototype.
5969         * i386-sol2-tdep.c: Remove _initialize_amd64_sol2_tdep prototype.
5970         * i386-tdep.c: Remove _initialize_i386_tdep prototype.
5971         * i386-windows-nat.c: Remove _initialize_i386_windows_nat
5972         prototype.
5973         * ia64-libunwind-tdep.c: Remove _initialize_libunwind_frame
5974         prototype.
5975         * ia64-linux-nat.c: Remove _initialize_ia64_linux_nat prototype.
5976         * ia64-linux-tdep.c: Remove _initialize_ia64_linux_tdep prototype.
5977         * ia64-tdep.c: Remove _initialize_ia64_tdep prototype.
5978         * ia64-vms-tdep.c: Remove _initialize_ia64_vms_tdep prototype.
5979         * infcall.c: Remove _initialize_infcall prototype.
5980         * infcmd.c: Remove _initialize_infcmd prototype.
5981         * inferior.c: Remove _initialize_inferiors prototype.
5982         * inflow.c: Remove _initialize_inflow prototype.
5983         * infrun.c: Remove _initialize_infrun prototype.
5984         * interps.c: Remove _initialize_interpreter prototype.
5985         * iq2000-tdep.c: Remove _initialize_iq2000_tdep prototype.
5986         * jit.c: Remove _initialize_jit prototype.
5987         * language.c: Remove _initialize_language prototype.
5988         * linux-fork.c: Remove _initialize_linux_fork prototype.
5989         * linux-nat.c: Remove _initialize_linux_nat prototype.
5990         * linux-tdep.c: Remove _initialize_linux_tdep prototype.
5991         * linux-thread-db.c: Remove _initialize_thread_db prototype.
5992         * lm32-tdep.c: Remove _initialize_lm32_tdep prototype.
5993         * m2-lang.c: Remove _initialize_m2_language prototype.
5994         * m32c-tdep.c: Remove _initialize_m32c_tdep prototype.
5995         * m32r-linux-nat.c: Remove _initialize_m32r_linux_nat prototype.
5996         * m32r-linux-tdep.c: Remove _initialize_m32r_linux_tdep prototype.
5997         * m32r-tdep.c: Remove _initialize_m32r_tdep prototype.
5998         * m68hc11-tdep.c: Remove _initialize_m68hc11_tdep prototype.
5999         * m68k-bsd-nat.c: Remove _initialize_m68kbsd_nat prototype.
6000         * m68k-bsd-tdep.c: Remove _initialize_m68kbsd_tdep prototype.
6001         * m68k-linux-nat.c: Remove _initialize_m68k_linux_tdep prototype.
6002         * m68k-linux-tdep.c: Remove _initialize_m68k_linux_tdep prototype.
6003         * m68k-tdep.c: Remove _initialize_m68k_tdep prototype.
6004         * m88k-bsd-nat.c: Remove _initialize_m68kbsd_nat prototype.
6005         * m88k-tdep.c: Remove _initialize_m68kbsd_tdep prototype.
6006         * machoread.c: Remove _initialize_machoread prototype.
6007         * macrocmd.c: Remove _initialize_macrocmd prototype.
6008         * macroscope.c: Remove _initialize_macroscope prototype.
6009         * maint.c: Remove _initialize_maint_cmds prototype.
6010         * mdebugread.c: Remove _initialize_mdebugread prototype.
6011         * memattr.c: Remove _initialize_mem prototype.
6012         * mep-tdep.c: Remove _initialize_mep_tdep prototype.
6013         * mi/mi-cmd-env.c: Remove _initialize_mi_cmd_env prototype.
6014         * mi/mi-cmds.c: Remove _initialize_mi_cmds prototype.
6015         * mi/mi-interp.c: Remove _initialize_mi_interp prototype.
6016         * mi/mi-main.c: Remove _initialize_mi_main prototype.
6017         * microblaze-linux-tdep.c: Remove
6018         _initialize_microblaze_linux_tdep prototype.
6019         * microblaze-tdep.c: Remove _initialize_microblaze_tdep prototype.
6020         * mips-fbsd-nat.c: Remove _initialize_mips_fbsd_nat prototype.
6021         * mips-fbsd-tdep.c: Remove _initialize_mips_fbsd_tdep prototype.
6022         * mips-linux-nat.c: Remove _initialize_mips_linux_nat prototype.
6023         * mips-linux-tdep.c: Remove _initialize_mips_linux_tdep prototype.
6024         * mips-nbsd-nat.c: Remove _initialize_mipsnbsd_nat prototype.
6025         * mips-nbsd-tdep.c: Remove _initialize_mipsnbsd_tdep prototype.
6026         * mips-sde-tdep.c: Remove _initialize_mips_sde_tdep prototype.
6027         * mips-tdep.c: Remove _initialize_mips_tdep prototype.
6028         * mips64-obsd-nat.c: Remove _initialize_mips64obsd_nat prototype.
6029         * mips64-obsd-tdep.c: Remove _initialize_mips64obsd_tdep
6030         prototype.
6031         * mipsread.c: Remove _initialize_mipsread prototype.
6032         * mn10300-linux-tdep.c: Remove _initialize_mn10300_linux_tdep
6033         prototype.
6034         * mn10300-tdep.c: Remove _initialize_mn10300_tdep prototype.
6035         * moxie-tdep.c: Remove _initialize_moxie_tdep prototype.
6036         * msp430-tdep.c: Remove _initialize_msp430_tdep prototype.
6037         * mt-tdep.c: Remove _initialize_mt_tdep prototype.
6038         * nds32-tdep.c: Remove _initialize_nds32_tdep prototype.
6039         * nios2-linux-tdep.c: Remove _initialize_nios2_linux_tdep
6040         prototype.
6041         * nios2-tdep.c: Remove _initialize_nios2_tdep prototype.
6042         * nto-procfs.c: Remove _initialize_procfs prototype.
6043         * nto-tdep.c: Remove _initialize_nto_tdep prototype.
6044         * objc-lang.c: Remove _initialize_objc_language prototype.
6045         * objfiles.c: Remove _initialize_objfiles prototype.
6046         * observer.c: Remove observer_test_first_notification_function,
6047         observer_test_second_notification_function,
6048         observer_test_third_notification_function, and
6049         _initialize_observer prototypes.
6050         * opencl-lang.c: Remove _initialize_opencl_language prototypes.
6051         * osabi.c: Remove _initialize_gdb_osabi prototype.
6052         * osdata.c: Remove _initialize_osdata prototype.
6053         * p-valprint.c: Remove _initialize_pascal_valprint prototype.
6054         * parse.c: Remove _initialize_parse prototype.
6055         * ppc-fbsd-nat.c: Remove _initialize_ppcfbsd_nat prototype.
6056         * ppc-fbsd-tdep.c: Remove _initialize_ppcfbsd_tdep prototype.
6057         * ppc-linux-nat.c: Remove _initialize_ppc_linux_nat prototype.
6058         * ppc-linux-tdep.c: Remove _initialize_ppc_linux_tdep prototype.
6059         * ppc-nbsd-nat.c: Remove _initialize_ppcnbsd_nat prototype.
6060         * ppc-nbsd-tdep.c: Remove _initialize_ppcnbsd_tdep prototype.
6061         * ppc-obsd-nat.c: Remove _initialize_ppcobsd_nat prototype.
6062         * ppc-obsd-tdep.c: Remove _initialize_ppcobsd_tdep prototype.
6063         * printcmd.c: Remove _initialize_printcmd prototype.
6064         * probe.c: Remove _initialize_probe prototype.
6065         * proc-api.c: Remove _initialize_proc_api prototype.
6066         * proc-events.c: Remove _initialize_proc_events prototype.
6067         * proc-service.c: Remove _initialize_proc_service prototype.
6068         * procfs.c: Remove _initialize_procfs prototype.
6069         * psymtab.c: Remove _initialize_psymtab prototype.
6070         * python/python.c: Remove _initialize_python prototype.
6071         * ravenscar-thread.c: Remove _initialize_ravenscar prototype.
6072         * record-btrace.c: Remove _initialize_record_btrace prototype.
6073         * record-full.c: Remove _initialize_record_full prototype.
6074         * record.c: Remove _initialize_record prototype.
6075         * regcache.c: Remove _initialize_regcache prototype.
6076         * reggroups.c: Remove _initialize_reggroup prototype.
6077         * remote-notif.c: Remove _initialize_notif prototype.
6078         * remote-sim.c: Remove _initialize_remote_sim prototype.
6079         * remote.c: Remove _initialize_remote prototype.
6080         * reverse.c: Remove _initialize_reverse prototype.
6081         * rl78-tdep.c: Remove _initialize_rl78_tdep prototype.
6082         * rs6000-aix-tdep.c: Remove _initialize_rs6000_aix_tdep prototype.
6083         * rs6000-lynx178-tdep.c: Remove _initialize_rs6000_lynx178_tdep
6084         prototype.
6085         * rs6000-nat.c: Remove _initialize_rs6000_nat prototype.
6086         * rs6000-tdep.c: Remove _initialize_rs6000_tdep prototype.
6087         * rust-exp.y: Remove _initialize_rust_exp prototype.
6088         * rx-tdep.c: Remove _initialize_rx_tdep prototype.
6089         * s390-linux-nat.c: Remove _initialize_s390_nat prototype.
6090         * s390-linux-tdep.c: Remove _initialize_s390_tdep prototype.
6091         * score-tdep.c: Remove _initialize_score_tdep prototype.
6092         * selftest-arch.c: Remove _initialize_selftests_foreach_arch
6093         prototype.
6094         * ser-go32.c: Remove _initialize_ser_dos prototype.
6095         * ser-mingw.c: Remove _initialize_ser_windows prototype.
6096         * ser-pipe.c: Remove _initialize_ser_pipe prototype.
6097         * ser-tcp.c: Remove _initialize_ser_tcp prototype.
6098         * ser-unix.c: Remove _initialize_ser_hardwire prototype.
6099         * serial.c: Remove _initialize_serial prototype.
6100         * sh-linux-tdep.c: Remove _initialize_sh_linux_tdep prototype.
6101         * sh-nbsd-nat.c: Remove _initialize_shnbsd_nat prototype.
6102         * sh-nbsd-tdep.c: Remove _initialize_shnbsd_tdep prototype.
6103         * sh-tdep.c: Remove _initialize_sh_tdep prototype.
6104         * skip.c: Remove _initialize_step_skip prototype.
6105         * sol-thread.c: Remove _initialize_sol_thread prototype.
6106         * solib-aix.c: Remove _initialize_solib_aix prototype.
6107         * solib-darwin.c: Remove _initialize_darwin_solib prototype.
6108         * solib-dsbt.c: Remove _initialize_dsbt_solib prototype.
6109         * solib-frv.c: Remove _initialize_frv_solib prototype.
6110         * solib-spu.c: Remove _initialize_spu_solib prototype.
6111         * solib-svr4.c: Remove _initialize_svr4_solib prototype.
6112         * solib-target.c: Remove _initialize_solib_target prototype.
6113         * solib.c: Remove _initialize_solib prototype.
6114         * source.c: Remove _initialize_source prototype.
6115         * sparc-linux-nat.c: Remove _initialize_sparc_linux_nat prototype.
6116         * sparc-linux-tdep.c: Remove _initialize_sparc_linux_tdep
6117         prototype.
6118         * sparc-nat.c: Remove _initialize_sparc_nat prototype.
6119         * sparc-nbsd-nat.c: Remove _initialize_sparcnbsd_nat prototype.
6120         * sparc-nbsd-tdep.c: Remove _initialize_sparcnbsd_tdep prototype.
6121         * sparc-obsd-tdep.c: Remove _initialize_sparc32obsd_tdep
6122         prototype.
6123         * sparc-sol2-nat.c: Remove _initialize_sparc_sol2_nat prototype.
6124         * sparc-sol2-tdep.c: Remove _initialize_sparc_sol2_tdep prototype.
6125         * sparc-tdep.c: Remove _initialize_sparc_tdep prototype.
6126         * sparc64-fbsd-nat.c: Remove _initialize_sparc64fbsd_nat
6127         prototype.
6128         * sparc64-fbsd-tdep.c: Remove _initialize_sparc64fbsd_tdep
6129         prototype.
6130         * sparc64-linux-nat.c: Remove _initialize_sparc64_linux_nat
6131         prototype.
6132         * sparc64-linux-tdep.c: Remove _initialize_sparc64_linux_tdep
6133         prototype.
6134         * sparc64-nat.c: Remove _initialize_sparc64_nat prototype.
6135         * sparc64-nbsd-nat.c: Remove _initialize_sparc64nbsd_nat
6136         prototype.
6137         * sparc64-nbsd-tdep.c: Remove _initialize_sparc64nbsd_tdep
6138         prototype.
6139         * sparc64-obsd-nat.c: Remove _initialize_sparc64obsd_nat
6140         prototype.
6141         * sparc64-obsd-tdep.c: Remove _initialize_sparc64obsd_tdep
6142         prototype.
6143         * sparc64-sol2-tdep.c: Remove _initialize_sparc64_sol2_tdep
6144         prototype.
6145         * spu-linux-nat.c: Remove _initialize_spu_nat prototype.
6146         * spu-multiarch.c: Remove _initialize_spu_multiarch prototype.
6147         * spu-tdep.c: Remove _initialize_spu_tdep prototype.
6148         * stabsread.c: Remove _initialize_stabsread prototype.
6149         * stack.c: Remove _initialize_stack prototype.
6150         * stap-probe.c: Remove _initialize_stap_probe prototype.
6151         * std-regs.c: Remove _initialize_frame_reg prototype.
6152         * symfile-debug.c: Remove _initialize_symfile_debug prototype.
6153         * symfile-mem.c: Remove _initialize_symfile_mem prototype.
6154         * symfile.c: Remove _initialize_symfile prototype.
6155         * symmisc.c: Remove _initialize_symmisc prototype.
6156         * symtab.c: Remove _initialize_symtab prototype.
6157         * target-dcache.c: Remove _initialize_target_dcache prototype.
6158         * target-descriptions.c: Remove _initialize_target_descriptions
6159         prototype.
6160         * thread.c: Remove _initialize_thread prototype.
6161         * tic6x-linux-tdep.c: Remove _initialize_tic6x_linux_tdep
6162         prototype.
6163         * tic6x-tdep.c: Remove _initialize_tic6x_tdep prototype.
6164         * tilegx-linux-nat.c: Remove _initialize_tile_linux_nat prototype.
6165         * tilegx-linux-tdep.c: Remove _initialize_tilegx_linux_tdep
6166         prototype.
6167         * tilegx-tdep.c: Remove _initialize_tilegx_tdep prototype.
6168         * tracefile-tfile.c: Remove _initialize_tracefile_tfile prototype.
6169         * tracefile.c: Remove _initialize_tracefile prototype.
6170         * tracepoint.c: Remove _initialize_tracepoint prototype.
6171         * tui/tui-hooks.c: Remove _initialize_tui_hooks prototype.
6172         * tui/tui-interp.c: Remove _initialize_tui_interp prototype.
6173         * tui/tui-layout.c: Remove _initialize_tui_layout prototype.
6174         * tui/tui-regs.c: Remove _initialize_tui_regs prototype.
6175         * tui/tui-stack.c: Remove _initialize_tui_stack prototype.
6176         * tui/tui-win.c: Remove _initialize_tui_win prototype.
6177         * tui/tui.c: Remove _initialize_tui prototype.
6178         * typeprint.c: Remove _initialize_typeprint prototype.
6179         * user-regs.c: Remove _initialize_user_regs prototype.
6180         * utils.c: Remove _initialize_utils prototype.
6181         * v850-tdep.c: Remove _initialize_v850_tdep prototype.
6182         * valarith.c: Remove _initialize_valarith prototype.
6183         * valops.c: Remove _initialize_valops prototype.
6184         * valprint.c: Remove _initialize_valprint prototype.
6185         * value.c: Remove _initialize_values prototype.
6186         * varobj.c: Remove _initialize_varobj prototype.
6187         * vax-bsd-nat.c: Remove _initialize_vaxbsd_nat prototype.
6188         * vax-nbsd-tdep.c: Remove _initialize_vaxnbsd_tdep prototype.
6189         * vax-tdep.c: Remove _initialize_vax_tdep prototype.
6190         * windows-nat.c: Remove _initialize_windows_nat,
6191         _initialize_check_for_gdb_ini, and _initialize_loadable
6192         prototypes.
6193         * windows-tdep.c: Remove _initialize_windows_tdep prototype.
6194         * xcoffread.c: Remove _initialize_xcoffread prototype.
6195         * xml-support.c: Remove _initialize_xml_support prototype.
6196         * xstormy16-tdep.c: Remove _initialize_xstormy16_tdep prototype.
6197         * xtensa-linux-nat.c: Remove _initialize_xtensa_linux_nat
6198         prototype.
6199         * xtensa-linux-tdep.c: Remove _initialize_xtensa_linux_tdep
6200         prototype.
6201         * xtensa-tdep.c: Remove _initialize_xtensa_tdep prototype.
6202
6203 2017-09-08  Keith Seitz  <keiths@redhat.com>
6204
6205         * dwarf2read.c (struct field_info) <fnfields>: Remove unused
6206         field.
6207
6208 2017-09-08  Christoph Weinmann  <christoph.t.weinmann@intel.com>
6209
6210         * f-valprint.c (f_val_print): Remove check for one byte
6211         sized integers. Remove printing of character type.
6212
6213 2017-09-08  Frank Penczek  <frank.penczek@intel.com>
6214             Christoph Weinmann  <christoph.t.weinmann@intel.com>
6215             Bernhard Heckel  <bernhard.heckel@intel.com>
6216
6217         * f-typeprint.c (f_type_print_base): Use fprintfi_filtered
6218         to maintain proper indentation when printing pointers/refs.
6219
6220 2017-09-07  Joel Brobecker  <brobecker@adacore.com>
6221
6222         GDB 8.0.1 released.
6223
6224 2017-09-07  Joel Brobecker  <brobecker@adacore.com>
6225
6226         * NEWS (Changes in GDB 7.11): Remove entry for QStartupWithShell.
6227
6228 2017-09-05  Tom Tromey  <tom@tromey.com>
6229
6230         * parse.c (funcall_chain): Now a std::vector.
6231         (start_arglist, end_arglist): Simplify.
6232         (free_funcalls): Remove.
6233         (parse_exp_in_context_1): Remove cleanup.
6234
6235 2017-09-05  Tom Tromey  <tom@tromey.com>
6236
6237         * go-exp.y (go_parse): Don't create a cleanup.
6238
6239 2017-09-05  Tom Tromey  <tom@tromey.com>
6240
6241         * d-exp.y (PrimaryExpression): Use std::string.
6242         (d_parse): Don't create a cleanup.
6243
6244 2017-09-05  Tom Tromey  <tom@tromey.com>
6245
6246         * utils.c (do_clear_parser_state): Remove.
6247         (make_cleanup_clear_parser_state): Remove.
6248         * p-exp.y (pascal_parse): Use scoped_restore.
6249         * m2-exp.y (m2_parse): Use scoped_restore.
6250         * f-exp.y (f_parse): Use scoped_restore.
6251         * d-exp.y (d_parse): Use scoped_restore.
6252         * c-exp.y (c_parse): Use scoped_restore.
6253         * ada-exp.y (ada_parse): Use scoped_restore.
6254         * utils.h (make_cleanup_clear_parser_state): Remove.
6255
6256 2017-09-06  Keith Seitz  <keiths@redhat.com>
6257
6258         * dwarf2read.c (dw2_linkage_name_attr): New function.
6259         (dw2_linkage_name): New function.
6260         (dwarf2_compute_name, dwarf2_physname, read_call_site_scope)
6261         (guess_full_die_structure_name, dwarf2_name): Use dw2_linkage_name.
6262         (anonymous_struct_prefix, dwarf2_name): Use dw2_linkage_name_attr.
6263
6264 2017-09-06  Kamil Rytarowski  <n54@gmx.com>
6265
6266         * config/djgpp/djconfig.sh: Correct shell portability issue.
6267
6268 2017-09-06  Kamil Rytarowski  <n54@gmx.com>
6269
6270         * configure.nat: Define HAVE_NATIVE_GCORE_HOST on NetBSD.
6271
6272 2017-09-06  John Baldwin  <jhb@FreeBSD.org>
6273
6274         * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
6275         * NEWS: Mention new FreeBSD/mips native configuration.
6276         * configure.host: Add aarch64*-*-freebsd*.
6277         * configure.nat: Likewise.
6278         * aarch64-fbsd-nat.c: New file.
6279
6280 2017-09-06  John Baldwin  <jhb@FreeBSD.org>
6281
6282         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-fbsd-tdep.o.
6283         (ALLDEPFILES): Add aarch64-fbsd-tdep.c.
6284         * NEWS: Mention new FreeBSD/aarch64 target.
6285         * configure.tgt: Add aarch64*-*-freebsd*.
6286         * aarch64-fbsd-tdep.c: New file.
6287         * aarch64-fbsd-tdep.h: New file.
6288
6289 2017-09-06  Kamil Rytarowski  <n54@gmx.com>
6290
6291         * MAINTAINERS (Write After Approval): Add Kamil Rytarowski.
6292
6293 2017-09-06  Jan Kratochvil  <jan.kratochvil@redhat.com>
6294
6295         * parse.c (find_minsym_type_and_address): Don't relocate addresses
6296         of TLS symbols.
6297
6298 2017-09-05  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
6299
6300         * objfiles.c (get_objfile_bfd_data): Remove useless obstack_init
6301         call.
6302
6303 2017-09-05  Simon Marchi  <simon.marchi@ericsson.com>
6304
6305         * infrun.c (follow_exec): Call add_thread after
6306         target_find_description.
6307
6308 2017-09-05  Simon Marchi  <simon.marchi@ericsson.com>
6309
6310         * infrun.c (handle_inferior_event_1): When exec'ing, read
6311         stop_pc after follow_exec.
6312
6313 2017-09-05  Simon Marchi  <simon.marchi@ericsson.com>
6314
6315         * remote.c (process_g_packet): Update error message.
6316
6317 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6318
6319         * configure.tgt (gdb_target_obs): Add i386.o for x86_64-*
6320         targets.
6321
6322 2017-09-05  Pedro Alves  <palves@redhat.com>
6323
6324         * eval.c (eval_call, evaluate_funcall): New functions, factored
6325         out from ...
6326         (evaluate_subexp_standard): ... this.
6327
6328 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6329
6330         * amd64-tdep.c (amd64_target_description): Create target
6331         descriptions.
6332         (_initialize_amd64_tdep): Don't call functions
6333         initialize_tdesc_amd64_*.  Add self tests.
6334         * arch/amd64.c (amd64_create_target_description): Add parameter
6335         is_linux.  Call set_tdesc_osabi if is_linux is true.
6336         * arch/amd64.h (amd64_create_target_description): Update the
6337         declaration.
6338         * arch/i386.c (i386_create_target_description): Add parameter
6339         is_linux.  Call set_tdesc_osabi if is_linux is true.
6340         * arch/i386.h (i386_create_target_description): Update
6341         declaration.
6342         * configure.tgt: Add i386.o to gdb_target_obs.
6343         * features/Makefile (XMLTOC): Remove i386/*.xml.
6344         * features/i386/amd64-avx-avx512.c: Remove.
6345         * features/i386/amd64-avx-mpx-avx512-pku.c: Remove.
6346         * features/i386/amd64-avx-mpx.c: Remove.
6347         * features/i386/amd64-avx.c: Remove.
6348         * features/i386/amd64-mpx.c: Remove.
6349         * features/i386/amd64.c: Remove.
6350         * features/i386/i386-avx-avx512.c: Remove.
6351         * features/i386/i386-avx-mpx-avx512-pku.c: Remove.
6352         * features/i386/i386-avx-mpx.c: Remove.
6353         * features/i386/i386-avx.c: Remove.
6354         * features/i386/i386-mmx.c: Remove.
6355         * features/i386/i386-mpx.c: Remove.
6356         * features/i386/i386.c: Remove.
6357         * i386-tdep.c: Don't include features/i386/i386*.c., include
6358         target-descriptions.h and arch/i386.h.
6359         (i386_target_description): Create target descriptions.
6360         (i386_gdbarch_init): Don't call initialize_tdesc_i386_*
6361         functions.  Do self tests.
6362
6363 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6364
6365         * features/Makefile (XMLTOC): Remove i386/amd64XXX-linux.xml.
6366         * features/i386/amd64-avx-avx512-linux.c: Removed.
6367         * features/i386/amd64-avx-linux.c: Removed.
6368         * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Removed.
6369         * features/i386/amd64-avx-mpx-linux.c: Removed.
6370         * features/i386/amd64-linux.c: Removed.
6371         * features/i386/amd64-mpx-linux.c: Removed.
6372         * features/i386/x32-avx-avx512-linux.c: Removed.
6373         * features/i386/x32-avx-linux.c: Removed.
6374         * features/i386/x32-linux.c: Removed.
6375
6376 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6377
6378         * amd64-linux-tdep.c: Include arch/amd64.h.  Don't include
6379         features/i386/*.c.
6380         (amd64_linux_read_description): Call
6381         amd64_create_target_description.
6382         * arch/amd64.c: New file.
6383         * arch/amd64.h: New file.
6384         * configure.tgt (x86_64-*-linux*): Append amd64.o.
6385         * Makefile.in (ALL_64_TARGET_OBS): Append amd64.o.
6386
6387 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6388
6389         * amd64-linux-tdep.c: Don't include amd64-XXX-linux and
6390         x32-XXX-linux.c.  Include 64bit-XX.c and x32-XX.c.
6391         (amd64_linux_read_description): Create target descriptions.
6392         (_initialize_amd64_linux_tdep): Don't call initialize_tdesc_XXX
6393         functions.  Add unit tests.
6394         * features/Makefile (FEATURE_XMLFILES): Append 64bit-XXX.xml and
6395         x32-core.xml.
6396         * features/i386/64bit-avx.c: Generated.
6397         * features/i386/64bit-avx512.c: Generated.
6398         * features/i386/64bit-core.c: Generated.
6399         * features/i386/64bit-linux.c: Generated.
6400         * features/i386/64bit-mpx.c: Generated.
6401         * features/i386/64bit-pkeys.c: Generated.
6402         * features/i386/64bit-segments.c: Generated.
6403         * features/i386/64bit-sse.c: Generated.
6404         * features/i386/x32-core.c: Generated.
6405         * target-descriptions.c (maint_print_c_tdesc_cmd): Print feature
6406         c files for amd64-linux and x32-linux.
6407
6408 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6409
6410         * amd64-linux-tdep.c (amd64_linux_read_description): New
6411         function.
6412         (amd64_linux_core_read_description): Call
6413         amd64_linux_read_description.
6414         (amd64_linux_init_abi): Likewise.
6415         (amd64_x32_linux_init_abi): Likewise.
6416         * amd64-linux-tdep.h (amd64_linux_read_description): Declare.
6417         * x86-linux-nat.c (x86_linux_read_description): Call
6418         amd64_linux_read_description.
6419
6420 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6421
6422         * amd64-linux-tdep.c (amd64_linux_core_read_description): Update
6423         comments.
6424
6425 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6426
6427         * features/Makefile (XMLTOC): Remove i386/i386-XX-linux.xml.
6428         * features/i386/i386-avx-avx512-linux.c: Remove.
6429         * features/i386/i386-avx-linux.c: Remove.
6430         * features/i386/i386-avx-mpx-avx512-pku-linux.c: Remove.
6431         * features/i386/i386-avx-mpx-linux.c: Remove.
6432         * features/i386/i386-linux.c: Remove.
6433         * features/i386/i386-mmx-linux.c: Remove.
6434         * features/i386/i386-mpx-linux.c: Remove.
6435
6436 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6437
6438         * Makefile.in (ALL_TARGET_OBS): Add i386.o.
6439         (SFILES): Add arch/i386.c.
6440         (HFILES_NO_SRCDIR): Add arch/i386.h.
6441         * arch/i386.c: New file.
6442         * arch/i386.h: New file.
6443         * arch/tdesc.h (allocate_target_description): Declare.
6444         (set_tdesc_architecture): Declare.
6445         (set_tdesc_osabi): Declare.
6446         * configure.tgt (i[34567]86-*-linux*): Add i386.o.
6447         * i386-linux-tdep.c: Don't include ../features/i386/32bit-XXX.c.
6448         include arch/i386.h.
6449         (i386_linux_read_description): Remove code and call
6450         i386_create_target_description.
6451         (set_tdesc_architecture): New function.
6452         (set_tdesc_osabi): New function.
6453         * target-descriptions.h (allocate_target_description): Remove.
6454
6455 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6456
6457         * arch/tdesc.h (tdesc_create_feature): Add an argument xml.
6458         * target-descriptions.c (tdesc_create_feature): Likewise, and
6459         adjust code.
6460         * features/i386/32bit-avx.c: Re-generated.
6461         * features/i386/32bit-avx512.c: Re-generated.
6462         * features/i386/32bit-core.c: Re-generated.
6463         * features/i386/32bit-linux.c: Re-generated.
6464         * features/i386/32bit-mpx.c: Re-generated.
6465         * features/i386/32bit-pkeys.c: Re-generated.
6466         * features/i386/32bit-sse.c: Re-generated.
6467
6468 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6469
6470         * regformats/regdef.h (struct reg): Override operator == and !=.
6471
6472 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6473
6474         * arch/tdesc.h: New file.
6475         * regformats/regdat.sh: Generate code using tdesc_create_reg.
6476         * target-descriptions.c: Update comments.
6477         * target-descriptions.h: Include "arch/tdesc.h".  Remove the
6478         declarations.
6479         * features/i386/32bit-avx.c: Re-generated.
6480         * features/i386/32bit-avx512.c: Re-generated.
6481         * features/i386/32bit-core.c: Re-generated.
6482         * features/i386/32bit-linux.c: Re-generated.
6483         * features/i386/32bit-mpx.c: Re-generated.
6484         * features/i386/32bit-pkeys.c: Re-generated.
6485         * features/i386/32bit-sse.c: Re-generated.
6486
6487 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6488
6489         * regformats/regdat.sh: Update generated code.
6490
6491 2017-09-05  Yao Qi  <yao.qi@linaro.org>
6492
6493         * regformats/regdat.sh: Adjust code order.
6494
6495 2017-09-05  Simon Marchi  <simon.marchi@ericsson.com>
6496
6497         * expprint.c (dump_subexp_body_standard): Use constant format
6498         string in fprintf_filtered call.
6499
6500 2017-09-04  John Baldwin  <jhb@FreeBSD.org>
6501
6502         * configure.nat: Add "x86-nat.o x86-dregs.o" for NetBSD/amd64 and
6503         NetBSD/i386.
6504         * x86-bsd-nat.c [!DBREG_DRX && __NetBSD__]: Define DBREG_DRX.
6505
6506 2017-09-04  John Baldwin  <jhb@FreeBSD.org>
6507
6508         * bsd-kvm.o: Make <sys/user.h> conditional on HAVE_SYS_USER_H.
6509
6510 2017-09-04  John Baldwin  <jhb@FreeBSD.org>
6511
6512         * bsd-kvm.o: Define _KMEMUSER.
6513         * configure.ac: Define _KMEMUSER when checking for "struct lwp".
6514         * configure: Regenerate.
6515
6516 2017-09-04  John Baldwin  <jhb@FreeBSD.org>
6517
6518         * amd64-fbsd-nat.c: Add include of "x86-xstate.h".
6519         * i386-fbsd-nat.c: Likewise.
6520
6521 2017-09-04  John Baldwin  <jhb@FreeBSD.org>
6522
6523         * unittests/array-view-selftests.c: Add include of <array>.
6524
6525 2017-09-04  John Baldwin  <jhb@FreeBSD.org>
6526
6527         * spu-tdep.c (flush_ea_cache): Add missing argument to
6528         call_function_by_hand.
6529
6530 2017-09-04  Pedro Alves  <palves@redhat.com>
6531
6532         * NEWS (Safer support for debugging with no debug info): New.
6533
6534 2017-09-04  Pedro Alves  <palves@redhat.com>
6535
6536         * c-exp.y (function_method, function_method_void): Add current
6537         instance flags to TYPE_INSTANCE.
6538         * dwarf2read.c (check_modifier): New.
6539         (compute_delayed_physnames): Assert that only C++ adds delayed
6540         physnames.  Mark fn_fields as const/volatile depending on
6541         physname.
6542         * eval.c (make_params): New type_instance_flags parameter.  Use
6543         it as the new type's instance flags.
6544         (evaluate_subexp_standard) <TYPE_INSTANCE>: Extract the instance
6545         flags element and pass it to make_params.
6546         * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: Handle
6547         instance flags element.
6548         (dump_subexp_body_standard) <TYPE_INSTANCE>: Likewise.
6549         * gdbtypes.h: Include "enum-flags.h".
6550         (type_instance_flags): New enum-flags type.
6551         (TYPE_CONST, TYPE_VOLATILE, TYPE_RESTRICT, TYPE_ATOMIC)
6552         (TYPE_CODE_SPACE, TYPE_DATA_SPACE): Return boolean.
6553         * parse.c (operator_length_standard) <TYPE_INSTANCE>: Adjust.
6554         (follow_type_instance_flags): New function.
6555         (operator_check_standard) <TYPE_INSTANCE>: Adjust.
6556         * parser-defs.h (follow_type_instance_flags): Declare.
6557         * valops.c (value_struct_elt_for_reference): const/volatile must
6558         match too.
6559
6560 2017-09-04  Pedro Alves  <palves@redhat.com>
6561
6562         * cp-namespace.c (cp_search_static_and_baseclasses): Handle
6563         function/method scopes; lookup the nested name as a function local
6564         static variable.
6565
6566 2017-09-04  Pedro Alves  <palves@redhat.com>
6567
6568         (%type <voidval>): Add function_method.
6569         * c-exp.y (exp): New production for calls with no arguments.
6570         (function_method, function_method_void_or_typelist): New
6571         productions.
6572         (exp): New production for "method()::static_var".
6573         * eval.c (evaluate_subexp_standard): Handle OP_FUNC_STATIC_VAR.
6574         * expprint.c (print_subexp_standard, dump_subexp_body_standard):
6575         Handle OP_FUNC_STATIC_VAR.
6576         * parse.c (operator_length_standard):
6577         Handle OP_FUNC_STATIC_VAR.
6578
6579 2017-09-04  Pedro Alves  <palves@redhat.com>
6580
6581         * eval.c (evaluate_subexp_standard): Remove UNOP_MEMVAL_TLS
6582         handling.
6583         * expprint.c (print_subexp_standard, dump_subexp_body_standard):
6584         Ditto.
6585         * parse.c (operator_length_standard, operator_check_standard):
6586         Ditto.
6587         * std-operator.def (UNOP_MEMVAL_TLS): Delete.
6588
6589 2017-09-04  Pedro Alves  <palves@redhat.com>
6590
6591         * ax-gdb.c: Include "typeprint.h".
6592         (gen_expr_for_cast): New function.
6593         (gen_expr) <OP_CAST, OP_CAST_TYPE>: Use it.
6594         <OP_VAR_VALUE, OP_MSYM_VAR_VALUE>: Error out if the variable's
6595         type is unknown.
6596         * dwarf2read.c (new_symbol_full): Fallback to int instead of
6597         nodebug_data_symbol.
6598         * eval.c: Include "typeprint.h".
6599         (evaluate_subexp_standard) <OP_VAR_VALUE, OP_VAR_MSYM_VALUE>:
6600         Error out if symbol has unknown type.
6601         <UNOP_CAST, UNOP_CAST_TYPE>: Common bits factored out to
6602         evaluate_subexp_for_cast.
6603         (evaluate_subexp_for_address, evaluate_subexp_for_sizeof): Handle
6604         OP_VAR_MSYM_VALUE.
6605         (evaluate_subexp_for_cast): New function.
6606         * gdbtypes.c (init_nodebug_var_type): New function.
6607         (objfile_type): Use it to initialize types of variables with no
6608         debug info.
6609         * typeprint.c (error_unknown_type): New.
6610         * typeprint.h (error_unknown_type): New declaration.
6611         * compile/compile-c-types.c (convert_type_basic): Handle
6612         TYPE_CODE_ERROR; warn and fallback to int for variables with
6613         unknown type.
6614
6615 2017-09-04  Pedro Alves  <palves@redhat.com>
6616
6617         * eval.c (evaluate_var_value): New function, factored out from ...
6618         (evaluate_subexp_standard): ... here.
6619
6620 2017-09-04  Pedro Alves  <palves@redhat.com>
6621
6622         * eval.c (evaluate_subexp_standard) <UNOP_COMPLEMENT, UNOP_ADDR>:
6623         Remove useless assignments to 'op'.
6624
6625 2017-09-04  Pedro Alves  <palves@redhat.com>
6626
6627         * eval.c (eval_skip_value): New function.
6628         (evaluate_subexp_standard): Use it.
6629
6630 2017-09-04  Pedro Alves  <palves@redhat.com>
6631
6632         * eval.c (evaluate_subexp_standard): <OP_FUNCALL>: Extract
6633         function name from symbol/minsym and pass it to
6634         error_call_unknown_return_type.
6635
6636 2017-09-04  Pedro Alves  <palves@redhat.com>
6637
6638         * ada-lang.c (resolve_subexp): Handle OP_VAR_MSYM_VALUE.
6639         * ax-gdb.c (gen_msym_var_ref): New function.
6640         (gen_expr): Handle OP_VAR_MSYM_VALUE.
6641         * eval.c (evaluate_var_msym_value): New function.
6642         * eval.c (evaluate_subexp_standard): Handle OP_VAR_MSYM_VALUE.
6643         <OP_FUNCALL>: Extract function name from symbol/minsym and pass it
6644         to call_function_by_hand.
6645         * expprint.c (print_subexp_standard, dump_subexp_body_standard):
6646         Handle OP_VAR_MSYM_VALUE.
6647         (union exp_element) <msymbol>: New field.
6648         * minsyms.h (struct type): Forward declare.
6649         (find_minsym_type_and_address): Declare.
6650         * parse.c (write_exp_elt_msym): New function.
6651         (write_exp_msymbol): Delete, refactored as ...
6652         (find_minsym_type_and_address): ... this new function.
6653         (write_exp_msymbol): Reimplement using OP_VAR_MSYM_VALUE.
6654         (operator_length_standard, operator_check_standard): Handle
6655         OP_VAR_MSYM_VALUE.
6656         * std-operator.def (OP_VAR_MSYM_VALUE): New.
6657
6658 2017-09-04  Pedro Alves  <palves@redhat.com>
6659
6660         * ada-lang.c (ada_evaluate_subexp) <TYPE_CODE_FUNC>: Don't handle
6661         TYPE_GNU_IFUNC specially here.  Throw error if return type is
6662         unknown.
6663         * ada-typeprint.c (print_func_type): Handle functions with unknown
6664         return type.
6665         * c-typeprint.c (c_type_print_base): Handle functions and methods
6666         with unknown return type.
6667         * compile/compile-c-symbols.c (convert_symbol_bmsym)
6668         <mst_text_gnu_ifunc>: Use nodebug_text_gnu_ifunc_symbol.
6669         * compile/compile-c-types.c: Include "objfiles.h".
6670         (convert_func): For functions with unknown return type, warn and
6671         default to int.
6672         * compile/compile-object-run.c (compile_object_run): Adjust call
6673         to call_function_by_hand_dummy.
6674         * elfread.c (elf_gnu_ifunc_resolve_addr): Adjust call to
6675         call_function_by_hand.
6676         * eval.c (evaluate_subexp_standard): Adjust calls to
6677         call_function_by_hand.  Handle functions and methods with unknown
6678         return type.  Pass expect_type to call_function_by_hand.
6679         * f-typeprint.c (f_type_print_base): Handle functions with unknown
6680         return type.
6681         * gcore.c (call_target_sbrk): Adjust call to
6682         call_function_by_hand.
6683         * gdbtypes.c (objfile_type): Leave nodebug text symbol with NULL
6684         return type instead of int.  Make nodebug_text_gnu_ifunc_symbol be
6685         an integer address type instead of nodebug.
6686         * guile/scm-value.c (gdbscm_value_call): Adjust call to
6687         call_function_by_hand.
6688         * infcall.c (error_call_unknown_return_type): New function.
6689         (call_function_by_hand): New "default_return_type" parameter.
6690         Pass it down.
6691         (call_function_by_hand_dummy): New "default_return_type"
6692         parameter.  Use it instead of defaulting to int.  If there's no
6693         default and the return type is unknown, throw an error.  If
6694         there's a default return type, and the called function has no
6695         debug info, then assume the function is prototyped.
6696         * infcall.h (call_function_by_hand, call_function_by_hand_dummy):
6697         New "default_return_type" parameter.
6698         (error_call_unknown_return_type): New declaration.
6699         * linux-fork.c (call_lseek): Cast return type of lseek.
6700         (inferior_call_waitpid, checkpoint_command): Adjust calls to
6701         call_function_by_hand.
6702         * linux-tdep.c (linux_infcall_mmap, linux_infcall_munmap): Adjust
6703         calls to call_function_by_hand.
6704         * m2-typeprint.c (m2_procedure): Handle functions with unknown
6705         return type.
6706         * objc-lang.c (lookup_objc_class, lookup_child_selector)
6707         (value_nsstring, print_object_command): Adjust calls to
6708         call_function_by_hand.
6709         * p-typeprint.c (pascal_type_print_varspec_prefix): Handle
6710         functions with unknown return type.
6711         (pascal_type_print_func_varspec_suffix): New function.
6712         (pascal_type_print_varspec_suffix) <TYPE_CODE_FUNC,
6713         TYPE_CODE_METHOD>: Use it.
6714         * python/py-value.c (valpy_call): Adjust call to
6715         call_function_by_hand.
6716         * rust-lang.c (rust_evaluate_funcall): Adjust call to
6717         call_function_by_hand.
6718         * valarith.c (value_x_binop, value_x_unop): Adjust calls to
6719         call_function_by_hand.
6720         * valops.c (value_allocate_space_in_inferior): Adjust call to
6721         call_function_by_hand.
6722         * typeprint.c (type_print_unknown_return_type): New function.
6723         * typeprint.h (type_print_unknown_return_type): New declaration.
6724
6725 2017-09-04  Pedro Alves  <palves@redhat.com>
6726
6727         * gdbtypes.c (lookup_function_type_with_arguments): Mark function
6728         types with more than one parameter as prototyped.
6729
6730 2017-09-04  Pedro Alves  <palves@redhat.com>
6731
6732         * cli/cli-cmds.c (print_disassembly, disassemble_current_function)
6733         (disassemble_command): Use gdb_disassembly_flags instead of bare
6734         int.
6735         * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn)
6736         (dump_insns, do_mixed_source_and_assembly_deprecated)
6737         (do_mixed_source_and_assembly, do_assembly_only, gdb_disassembly):
6738         Use gdb_disassembly_flags instead of bare int.
6739         * disasm.h (DISASSEMBLY_SOURCE_DEPRECATED, DISASSEMBLY_RAW_INSN)
6740         (DISASSEMBLY_OMIT_FNAME, DISASSEMBLY_FILENAME)
6741         (DISASSEMBLY_OMIT_PC, DISASSEMBLY_SOURCE)
6742         (DISASSEMBLY_SPECULATIVE): No longer macros.  Instead they're...
6743         (enum gdb_disassembly_flag): ... values of this new enumeration.
6744         (gdb_disassembly_flags): Define.
6745         (gdb_disassembly)
6746         (gdb_pretty_print_disassembler::pretty_print_insn): Use it.
6747         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Use
6748         gdb_disassembly_flags instead of bare int.
6749         * record-btrace.c (btrace_insn_history)
6750         (record_btrace_insn_history, record_btrace_insn_history_range)
6751         (record_btrace_insn_history_from): Use gdb_disassembly_flags
6752         instead of bare int.
6753         * record.c (get_insn_history_modifiers, cmd_record_insn_history):
6754         Use gdb_disassembly_flags instead of bare int.
6755         * target-debug.h (target_debug_print_gdb_disassembly_flags):
6756         Define.
6757         * target-delegates.c: Regenerate.
6758         * target.c (target_insn_history, target_insn_history_from)
6759         (target_insn_history_range): Use gdb_disassembly_flags instead of
6760         bare int.
6761         * target.h: Include "disasm.h".
6762         (struct target_ops) <to_insn_history, to_insn_history_from,
6763         to_insn_history_range>: Use gdb_disassembly_flags instead of bare
6764         int.
6765         (target_insn_history, target_insn_history_from)
6766         (target_insn_history_range): Use gdb_disassembly_flags instead of
6767         bare int.
6768
6769 2017-09-04  Simon Marchi  <simon.marchi@ericsson.com>
6770
6771         * cli/cli-script.c (build_command_line): For if/while commands,
6772         check whether args is empty.
6773
6774 2017-09-04  Simon Marchi  <simon.marchi@ericsson.com>
6775
6776         * cli/cli-script.h (enum misc_command_type): Move from defs.h.
6777         (enum command_control_type): Likewise.
6778         (struct command_line): Likewise.
6779         (free_command_lines): Likewise.
6780         (struct command_lines_deleter): Likewise.
6781         (command_line_up): Likewise.
6782         (read_command_lines): Likewise.
6783         (read_command_lines_1): Likewise.
6784         * defs.h (enum misc_command_type): Move to cli/cli-script.h.
6785         (enum command_control_type): Likewise.
6786         (struct command_line): Likewise.
6787         (free_command_lines): Likewise.
6788         (struct command_lines_deleter): Likewise.
6789         (command_line_up): Likewise.
6790         (read_command_lines): Likewise.
6791         (read_command_lines_1): Likewise.
6792         * breakpoint.h: Include cli/cli-script.h.
6793         * extension-priv.h: Likewise.
6794         * gdbcmd.h: Likewise.
6795
6796 2017-09-04  Pedro Alves  <palves@redhat.com>
6797
6798         * ada-lang.c (is_known_support_routine): Move sal declaration to
6799         where it is initialized.
6800         * breakpoint.c (create_internal_breakpoint, init_catchpoint)
6801         (parse_breakpoint_sals, decode_static_tracepoint_spec)
6802         (clear_command, update_static_tracepoint): Remove init_sal
6803         references.  Move declarations closer to initializations.
6804         * cli/cli-cmds.c (list_command): Move sal declarations closer to
6805         initializations.
6806         * elfread.c (elf_gnu_ifunc_resolver_stop): Remove init_sal
6807         references.  Move sal declarations closer to initializations.
6808         * frame.c (find_frame_sal): Return a symtab_and_line via function
6809         return instead of output parameter.  Remove init_sal references.
6810         * frame.h (find_frame_sal): Return a symtab_and_line via function
6811         return instead of output parameter.
6812         * guile/scm-frame.c (gdbscm_frame_sal): Adjust.
6813         * guile/scm-symtab.c (stscm_make_sal_smob): Use in-place new
6814         instead of memset.
6815         (gdbscm_find_pc_line): Remove init_sal reference.
6816         * infcall.c (call_function_by_hand_dummy): Remove init_sal
6817         references.  Move declarations closer to initializations.
6818         * infcmd.c (set_step_frame): Update.  Move declarations closer to
6819         initializations.
6820         (finish_backward): Remove init_sal references.  Move declarations
6821         closer to initializations.
6822         * infrun.c (process_event_stop_test, handle_step_into_function)
6823         (insert_hp_step_resume_breakpoint_at_frame)
6824         (insert_step_resume_breakpoint_at_caller): Likewise.
6825         * linespec.c (create_sals_line_offset, decode_digits_ordinary)
6826         (symbol_to_sal): Likewise.
6827         * probe.c (parse_probes_in_pspace): Remove init_sal reference.
6828         * python/py-frame.c (frapy_find_sal): Move sal declaration closer
6829         to its initialization.
6830         * reverse.c (save_bookmark_command): Use new/delete.  Remove
6831         init_sal references.  Move declarations closer to initializations.
6832         * source.c (get_current_source_symtab_and_line): Remove brace
6833         initialization.
6834         (set_current_source_symtab_and_line): Now takes the sal by const
6835         reference.  Remove brace initialization.
6836         (line_info): Remove init_sal reference.
6837         * source.h (set_current_source_symtab_and_line): Now takes a
6838         symtab_and_line via const reference.
6839         * stack.c (set_current_sal_from_frame): Adjust.
6840         (print_frame_info): Adjust.
6841         (get_last_displayed_sal): Return the sal via function return
6842         instead of via output parameter.  Simplify.
6843         (frame_info): Adjust.
6844         * stack.h (get_last_displayed_sal): Return the sal via function
6845         return instead of via output parameter.
6846         * symtab.c (init_sal): Delete.
6847         (find_pc_sect_line): Remove init_sal references.  Move
6848         declarations closer to initializations.
6849         (find_function_start_sal): Remove init_sal references.  Move
6850         declarations closer to initializations.
6851         * symtab.h (struct symtab_and_line): In-class initialize all
6852         fields.
6853         * tracepoint.c (set_traceframe_context)
6854         (print_one_static_tracepoint_marker): Remove init_sal references.
6855         Move declarations closer to initializations.
6856         * tui/tui-disasm.c (tui_show_disassem_and_update_source): Adjust.
6857         * tui/tui-stack.c (tui_show_frame_info): Adjust.  Move
6858         declarations closer to initializations.
6859         * tui/tui-winsource.c (tui_update_source_window_as_is): Remove
6860         init_sal references.  Adjust.
6861
6862 2017-09-04  Pedro Alves  <palves@redhat.com>
6863
6864         * ax-gdb.c (agent_command_1): Use range-for.
6865         * break-catch-throw.c (re_set_exception_catchpoint): Update.
6866         * breakpoint.c: Include "common/array-view.h".
6867         (init_breakpoint_sal, create_breakpoint_sal): Change sals
6868         parameter from struct symtabs_and_lines to
6869         array_view<symtab_and_line>.  Adjust.  Use range-for.  Update.
6870         (breakpoint_sals_to_pc): Change sals parameter from struct
6871         symtabs_and_lines to std::vector reference.
6872         (check_fast_tracepoint_sals): Change sals parameter from struct
6873         symtabs_and_lines to std::array_view.  Use range-for.
6874         (decode_static_tracepoint_spec): Return a std::vector instead of
6875         symtabs_and_lines.  Update.
6876         (create_breakpoint): Update.
6877         (break_range_command, until_break_command, clear_command): Update.
6878         (base_breakpoint_decode_location, bkpt_decode_location)
6879         (bkpt_probe_create_sals_from_location)
6880         (bkpt_probe_decode_location, tracepoint_decode_location)
6881         (tracepoint_probe_decode_location)
6882         (strace_marker_create_sals_from_location): Return a std::vector
6883         instead of symtabs_and_lines.
6884         (strace_marker_create_breakpoints_sal): Update.
6885         (strace_marker_decode_location): Return a std::vector instead of
6886         symtabs_and_lines.  Update.
6887         (update_breakpoint_locations): Change struct symtabs_and_lines
6888         parameters to gdb::array_view.  Adjust.
6889         (location_to_sals): Return a std::vector instead of
6890         symtabs_and_lines.  Update.
6891         (breakpoint_re_set_default): Use std::vector instead of struct
6892         symtabs_and_lines.
6893         (decode_location_default): Return a std::vector instead of
6894         symtabs_and_lines.  Update.
6895         * breakpoint.h: Include "common/array-view.h".
6896         (struct breakpoint_ops) <decode_location>: Now returns a
6897         std::vector instead of returning a symtabs_and_lines via output
6898         parameter.
6899         (update_breakpoint_locations): Change sals parameters to use
6900         gdb::array_view.
6901         * cli/cli-cmds.c (edit_command, list_command): Update to use
6902         std::vector and gdb::array_view.
6903         (ambiguous_line_spec): Adjust to use gdb::array_view and
6904         range-for.
6905         (compare_symtabs): Rename to ...
6906         (cmp_symtabs): ... this.  Change parameters to symtab_and_line
6907         const reference and adjust.
6908         (filter_sals): Rewrite using std::vector and standard algorithms.
6909         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Simplify.
6910         (jump_command): Update to use std::vector.
6911         * linespec.c (struct linespec_state) <canonical_names>: Update
6912         comment.
6913         (add_sal_to_sals_basic): Delete.
6914         (add_sal_to_sals, filter_results, convert_results_to_lsals)
6915         (decode_line_2, create_sals_line_offset)
6916         (convert_address_location_to_sals, convert_linespec_to_sals)
6917         (convert_explicit_location_to_sals, parse_linespec)
6918         (event_location_to_sals, decode_line_full, decode_line_1)
6919         (decode_line_with_current_source)
6920         (decode_line_with_last_displayed, decode_objc)
6921         (decode_digits_list_mode, decode_digits_ordinary, minsym_found)
6922         (linespec_result::~linespec_result): Adjust to use std::vector
6923         instead of symtabs_and_lines.
6924         * linespec.h (linespec_sals::sals): Now a std::vector.
6925         (struct linespec_result): Use std::vector, bool, and in-class
6926         initialization.
6927         (decode_line_1, decode_line_with_current_source)
6928         (decode_line_with_last_displayed): Return std::vector.
6929         * macrocmd.c (info_macros_command): Use std::vector.
6930         * mi/mi-main.c (mi_cmd_trace_find): Use std::vector.
6931         * probe.c (parse_probes_in_pspace, parse_probes): Adjust to use
6932         std::vector.
6933         * probe.h (parse_probes): Return a std::vector.
6934         * python/python.c (gdbpy_decode_line): Use std::vector and
6935         gdb::array_view.
6936         * source.c (select_source_symtab, line_info): Use std::vector.
6937         * stack.c (func_command): Use std::vector.
6938         * symtab.h (struct symtabs_and_lines): Delete.
6939         * tracepoint.c (tfind_line_command, scope_info): Use std::vector.
6940
6941 2017-09-04  Pedro Alves  <palves@redhat.com>
6942
6943         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
6944         unittests/array-view-selftests.c.
6945         (SUBDIR_UNITTESTS_OBS): Add array-view-selftests.o.
6946         * common/array-view.h: New file.
6947         * unittests/array-view-selftests.c: New file.
6948
6949 2017-09-04  Pedro Alves  <palves@redhat.com>
6950
6951         * cli/cli-cmds.c (edit_command): Pass message to
6952         ambiguous_line_spec.
6953         (list_command): Pass message to ambiguous_line_spec.  Say
6954         "first"/"last" instead of "start" and "end" to be consistent with
6955         the manual.
6956         (ambiguous_line_spec): Add 'format' and vararg parameters.  Use
6957         them to print formatted message.
6958
6959 2017-09-04  Pedro Alves  <palves@redhat.com>
6960
6961         * btrace.c (ftrace_add_pt): Pass btrace_insn to
6962         ftrace_update_insns by reference instead of pointer.
6963
6964 2017-09-04  Yao Qi  <yao.qi@linaro.org>
6965
6966         * i386-go32-tdep.c: Include x86-xstate.h.
6967         (i386_go32_init_abi): Call i386_target_description.
6968         * i386-tdep.c (i386_target_description): Return tdesc_i386_mmx
6969         if xcr0 is X86_XSTATE_X87_MASK.
6970         * i386-tdep.h (tdesc_i386): Remove the declaration.
6971         (tdesc_i386_mmx): Likewise.
6972
6973 2017-09-04  Yao Qi  <yao.qi@linaro.org>
6974
6975         * i386-fbsd-tdep.c (i386fbsd_core_read_xcr0): Return
6976         X86_XSTATE_SSE_MASK instead of 0.
6977
6978 2017-09-04  Yao Qi  <yao.qi@linaro.org>
6979
6980         * amd64-fbsd-nat.c (amd64fbsd_read_description): Call
6981         i386_target_description.
6982         * i386-fbsd-nat.c (i386fbsd_read_description): Call
6983         i386_target_description.
6984         * i386-tdep.c (i386_gdbarch_init): Likewise.
6985
6986 2017-09-04  Yao Qi  <yao.qi@linaro.org>
6987
6988         * amd64-darwin-tdep.c: Include "x86-xstate.h".
6989         (x86_darwin_init_abi_64): Call amd64_target_description.
6990         * amd64-dicos-tdep.c: Likewise.
6991         * amd64-fbsd-nat.c: Likewise.
6992         * amd64-fbsd-tdep.c: Likewise.
6993         * amd64-nbsd-tdep.c: Likewise.
6994         * amd64-obsd-tdep.c: Likewise.
6995         * amd64-sol2-tdep.c: Likewise.
6996         * amd64-windows-tdep.c: Likewise.
6997         * amd64-tdep.h (tdesc_amd64): Remove the declaration.
6998
6999 2017-09-04  Simon Marchi  <simon.marchi@ericsson.com>
7000
7001         * btrace.h (btrace_insn_s, DEF_VEC_O (btrace_insn_s)): Remove.
7002         (btrace_function) <insn>: Change type to use std::vector.
7003         * btrace.c (ftrace_debug, ftrace_call_num_insn,
7004         ftrace_find_call, ftrace_new_gap, ftrace_update_function,
7005         ftrace_update_insns, ftrace_compute_global_level_offset,
7006         btrace_stitch_bts, btrace_clear, btrace_insn_get,
7007         btrace_insn_end, btrace_insn_next, btrace_insn_prev): Adjust to
7008         change to std::vector.
7009         (ftrace_update_insns): Adjust to change to std::vector, change
7010         type of INSN parameter.
7011         (btrace_compute_ftrace_bts): Adjust call to ftrace_update_insns.
7012         * record-btrace.c (btrace_call_history_insn_range,
7013         btrace_compute_src_line_range,
7014         record_btrace_frame_prev_register): Adjust to change to
7015         std::vector.
7016         * python/py-record-btrace.c (recpy_bt_func_instructions): Adjust
7017         to change to std::vector.
7018
7019 2017-09-03  Tom Tromey  <tom@tromey.com>
7020
7021         * corefile.c (reopen_exec_file): Use std::string.
7022
7023 2017-09-03  Tom Tromey  <tom@tromey.com>
7024
7025         * compile/compile.c (compile_register_name_mangled): Return
7026         std::string.
7027         * compile/compile-loc2c.c (pushf_register_address): Update.
7028         (pushf_register): Update.
7029         * compile/compile-c-types.c (convert_array): Update.
7030         * compile/compile-c-symbols.c (generate_vla_size): Update.
7031         (error_symbol_once): Use a gdb::unique_xmalloc_ptr.
7032         (symbol_substitution_name): Return a gdb::unique_xmalloc_ptr.
7033         (convert_one_symbol): Update.
7034         (generate_c_for_for_one_variable): Update.
7035         * compile/compile-c-support.c (c_get_range_decl_name): Return a
7036         std::string.
7037         (generate_register_struct): Update.
7038         * compile/compile-internal.h (c_get_range_decl_name): Return a
7039         std::string.
7040         (compile_register_name_mangled): Return std::string.
7041
7042 2017-09-03  Tom Tromey  <tom@tromey.com>
7043
7044         * utils.c (perror_string): Return a std::string.
7045         (throw_perror_with_name, perror_warning_with_name): Update.
7046
7047 2017-09-03  Tom Tromey  <tom@tromey.com>
7048
7049         * demangle.c (demangle_command): Use std::string,
7050         unique_xmalloc_ptr.
7051
7052 2017-09-03  Tom Tromey  <tom@tromey.com>
7053
7054         * cli/cli-setshow.c (do_set_command): Use std::string.
7055
7056 2017-09-03  Tom Tromey  <tom@tromey.com>
7057
7058         * cli/cli-cmds.c (cd_command): Use gdb::unique_xmalloc_ptr.
7059
7060 2017-09-03  Tom Tromey  <tom@tromey.com>
7061
7062         * mi/mi-interp.c (mi_cmd_interpreter_exec): Use std::string.
7063
7064 2017-09-03  Tom Tromey  <tom@tromey.com>
7065
7066         * mi/mi-cmd-env.c (env_execute_cli_command): Use
7067         gdb::unique_xmalloc_ptr.
7068
7069 2017-09-03  Tom Tromey  <tom@tromey.com>
7070
7071         * thread.c (print_thread_info_1): Use string_printf.
7072         (thread_apply_command, thread_apply_all_command): Use
7073         std::string.
7074
7075 2017-09-03  Tom Tromey  <tom@tromey.com>
7076
7077         * valprint.c (val_print_string): Update.
7078         * gdbcore.h (memory_error_message): Return std::string.
7079         * corefile.c (memory_error_message): Return std::string.
7080         (memory_error): Update.
7081         * breakpoint.c (insert_bp_location): Update.
7082
7083 2017-09-03  Simon Marchi  <simon.marchi@ericsson.com>
7084
7085         * target/waitstatus.h (target_waitstatus_to_string): Change
7086         return type to std::string.
7087         * target/waitstatus.c (target_waitstatus_to_string): Return
7088         std::string.
7089         * target.h (target_waitstatus_to_string): Remove declaration.
7090         * infrun.c (resume, clear_proceed_status_thread,
7091         print_target_wait_results, do_target_wait, save_waitstatus,
7092         stop_all_threads): Adjust.
7093         * record-btrace.c (record_btrace_wait): Adjust.
7094         * target-debug.h
7095         (target_debug_print_struct_target_waitstatus_p): Adjust.
7096
7097 2017-09-01  Jan Kratochvil  <jan.kratochvil@redhat.com>
7098
7099         PR gdb/22046
7100         * nat/linux-procfs.c (parse_proc_status_state): Fix PROC_STATE_STOPPED
7101         detection.
7102
7103 2017-08-31  Sergio Durigan Junior  <sergiodj@redhat.com>
7104
7105         * NEWS (Changes since GDB 8.0): Add entry mentioning new support
7106         for setting/unsetting environment variables on the remote target.
7107         (New remote packets): Add entries for QEnvironmentHexEncoded,
7108         QEnvironmentUnset and QEnvironmentReset.
7109         * common/environ.c (gdb_environ::operator=): Extend method to
7110         handle m_user_set_env_list and m_user_unset_env_list.
7111         (gdb_environ::clear): Likewise.
7112         (match_var_in_string): Change type of first parameter from 'char
7113         *' to 'const char *'.
7114         (gdb_environ::set): Extend method to handle
7115         m_user_set_env_list and m_user_unset_env_list.
7116         (gdb_environ::unset): Likewise.
7117         (gdb_environ::clear_user_set_env): New method.
7118         (gdb_environ::user_set_envp): Likewise.
7119         (gdb_environ::user_unset_envp): Likewise.
7120         * common/environ.h (gdb_environ): Handle m_user_set_env_list and
7121         m_user_unset_env_list on move constructor/assignment.
7122         (unset): Add new default parameter 'update_unset_list = true'.
7123         (clear_user_set_env): New method.
7124         (user_set_envp): Likewise.
7125         (user_unset_envp): Likewise.
7126         (m_user_set_env_list): New std::set.
7127         (m_user_unset_env_list): Likewise.
7128         * common/rsp-low.c (hex2str): New function.
7129         (bin2hex): New overload for bin2hex function.
7130         * common/rsp-low.c (hex2str): New prototype.
7131         (str2hex): New overload prototype.
7132         * remote.c: Include "environ.h". Add QEnvironmentHexEncoded,
7133         QEnvironmentUnset and QEnvironmentReset.
7134         (remote_protocol_features): Add QEnvironmentHexEncoded,
7135         QEnvironmentUnset and QEnvironmentReset packets.
7136         (send_environment_packet): New function.
7137         (extended_remote_environment_support): Likewise.
7138         (extended_remote_create_inferior): Call
7139         extended_remote_environment_support.
7140         (_initialize_remote): Add QEnvironmentHexEncoded,
7141         QEnvironmentUnset and QEnvironmentReset packet configs.
7142         * unittests/environ-selftests.c (gdb_selftest_env_var):
7143         New variable.
7144         (test_vector_initialization): New function.
7145         (test_init_from_host_environ): Likewise.
7146         (test_reinit_from_host_environ): Likewise.
7147         (test_set_A_unset_B_unset_A_cannot_find_A_can_find_B):
7148         Likewise.
7149         (test_unset_set_empty_vector): Likewise.
7150         (test_vector_clear): Likewise.
7151         (test_std_move): Likewise.
7152         (test_move_constructor):
7153         (test_self_move): Likewise.
7154         (test_set_unset_reset): Likewise.
7155         (run_tests): Rewrite in terms of the functions above.
7156
7157 2017-08-31  Weimin Pan  <weimin.pan@oracle.com>
7158
7159         * sparc64-tdep.c (adi_stat_t): Fix comment formatting.
7160         (adi_available): Use a temp variable of type CORE_ADDR as argument
7161         3 when calling target_auxv_search.
7162         (adi_normalize_address): Use masks and xor operators to calculate
7163         normalized address.
7164         (adi_read_versions, adi_write_versions, adi_print_versions)
7165         (do_examine, do_assign): Use paddress.
7166
7167 2017-08-29  John Baldwin  <jhb@FreeBSD.org>
7168
7169         * mips-fbsd-nat.c (getfpregs_supplies): Return true for FIR.
7170         * mips-fbsd-tdep.c (mips_fbsd_supply_fpregs): Split supply of FSR
7171         out of loop and add supply of FIR.
7172         (mips_fbsd_collect_fpregs): Split collect of FSR out of loop and
7173         add collect of FIR.
7174
7175 2017-08-28  Simon Marchi  <simon.marchi@ericsson.com>
7176
7177         PR gdb/21827
7178         * cli/cli-script.c (define_command): Don't convert command name
7179         to lower case.
7180
7181 2017-08-25  Joel Brobecker  <brobecker@adacore.com>
7182
7183         * ada-lang.c (ada_lookup_struct_elt_type): Remove parameter "dispp".
7184         Update all callers accordingly. Remove all code blocks handling
7185         the case where DISPP is not NULL.
7186
7187 2017-08-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
7188
7189         PR symtab/22003
7190         * dwarf2read.c (dwarf2_const_value_attr, dump_die_shallow)
7191         (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
7192         (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_implicit_const.
7193
7194 2017-08-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
7195
7196         * dwarf2read.c (build_type_psymtabs_reader): New prototype.
7197         (process_psymtab_comp_unit): Accept IS_DEBUG_TYPES.
7198         (read_comp_units_from_section): New parameter abbrev_section, use
7199         read_and_check_comp_unit_head, allocate signatured_type if needed.
7200         (create_all_comp_units): Update read_comp_units_from_section caller.
7201
7202 2017-08-23  Pedro Alves  <palves@redhat.com>
7203
7204         PR remote/21852
7205         * remote.c (add_current_inferior_and_thread): Set inferior_ptid
7206         to null_ptid and switch to thread without reading the registers
7207         after adding the inferior.
7208
7209 2017-08-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
7210
7211         * NEWS (Changes since GDB 8.0): Add set compile-gcc and show
7212         compile-gcc.
7213         * compile/compile.c (compile_gcc, show_compile_gcc): New.
7214         (compile_to_object): Implement compile_gcc.
7215         (_initialize_compile): Install "set compile-gcc".  Initialize
7216         compile_gcc.
7217
7218 2017-08-23  Jan Kratochvil  <jan.kratochvil@redhat.com>
7219
7220         * compile/compile.c (compile_to_object): Conditionally call
7221         set_verbose.  Conditionally call compile or compile_v0.
7222
7223 2017-08-07  Weimin Pan  <weimin.pan@oracle.com>
7224
7225         * sparc64-tdep.h: (adi_normalize_address): New export.
7226         * sparc-nat.h: (open_adi_tag_fd): New export.
7227         * sparc64-linux-nat.c: (open_adi_tag_fd): New function.
7228         * sparc64-linux-tdep.c:
7229         (SEGV_ACCADI, SEGV_ADIDERR, SEGV_ADIPERR) New defines.
7230         (sparc64_linux_handle_segmentation_fault): New function.
7231         (sparc64_linux_init_abi): Register
7232         sparc64_linux_handle_segmentation_fault
7233         * sparc64-tdep.c: Include cli-utils.h,gdbcmd.h,auxv.h.
7234         (sparc64_addr_bits_remove): New function.
7235         (sparc64_init_abi): Register sparc64_addr_bits_remove.
7236         (MAX_PROC_NAME_SIZE): New macro.
7237         (AT_ADI_BLKSZ, AT_ADI_NBITS, AT_ADI_UEONADI) New defines.
7238         (sparc64adilist): New variable.
7239         (adi_proc_list): New variable.
7240         (find_adi_info): New function.
7241         (add_adi_info): New function.
7242         (get_adi_info_proc): New function.
7243         (get_adi_info): New function.
7244         (info_adi_command): New function.
7245         (read_maps_entry): New function.
7246         (adi_available): New function.
7247         (adi_normalize_address): New function.
7248         (adi_align_address): New function.
7249         (adi_convert_byte_count): New function.
7250         (adi_tag_fd): New function.
7251         (adi_is_addr_mapped): New function.
7252         (adi_read_versions): New function.
7253         (adi_write_versions): New function.
7254         (adi_print_versions): New function.
7255         (do_examine): New function.
7256         (do_assign): New function.
7257         (adi_examine_command): New function.
7258         (adi_assign_command): New function.
7259         (_initialize_sparc64_adi_tdep): New function.
7260
7261 2017-08-22  Simon Marchi  <simon.marchi@ericsson.com>
7262
7263         * breakpoint.c (breakpoints_info): Rename to ...
7264         (info_breakpoints_command): ... this.
7265         (watchpoints_info): Rename to ...
7266         (info_watchpoints_command): ... this.
7267         (tracepoints_info): Rename to ...
7268         (info_tracepoints_command): ... this.
7269         (_initialize_breakpoint): Adjust.
7270         * dcache.c (dcache_info): Rename to ...
7271         (info_display_command): ... this.
7272         (_initialize_dcache): Adjust.
7273         * frame.h (args_info): Rename to ...
7274         (info_args_command): ... this.
7275         (locals_info): Rename to ...
7276         (info_locals_command): ... this.
7277         * infcmd.c (nofp_registers_info): Rename to ...
7278         (info_registers_command): ... this.
7279         (float_info): Rename to ...
7280         (info_float_command): ... this.
7281         (program_info): Rename to ...
7282         (info_program_command): ... this.
7283         (all_registers_info): Rename to ...
7284         (info_all_registers_command): ... this.
7285         (vector_info): Rename to ...
7286         (info_vector_command): ... this.
7287         (float_info): Rename to ...
7288         (info_float_command): ... this.
7289         (_initialize_infcmd): Adjust.
7290         * inferior.h (term_info): Rename to ...
7291         (info_terminal_command): ... this.
7292         * inflow.c (term_info): Rename to ...
7293         (info_terminal_command): ... this.
7294         (_initialize_inflow): Adjust.
7295         * infrun.c (signals_info): Rename to ...
7296         (info_signals_command): ... this.
7297         (_initialize_infrun): Adjust.
7298         * objc-lang.c (classes_info): Rename to ...
7299         (info_classes_command): ... this.
7300         (selectors_info): Rename to ...
7301         (info_selectors_command): ... this.
7302         (_initialize_objc_language): Adjust.
7303         * printcmd.c (sym_info): Rename to ...
7304         (info_symbol_command): ... this.
7305         (address_info): Rename to ...
7306         (info_address_command): ... this.
7307         (display_info): Rename to ...
7308         (info_display_command): ... this.
7309         (_initialize_printcmd): Adjust.
7310         * reverse.c (bookmarks_info): Rename to ...
7311         (info_breakpoints_command): ... this.
7312         (_initialize_reverse): Adjust.
7313         * ser-go32.c (dos_info): Rename to ...
7314         (info_serial_command): ... this.
7315         (_initialize_ser_dos): Adjust.
7316         * skip.c (skip_info): Rename to ...
7317         (info_skip_command): ... this.
7318         (_initialize_step_skip): Adjust.
7319         * source.c (line_info): Rename to ...
7320         (info_line_command): ... this.
7321         (source_info): Rename to ...
7322         (info_source_command)
7323         * stack.c (frame_info): Rename to ...
7324         (info_frame_command): ... this.
7325         (locals_info): Rename to ...
7326         (info_locals_command): ... this.
7327         (args_info): Rename to ...
7328         (info_args_command): ... this.
7329         (_initialize_stack): Adjust.
7330         * symtab.c (sources_info): Rename to ...
7331         (info_sources_command): ... this.
7332         (variables_info): Rename to ...
7333         (info_variables_command): ... this.
7334         (functions_info): Rename to ...
7335         (info_functions_command): ... this.
7336         (types_info): Rename to ...
7337         (info_types_command): ... this.
7338         (_initialize_symtab): Adjust.
7339         * target.c (target_info): Rename to ...
7340         (info_target_command): ... this.
7341         (initialize_targets): Adjust.
7342         * tracepoint.c (tvariables_info): Rename to ...
7343         (info_tvariables_command): ... this.
7344         (scope_info): Rename to ...
7345         (info_scope_command): ... this.
7346         (trace_dump_actions): Adjust.
7347         (_initialize_tracepoint): Adjust.
7348
7349 2017-08-22  Tom Tromey  <tom@tromey.com>
7350
7351         * breakpoint.h (install_breakpoint): Update.
7352         * breakpoint.c (add_solib_catchpoint): Update.
7353         (install_breakpoint): Change argument to a std::unique_ptr.
7354         (create_fork_vfork_event_catchpoint): Use std::unique_ptr.
7355         (create_breakpoint_sal, create_breakpoint): Update.
7356         (watch_command_1, catch_exec_command_1)
7357         (strace_marker_create_breakpoints_sal): Use std::unique_ptr.
7358         (add_to_breakpoint_chain): Change argument to a std::unique_ptr.
7359         Return the breakpoint.
7360         (set_raw_breakpoint_without_location, set_raw_breakpoint)
7361         (new_single_step_breakpoint): Update.
7362         * break-catch-throw.c (handle_gnu_v3_exceptions): Use
7363         std::unique_ptr.
7364         * break-catch-syscall.c (create_syscall_event_catchpoint): Use
7365         std::unique_ptr.
7366         * break-catch-sig.c (create_signal_catchpoint): Use
7367         std::unique_ptr.
7368         * ada-lang.c (create_ada_exception_catchpoint): Use
7369         std::unique_ptr.
7370
7371 2017-08-22  Tom Tromey  <tom@tromey.com>
7372
7373         * breakpoint.c (add_solib_catchpoint): Use std::unique_ptr.
7374
7375 2017-08-22  Tom Tromey  <tom@tromey.com>
7376
7377         * psymtab.c (psymtab_search_name): Return a unique_xmalloc_ptr.
7378         (lookup_partial_symbol): Update.
7379
7380 2017-08-22  Tom Tromey  <tom@tromey.com>
7381
7382         * source.h (rewrite_source_path): Return a unique_xmalloc_ptr.
7383         * source.c (rewrite_source_path): Return a unique_xmalloc_ptr.
7384         (find_and_open_source, symtab_to_fullname): Update.
7385         * psymtab.c (psymtab_to_fullname): Update.
7386
7387 2017-08-22  Tom Tromey  <tom@tromey.com>
7388
7389         * exec.c (exec_file_attach): Update.
7390         * linux-thread-db.c (try_thread_db_load): Update.
7391         * guile/scm-safe-call.c (gdbscm_safe_source_script): Update.
7392         * utils.c (gdb_realpath): Change return type.
7393         (gdb_realpath_keepfile): Update.
7394         (gdb_realpath_check_trailer, gdb_realpath_tests): New functions.
7395         (_initialize_utils): Register the new self test.
7396         * source.c (openp): Update.
7397         (find_and_open_source): Update.
7398         * nto-tdep.c (nto_find_and_open_solib): Update.
7399         * main.c (set_gdb_data_directory): Update.
7400         (captured_main_1): Update.
7401         * dwarf2read.c (dwarf2_get_dwz_file): Update
7402         (dw2_map_symbol_filenames): Update.
7403         * auto-load.c (auto_load_safe_path_vec_update): Update.
7404         (filename_is_in_auto_load_safe_path_vec): Change type of
7405         "filename_realp".
7406         (auto_load_objfile_script): Update.
7407         (file_is_auto_load_safe): Update.  Use std::string.
7408         * utils.h (gdb_realpath): Return a gdb::unique_xmalloc_ptr.
7409
7410 2017-08-22  Tom Tromey  <tom@tromey.com>
7411
7412         * utils.c (gdb_realpath_keepfile): Return a
7413         gdb::unique_xmalloc_ptr.
7414         * exec.c (exec_file_attach): Update.
7415         * utils.h (gdb_realpath_keepfile): Return a
7416         gdb::unique_xmalloc_ptr.
7417
7418 2017-08-22  Tom Tromey  <tom@tromey.com>
7419
7420         * compile/compile.c (compile_file_command): Use
7421         gdb::unique_xmalloc_ptr, std::string.
7422         * utils.c (gdb_abspath): Change return type.
7423         * source.c (openp): Update.
7424         * objfiles.c (allocate_objfile): Update.
7425         * main.c (set_gdb_data_directory): Update.
7426         * utils.h (gdb_abspath): Return a gdb::unique_xmalloc_ptr.
7427
7428 2017-08-22  Zhouyi Zhou  <zhouzhouyi@gmail.com>
7429
7430         * cli-cmds.c (list_commands): List actual code around more than
7431         one location.
7432
7433 2017-08-21  John Baldwin  <jhb@FreeBSD.org>
7434
7435         * fbsd-nat.c (fbsd_add_threads): Use array type for `lwps'.
7436
7437 2017-08-21  Pedro Alves  <palves@redhat.com>
7438
7439         PR gdb/19487
7440         * c-exp.y (variable production): Handle function aliases.
7441         * minsyms.c (msymbol_is_text): New function.
7442         * minsyms.h (msymbol_is_text): Declare.
7443         * symtab.c (find_function_alias_target): New function.
7444         * symtab.h (find_function_alias_target): Declare.
7445
7446 2017-08-21  Pedro Alves  <palves@redhat.com>
7447
7448         * eval.c (evaluate_subexp_standard) <OP_TYPE>: Don't dig past
7449         typedefs.
7450         * typeprint.c (whatis_exp): If handling "whatis", and expression
7451         is OP_TYPE, strip one typedef level.  Otherwise don't strip
7452         typedefs here.
7453         * valops.c (value_cast): Save "to" type before resolving
7454         stubs/typedefs.  Use that type as resulting value's type.
7455
7456 2017-08-18  Tom Tromey  <tom@tromey.com>
7457             Pedro Alves  <palves@redhat.com>
7458
7459         * spu-multiarch.c (parse_spufs_run): Use scoped_restore.
7460         * sol-thread.c (sol_thread_resume, sol_thread_wait)
7461         (sol_thread_xfer_partial, rw_common): Use scoped_restore.
7462         * procfs.c (procfs_do_thread_registers): Use scoped_restore.
7463         * proc-service.c (ps_xfer_memory): Use scoped_restore.
7464         * linux-tdep.c (linux_corefile_thread): Remove a cleanup.
7465         (linux_get_siginfo_data): Add "thread" argument.  Use
7466         scoped_restore.
7467         * linux-nat.c (linux_child_follow_fork)
7468         (check_stopped_by_watchpoint): Use scoped_restore.
7469         * infrun.c (displaced_step_prepare_throw, write_memory_ptid)
7470         (THREAD_STOPPED_BY, handle_signal_stop): Use scoped_restore.
7471         (restore_inferior_ptid, save_inferior_ptid): Remove.
7472         * btrace.c (btrace_fetch): Use scoped_restore.
7473         * bsd-uthread.c (bsd_uthread_fetch_registers)
7474         (bsd_uthread_store_registers): Use scoped_restore.
7475         * breakpoint.c (reattach_breakpoints, detach_breakpoints): Use
7476         scoped_restore.
7477         * aix-thread.c (aix_thread_resume, aix_thread_wait)
7478         (aix_thread_xfer_partial): Use scoped_restore.
7479         * inferior.h (save_inferior_ptid): Remove.
7480
7481 2017-08-18  Yao Qi  <yao.qi@linaro.org>
7482
7483         PR tdep/21818
7484         * arm-tdep.c (gdb_print_insn_arm): Mark
7485         USER_SPECIFIED_MACHINE_TYPE if exec_bfd isn't NULL.
7486
7487 2017-08-18  Yao Qi  <yao.qi@linaro.org>
7488
7489         * NEWS: Mention GDBserver's new option "--selftest".
7490         * Makefile.in (SFILES): Remove selftest.c, add common/selftest.c.
7491         * selftest.c: Move it to common/selftest.c.
7492         * selftest.h: Move it to common/selftest.h.
7493         * selftest-arch.c (reset): New function.
7494         (tests_with_arch): Call reset.
7495
7496 2017-08-18  Yao Qi  <yao.qi@linaro.org>
7497
7498         * selftest.c (run_tests): Don't call QUIT.  Call debug_printf
7499         instead of exception_fprintf and printf_filtered.
7500
7501 2017-08-18  Yao Qi  <yao.qi@linaro.org>
7502
7503         * selftest.c (register_self_test): Rename it to
7504         selftests::register_test.
7505         (run_self_tests): selftest::run_tests.
7506         * selftest.h: Update declarations.
7507         * selftest-arch.c (register_self_test_foreach_arch): Rename it to
7508         selftests::register_test_foreach_arch.
7509         * selftest-arch.h: Update declaration.
7510         * aarch64-tdep.c: Update.
7511         * arm-tdep.c: Likewise.
7512         * disasm-selftests.c: Likewise.
7513         * dwarf2loc.c: Likewise.
7514         * dwarf2-frame.c: Likewise.
7515         * findvar.c: Likewise.
7516         * gdbarch-selftests.c: Likewise.
7517         * maint.c (maintenance_selftest): Likewise.
7518         * regcache.c: Likewise.
7519         * rust-exp.y: Likewise.
7520         * selftest-arch.c: Likewise.
7521         * unittests/environ-selftests.c: Likewise.
7522         * unittests/function-view-selftests.c: Likewise.
7523         * unittests/offset-type-selftests.c: Likewise.
7524         * unittests/optional-selftests.c: Likewise.
7525         * unittests/scoped_restore-selftests.c: Likewise.
7526         * utils-selftests.c: Likewise.
7527
7528 2017-08-17  Pedro Alves  <palves@redhat.com>
7529
7530         * cli/cli-cmds.c (source_command): Delete 'old_source_verbose'
7531         local.
7532
7533 2017-08-17  Pedro Alves  <palves@redhat.com>
7534
7535         * dwarf2read.c (struct dwarf2_cu) <line_header_die_owner>: New
7536         field.
7537         (reset_die_in_process): Delete, replaced by ...
7538         (process_die_scope): ... this new class.  Make it responsible for
7539         freeing cu->line_header too.
7540         (process_die): Use process_die_scope.
7541         (handle_DW_AT_stmt_list): Record the line header's owner CU/DIE in
7542         cu->line_header_die_owner.  Don't release the line header if it's
7543         owned by the CU.
7544         (setup_type_unit_groups): Make the CU/DIE own the line header.
7545         Don't release the line header here.
7546
7547 2017-08-17  Alex Lindsay  <alexlindsay239@gmail.com>  (tiny change)
7548
7549         * elfread.c (elf_read_minimal_symbols): xfree synthsyms.
7550
7551 2017-08-17  Ruslan Kabatsayev  <b7.10110111@gmail.com>
7552
7553         * NEWS: Mention new shortcuts for nexti and stepi in TUI
7554         Single-Key mode
7555
7556 2017-08-16  Ruslan Kabatsayev  <b7.10110111@gmail.com>
7557
7558         * tui/tui.c (tui_commands): Add "nexti" and "stepi" to the Single-Key
7559         mode command list.
7560
7561 2017-08-15  Stafford Horne  <shorne@gmail.com>
7562
7563         * MAINTAINERS (Write After Approval): Add Stafford Horne.
7564
7565 2017-08-15  Stafford Horne  <shorne@gmail.com>
7566
7567         * xtensa-tdep.c (xtensa_init_reggroups): Use xstrdup for cpname.
7568
7569 2017-08-15  Sergio Durigan Junior  <sergiodj@redhat.com>
7570
7571         PR gdb/21954
7572         * infcmd.c (unset_environment_command): Use the 'clear' method on
7573         the environment instead of resetting it.
7574
7575 2017-08-15  John Baldwin  <jhb@FreeBSD.org>
7576
7577         * fbsd-nat.c (fbsd_convert_siginfo): Fix compile on big-endian
7578         platforms.
7579
7580 2017-08-14  Tom Tromey  <tom@tromey.com>
7581
7582         * valprint.c (print_octal_chars): Use HOST_CHAR_BIT.
7583         (print_binary_chars): Likewise.
7584         (BITS_IN_BYTES): Remove.
7585
7586 2017-08-14  Tom Tromey  <tom@tromey.com>
7587
7588         PR gdb/21675
7589         * valprint.c (LOW_ZERO): Change value to 034.
7590         (print_octal_chars): Add static_asserts for octal constants.
7591         * printcmd.c (print_scalar_formatted): Add 'd' case.
7592
7593 2017-08-11  Tom Tromey  <tom@tromey.com>
7594
7595         * symfile.c (add_symbol_file_command): Use std::vector.
7596
7597 2017-08-14  Tom Tromey  <tom@tromey.com>
7598
7599         * break-catch-throw.c (handle_gnu_v3_exceptions): Use std::move.
7600         * break-catch-syscall.c (create_syscall_event_catchpoint): Use
7601         std::move.
7602         * break-catch-sig.c (create_signal_catchpoint): Use std::move.
7603
7604 2017-08-11  Pedro Alves  <palves@redhat.com>
7605
7606         * infrun.c (process_event_stop_test): Adjust
7607         function_name_is_marked_for_skip call.
7608         * skip.c: Include <list>.
7609         (skiplist_entry): Make it a class with private fields, and
7610         getters/setters.
7611         (skiplist_entry_chain): Delete.
7612         (skiplist_entries): New.
7613         (skiplist_entry_count): Delete.
7614         (highest_skiplist_entry_num): New.
7615         (ALL_SKIPLIST_ENTRIES, ALL_SKIPLIST_ENTRIES_SAFE): Delete.
7616         (add_skiplist_entry): Delete.
7617         (skiplist_entry::skiplist_entry): New.
7618         (skiplist_entry::add_entry): New.
7619         (skip_file_command, skip_function): Adjust.
7620         (compile_skip_regexp): Delete.
7621         (skip_command): Don't compile regexp here.  Adjust to use
7622         skiplist_entry::add_entry.
7623         (skip_info): Adjust to use range-for and getters.
7624         (skip_enable_command, skip_disable_command): Adjust to use
7625         range-for and setters.
7626         (skip_delete_command): Adjust to use std::list.
7627         (add_skiplist_entry): Delete.
7628         (skip_file_p): Delete, refactored as ...
7629         (skiplist_entry::do_skip_file_p): ... this new method.
7630         (skip_gfile_p): Delete, refactored as ...
7631         (skiplist_entry::do_gskip_file_p): ... this new method.
7632         (skip_function_p, skip_rfunction_p): Delete, refactored as ...
7633         (skiplist_entry::skip_function_p): ... this new method.
7634         (function_name_is_marked_for_skip): Now returns bool, and takes
7635         the function sal by const reference.  Adjust to use range-for and
7636         skiplist_entry methods.
7637         (_initialize_step_skip): Remove references to
7638         skiplist_entry_chain, skiplist_entry_count.
7639         * skip.h (function_name_is_marked_for_skip): Now returns bool, and
7640         takes the function sal by const reference.
7641
7642 2017-08-11  Yao Qi  <yao.qi@linaro.org>
7643
7644         * dwarf2-frame.c (clear_pointer_cleanup): Remove.
7645         (dwarf2_frame_cache): Remove reset_cache_cleanup.
7646         (dwarf2_frame_cache):
7647         * frame-unwind.c (frame_unwind_try_unwinder): Catch
7648         RETURN_MASK_ALL and set *this_case to NULL.
7649         * frame-unwind.h: Update comments.
7650
7651 2017-08-11  Yao Qi  <yao.qi@linaro.org>
7652
7653         * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Remove.
7654         (dwarf2_frame_state_copy_regs): Remove.
7655         (dwarf2_frame_state_free_regs): Remove.
7656         (dwarf2_frame_state::~dwarf2_frame_state): Remove.
7657         (dwarf2_restore_rule): Call method .alloc_regs instead of
7658         dwarf2_frame_state_alloc_regs.
7659         (execute_cfa_program): Likewise.  Call dwarf2_frame_state_reg_info
7660         constructor.  Call std::move.
7661         (dwarf2_fetch_cfa_info): Don't call dwarf2_frame_state_copy_regs.
7662         (dwarf2_frame_cache): Likewise.
7663
7664         [GDB_SELF_TEST]: Include selftest.h and
7665         selftest-arch.h.
7666         [GDB_SELF_TEST] (execute_cfa_program_test): New function.
7667         (_initialize_dwarf2_frame) [GDB_SELF_TEST]: Register
7668         execute_cfa_program_test.
7669
7670         * dwarf2-frame.h (dwarf2_frame_state_reg_info): Add ctor, dtor,
7671         copy ctor, assignment operator, move assignment.
7672         <alloc_regs>: New method.
7673         <swap>: New method.
7674         (struct dwarf2_frame_state): Delete dtor.
7675         (dwarf2_frame_state_alloc_regs): Remove declaration.
7676         * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): Don't call
7677         dwarf2_frame_state_alloc_regs, use .alloc_regs instead.
7678
7679 2017-08-11  Yao Qi  <yao.qi@linaro.org>
7680
7681         * dwarf2-frame.c (dwarf2_frame_state_free): Remove.
7682         (dwarf2_frame_state::dwarf2_frame_state): New.
7683         (dwarf2_frame_state::~dwarf2_frame_state): New.
7684         (dwarf2_fetch_cfa_info): Update.
7685         (dwarf2_frame_cache): Remove old_chain.  Change 'fs' to an object
7686         rather than a pointer.  Update code.
7687         * dwarf2-frame.h (struct dwarf2_frame_state): Declare ctor and
7688         dtor.
7689         <data_align, code_align, retaddr_column>: Change them to const.
7690         <armcc_cfa_offsets_sf, armcc_cfa_offsets_reversed>: Change them
7691         to bool.
7692
7693 2017-08-11  Yao Qi  <yao.qi@linaro.org>
7694
7695         * dwarf2-frame.h (struct dwarf2_frame_state_reg) <exp_len>: Remove.
7696         <loc.exp>: New field.
7697         * dwarf2-frame.c (execute_cfa_program): Update.
7698         (dwarf2_frame_prev_register): Update.
7699
7700 2017-08-10  Pedro Alves  <palves@redhat.com>
7701
7702         * common/gdb_unique_ptr.h (xfree_deleter<T[]>): Define.
7703
7704 2017-08-09  John Baldwin  <jhb@FreeBSD.org>
7705
7706         * fbsd-nat.c (struct fbsd_fork_info): Remove.
7707         (fbsd_pending_children): Use std::list.
7708         (fbsd_remember_child): Likewise.
7709         (fbsd_is_child_pending): Likewise.
7710         (fbsd_pending_vfork_done): Use std::forward_list.
7711         (fbsd_add_vfork_done): Likewise.
7712         (fbsd_is_vfork_done_pending): Likewise.
7713         (fbsd_next_vfork_done): Likewise.
7714
7715 2017-08-09  John Baldwin  <jhb@FreeBSD.org>
7716
7717         * fbsd-nat.c [HAVE_KINFO_GETVMMAP] (struct free_deleter): New.
7718         (fbsd_find_memory_regions): Use free_deleter with std::unique_ptr.
7719         [!HAVE_KINFO_GETVMMAP] (fbsd_find_memory_regions): Use std::string
7720         for `mapfilename'.
7721         (fbsd_xfer_partial): Use gdb::byte_vector.
7722         (fbsd_add_threads): Use gdb::unique_xmalloc_ptr.
7723
7724 2017-08-09  John Baldwin  <jhb@FreeBSD.org>
7725
7726         * fbsd-nat.c: [!HAVE_KINFO_GETVMMAP]: Include <sys/user.h> and
7727         "filestuff.h".
7728         (fbsd_find_memory_regions): Fix `mapfile' initialization.
7729
7730 2017-08-09  Tom Tromey  <tom@tromey.com>
7731
7732         * skip.c (skiplist_entry): New constructor.
7733         (skiplist_entry::enabled, skiplist_entry::function_is_regexp)
7734         (skiplist_entry::file_is_glob): Now bool.
7735         (skiplist_entry::file, skiplist_entry::function): Now
7736         std::string.
7737         (make_skip_entry): Return a unique_ptr.  Use new.
7738         (free_skiplist_entry, free_skiplist_entry_cleanup)
7739         (make_free_skiplist_entry_cleanup): Remove.
7740         (skip_command, skip_disable_command, add_skiplist_entry)
7741         (skip_form_bytes, compile_skip_regexp, skip_command, skip_info)
7742         (skip_file_p, skip_gfile_p, skip_function_p, skip_rfunction_p)
7743         (function_name_is_marked_for_skip): Update.
7744         (skip_delete_command): Update.  Use delete.
7745
7746 2017-08-09  Jiong Wang  <jiong.wang@arm.com>
7747
7748         * aarch64-linux-tdep.c: Include "auxv.h" and "elf/common.h".
7749         (aarch64_linux_core_read_description): New function.
7750         (aarch64_linux_init_abi): Register gdbarch_core_read_description.
7751
7752 2017-08-09  Pedro Alves  <palves@redhat.com>
7753
7754         * cp-name-parser.y (cp_comp_to_string): Return a
7755         gdb::unique_xmalloc_ptr<char>.
7756         * cp-support.c (replace_typedefs_qualified_name)
7757         (replace_typedefs): Adjust to use gdb::unique_xmalloc_ptr<char>.
7758         (cp_canonicalize_string_full): Use op= instead of explicit
7759         convertion.
7760         (cp_class_name_from_physname, method_name_from_physname)
7761         (cp_func_name, cp_remove_params): Adjust to use
7762         gdb::unique_xmalloc_ptr<char>.
7763         * cp-support.h (cp_comp_to_string): Return a
7764         gdb::unique_xmalloc_ptr<char>.
7765         * python/py-type.c (typy_lookup_type): Adjust to use
7766         gdb::unique_xmalloc_ptr<char>.
7767
7768 2017-08-09  H.J. Lu  <hongjiu.lu@intel.com>
7769
7770         * dwarf2read.c (dwarf2_string_attr): Fix a typo.
7771
7772 2017-08-09  Alex Lindsay  <alexlindsay239@gmail.com>
7773             Yao Qi  <yao.qi@linaro.org>
7774
7775         * cp-support.c (cp_canonicalize_string_full): Use
7776         gdb::unique_xmalloc_ptr<char>.
7777         (cp_canonicalize_string): Likewise.
7778
7779 2017-08-09  Yao Qi  <yao.qi@linaro.org>
7780
7781         * features/Makefile (WHICH): Remove i386/ non-linux stuff.
7782         * regformats/i386/amd64-avx-avx512.dat: Remove.
7783         * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Remove.
7784         * regformats/i386/amd64-avx-mpx.dat:Remove.
7785         * regformats/i386/amd64-avx.dat: Remove.
7786         * regformats/i386/amd64-mpx.dat: Remove.
7787         * regformats/i386/i386-avx-avx512.dat: Remove.
7788         * regformats/i386/i386-avx-mpx-avx512-pku.dat: Remove.
7789         * regformats/i386/i386-avx-mpx.dat: Remove.
7790         * regformats/i386/i386-mmx.dat: Remove.
7791         * regformats/i386/i386-mpx.dat: Remove.
7792
7793 2017-08-09  Yao Qi  <yao.qi@linaro.org>
7794
7795         * amd64-tdep.h (tdesc_x32): Remove the declaration.
7796         * amd64-tdep.c: Don't include features/i386/x32*.c.
7797         (_initialize_amd64_tdep): Don't call initialize_tdesc_x32*
7798         functions.
7799         * features/Makefile (WHICH): Remove i386/x32, i386/x32-avx,
7800         and i386/x32-avx-avx512.
7801         (XMLTOC): Remove i386/x32-avx.xml, i386/x32-avx-avx512.xml,
7802         and i386/x32.xml.
7803         * features/i386/x32-avx-avx512.c: Removed.
7804         * features/i386/x32-avx-avx512.xml: Removed.
7805         * features/i386/x32-avx.c: Removed.
7806         * features/i386/x32-avx.xml: Removed.
7807         * features/i386/x32.c: Removed.
7808         * features/i386/x32.xml: Removed.
7809         * regformats/i386/x32-avx-avx512.dat: Removed.
7810         * regformats/i386/x32-avx.dat: Removed.
7811         * regformats/i386/x32.dat: Removed.
7812
7813 2017-08-07  Maciej W. Rozycki  <macro@imgtec.com>
7814
7815         PR breakpoints/21886
7816         * mem-break.c (default_memory_insert_breakpoint): Use
7817         `->placed_address' rather than `->reqstd_address' for the
7818         breakpoint location.
7819
7820 2017-08-07  Maciej W. Rozycki  <macro@imgtec.com>
7821
7822         * arch-utils.c (default_print_insn): Remove arch/mach/endian
7823         assertions.
7824
7825 2017-08-07  Maciej W. Rozycki  <macro@imgtec.com>
7826
7827         * gdbarch.sh (gdbarch_info): Replace the `tdep_info' member with
7828         a union of `tdep_info', `tdesc_data' and `id'.
7829         * aarch64-tdep.c (aarch64_gdbarch_init): Use `info.tdesc_data'
7830         rather than `info.tdep_info'.
7831         * amd64-linux-tdep.c (amd64_linux_init_abi): Likewise.
7832         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
7833         * i386-tdep.c (i386_gdbarch_init): Likewise.
7834         * mips-linux-tdep.c (mips_linux_init_abi): Likewise.
7835         * mips-tdep.c (mips_gdbarch_init): Likewise.
7836         * nds32-tdep.c (nds32_gdbarch_init): Likewise.
7837         * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
7838         * ppc-linux-tdep.c (ppu2spu_sniffer): Use `info.id' rather than
7839         `info.tdep_info'.
7840         (ppc_linux_init_abi): Use `info.tdesc_data' rather than
7841         `info.tdep_info'.
7842         * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
7843         * spu-multiarch.c (spu_gdbarch): Use `info.id' rather than
7844         `info.tdep_info'.
7845         * spu-tdep.c (spu_gdbarch_init): Likewise.
7846         * gdbarch.h: Regenerate.
7847
7848 2017-08-07  Leszek Swirski  <leszeks@google.com>
7849
7850         PR symtab/20899
7851         * dwarf2read.c (dwarf2_string_attr): Allow DW_FORM_GNU_strp_alt.
7852
7853 2017-08-07  Simon Marchi  <simon.marchi@ericsson.com>
7854
7855         * remote-sim.c (gdbsim_load): Remove char **argv local variable.
7856         (gdbsim_open): Rename gdb_argv args object to argv.
7857
7858 2017-08-05  Tom Tromey  <tom@tromey.com>
7859
7860         * compile/compile-object-load.c (compile_object_load): Use
7861         gdb::unique_xmalloc_ptr.
7862         * cli/cli-dump.c (scan_filename): Rename from
7863         scan_filename_with_cleanup.  Change return type.
7864         (scan_expression): Rename from scan_expression_with_cleanup.
7865         Change return type.
7866         (dump_memory_to_file, dump_value_to_file, restore_command):
7867         Use gdb::unique_xmalloc_ptr.  Update.
7868         * cli/cli-cmds.c (find_and_open_script): Use
7869         gdb::unique_xmalloc_ptr.
7870         * tracefile-tfile.c (tfile_open): Use gdb::unique_xmalloc_ptr.
7871         * symmisc.c (maintenance_print_symbols)
7872         (maintenance_print_msymbols): Use gdb::unique_xmalloc_ptr.
7873         * symfile.c (symfile_bfd_open, generic_load)
7874         (add_symbol_file_command, remove_symbol_file_command): Use
7875         gdb::unique_xmalloc_ptr.
7876         * source.c (openp): Use gdb::unique_xmalloc_ptr.
7877         * psymtab.c (maintenance_print_psymbols): Use
7878         gdb::unique_xmalloc_ptr.
7879         * corelow.c (core_open): Use gdb::unique_xmalloc_ptr.
7880         * breakpoint.c (save_breakpoints): Use gdb::unique_xmalloc_ptr.
7881         * solib.c (solib_map_sections): Use gdb::unique_xmalloc_ptr.
7882         (reload_shared_libraries_1): Likewise.
7883
7884 2017-08-05  Tom Tromey  <tom@tromey.com>
7885
7886         * rust-exp.y (rust_op_ptr, set_field): Remove typedefs.
7887         (rust_op_vector, rust_set_vector): New typedefs.
7888         (current_parser): New global.
7889         (work_obstack): Change to pointer type.  Update all users.
7890         (rust_ast, pstate): Remove globals.
7891         (struct rust_parser): New.
7892         (%union) <params, field_inits>: Change type.
7893         (start, tuple_expr, unit_expr, struct_expr_list, literal)
7894         (field_expr, expr_list, maybe_expr_list, type_list): Update.
7895         (ast_call_ish, ast_path, ast_function_type, ast_tuple_type)
7896         (convert_params_to_types, convert_params_to_expression): Change
7897         type of "params".
7898         (ast_string): Change type of "fields".
7899         (rust_parse): Make a rust_parser.  Remove cleanups.
7900         (rust_lex_tests): Make and install an auto_obstack.
7901
7902 2017-08-04  Yao Qi  <yao.qi@linaro.org>
7903
7904         * configure.srv (ipa_x32_linux_regobj): New.
7905         * linux-amd64-ipa.c (get_ipa_tdesc): Use X86_TDESC_AVX_AVX512
7906         instead of X86_TDESC_AVX512.
7907         (initialize_low_tracepoint): Call
7908         init_registers_x32_avx_avx512_linux.
7909
7910 2017-08-04  Yao Qi  <yao.qi@linaro.org>
7911
7912         * utils.h (gdb_argv): Add namespace std for nullptr_t.
7913
7914 2017-08-03  Ruslan Kabatsayev  <b7.10110111@gmail.com>
7915
7916         * MAINTAINERS (Write After Approval): Add Ruslan Kabatsayev.
7917
7918 2017-08-03  Tom Tromey  <tom@tromey.com>
7919
7920         * utils.c (make_cleanup_freeargv, do_freeargv, gdb_buildargv):
7921         Remove.
7922         * utils.h (make_cleanup_freeargv, gdb_buildargv): Remove.
7923
7924 2017-08-03  Tom Tromey  <tom@tromey.com>
7925
7926         * python/py-param.c (compute_enum_values): Use gdb_argv.
7927
7928 2017-08-03  Tom Tromey  <tom@tromey.com>
7929
7930         * utils.h (struct gdb_argv_deleter): New.
7931         (gdb_argv): New class.
7932         * utils.c (gdb_argv::reset): New method.
7933         * tracepoint.c (delete_trace_variable_command): Use gdb_argv.
7934         * tracefile.c (tsave_command): Use gdb_argv.
7935         * top.c (new_ui_command): Use gdb_argv.
7936         * symmisc.c (maintenance_print_symbols)
7937         (maintenance_print_msymbols, maintenance_expand_symtabs): Use gdb_argv.
7938         * symfile.c (symbol_file_command, generic_load)
7939         (remove_symbol_file_command): Use gdb_argv.
7940         * stack.c (backtrace_command): Use gdb_argv.
7941         * source.c (add_path, show_substitute_path_command)
7942         (unset_substitute_path_command, set_substitute_path_command):
7943         Use gdb_argv.
7944         * skip.c (skip_command): Use gdb_argv.  Use gdb_buildargv.
7945         * ser-mingw.c (pipe_windows_open): Use gdb_argv.
7946         * remote.c (extended_remote_run, remote_put_command)
7947         (remote_get_command, remote_delete_command): Use gdb_argv.
7948         * remote-sim.c (gdbsim_load, gdbsim_create_inferior)
7949         (gdbsim_open): Use gdb_argv.
7950         * python/py-cmd.c (gdbpy_string_to_argv): Use gdb_argv.
7951         * psymtab.c (maintenance_print_psymbols): Use gdb_argv.
7952         * procfs.c (procfs_info_proc): Use gdb_argv.
7953         * interps.c (interpreter_exec_cmd): Use gdb_argv.
7954         * infrun.c (handle_command): Use gdb_argv.
7955         * inferior.c (add_inferior_command, clone_inferior_command):
7956         Use gdb_argv.
7957         * guile/scm-string.c (gdbscm_string_to_argv): Use gdb_argv.
7958         * exec.c (exec_file_command): Use gdb_argv.
7959         * cli/cli-cmds.c (alias_command): Use gdb_argv.
7960         * compile/compile.c (build_argc_argv): Use gdb_argv.
7961
7962 2017-08-03  Tom Tromey  <tom@tromey.com>
7963
7964         * python/python.c (gdbpy_decode_line): Use unique_xmalloc_ptr.
7965
7966 2017-08-03  Tom Tromey  <tom@tromey.com>
7967
7968         * python/python.c (compute_python_string): Return std::string.
7969         (gdbpy_eval_from_control_command): Update.
7970         (do_start_initialization): Use std::string.
7971         * python/py-varobj.c (py_varobj_iter_next): Use string_printf, not
7972         xstrprintf.
7973         * python/py-breakpoint.c (local_setattro): Use string_printf, not
7974         xstrprintf.
7975
7976 2017-08-03  Tom Tromey  <tom@tromey.com>
7977
7978         * top.h (do_restore_instream_cleanup): Remove.
7979         * top.c (do_restore_instream_cleanup): Remove.
7980         (read_command_file): Use scoped_restore.
7981         * cli/cli-script.c (execute_user_command): Use scoped_restore.
7982
7983 2017-08-03  Tom Tromey  <tom@tromey.com>
7984
7985         * cli/cli-script.c (execute_user_command)
7986         (execute_control_command): Use scoped_restore.
7987
7988 2017-08-03  Tom Tromey  <tom@tromey.com>
7989
7990         * cli/cli-script.c (do_restore_user_call_depth): Remove.
7991         (execute_user_command): Remove user_call_depth; use
7992         user_args_stack's size instead.
7993
7994 2017-08-03  Tom Tromey  <tom@tromey.com>
7995
7996         * top.h (in_user_command): Remove.
7997         * top.c (in_user_command): Remove.
7998         * cli/cli-script.c (do_restore_user_call_depth)
7999         (execute_user_command): Update.
8000
8001 2017-08-03  Tom Tromey  <tom@tromey.com>
8002
8003         * valops.c (search_struct_method): Use gdb::byte_vector.
8004         * valarith.c (value_concat): Use std::vector.
8005         * target.c (memory_xfer_partial): Use gdb::byte_vector.
8006         (simple_search_memory): Likewise.
8007         * printcmd.c (find_string_backward): Use gdb::byte_vector.
8008         * mi/mi-main.c (mi_cmd_data_write_memory): Use gdb::byte_vector.
8009         * gcore.c (gcore_copy_callback): Use gdb::byte_vector.
8010         * elfread.c (elf_rel_plt_read): Use std::string.
8011         * cp-valprint.c (cp_print_value): Use gdb::byte_vector.
8012         * cli/cli-dump.c (restore_section_callback): Use
8013         gdb::byte_vector.
8014
8015 2017-08-03  Tom Tromey  <tom@tromey.com>
8016
8017         * jit.c (jit_reader_load_command): Use unique_xmalloc_ptr.
8018
8019 2017-08-03  Tom Tromey  <tom@tromey.com>
8020
8021         * tui/tui-regs.c (tui_restore_gdbout): Remove.
8022         (tui_register_format): Use scoped_restore.
8023
8024 2017-08-03  Tom Tromey  <tom@tromey.com>
8025
8026         * reverse.c (exec_direction_default): Remove.
8027         (exec_reverse_once): Use scoped_restore.
8028         * remote.c (restore_remote_timeout): Remove.
8029         (remote_flash_erase, remote_flash_write, remote_flash_done)
8030         (readchar, remote_serial_write): Use scoped_restore.
8031         * cli/cli-script.c (struct source_cleanup_lines_args)
8032         (source_cleanup_lines): Remove.
8033         (script_from_file): Use scoped_restore.
8034         * cli/cli-cmds.c (source_verbose_cleanup): Remove.
8035         (source_command): Use scoped_restore.
8036
8037 2017-08-03  Tom Tromey  <tom@tromey.com>
8038
8039         * utils.h (make_cleanup_free_so): Remove.
8040         * utils.c (do_free_so, make_cleanup_free_so): Remove.
8041         * solist.h (struct so_deleter): New.
8042         (so_list_up): New typedef.
8043         * solib-svr4.c (svr4_read_so_list): Use so_list_up.
8044
8045 2017-08-03  Tom Tromey  <tom@tromey.com>
8046
8047         * utils.h (make_cleanup_restore_current_language): Remove.
8048         * utils.c (do_restore_current_language)
8049         (make_cleanup_restore_current_language): Remove.
8050         * parse.c (parse_exp_in_context_1)
8051         (parse_expression_with_language): Use
8052         scoped_restore_current_language.
8053         * mi/mi-main.c (mi_cmd_execute): Use
8054         scoped_restore_current_language.
8055         * language.h (scoped_restore_current_language): New class.
8056
8057 2017-08-03  Tom Tromey  <tom@tromey.com>
8058
8059         * compile/compile.c (cleanup_unlink_file): Remove.
8060         (compile_to_object): Use gdb::unlinker.
8061         (eval_compile_command): Likewise.
8062
8063 2017-08-03  Tom Tromey  <tom@tromey.com>
8064
8065         * utils.h (make_cleanup_fclose): Remove.
8066         * utils.c (do_fclose_cleanup, make_cleanup_fclose): Remove.
8067
8068 2017-08-03  Tom Tromey  <tom@tromey.com>
8069
8070         * top.c (open_terminal_stream): Return gdb_file_up.
8071         (new_ui_command): Update.
8072
8073 2017-08-03  Tom Tromey  <tom@tromey.com>
8074
8075         * source.c (print_source_lines_base, forward_search_command)
8076         (reverse_search_command): Use gdb_file_up.
8077
8078 2017-08-03  Tom Tromey  <tom@tromey.com>
8079
8080         * fbsd-nat.c (fbsd_find_memory_regions): Update.
8081
8082 2017-08-03  Tom Tromey  <tom@tromey.com>
8083
8084         * cli/cli-cmds.c (find_and_open_script): Change return type.
8085         Remove "streamp" and "full_path" parameters.
8086         (source_script_with_search): Update.
8087         * auto-load.c (source_script_file): Update.
8088         * cli/cli-cmds.h (find_and_open_script): Change type.
8089         (open_script): New struct.
8090
8091 2017-08-03  Tom Tromey  <tom@tromey.com>
8092
8093         * xml-support.c (xml_fetch_content_from_file): Update.
8094         * ui-file.c (stdio_file::open): Update.
8095         * tracefile-tfile.c (tfile_start): Update.
8096         * remote.c (remote_file_put, remote_file_get): Update.
8097         * nat/linux-procfs.c (linux_proc_get_int)
8098         (linux_proc_pid_get_state, linux_proc_tid_get_name): Update.
8099         * nat/linux-osdata.c (linux_common_core_of_thread): Update.
8100         (command_from_pid, commandline_from_pid, linux_xfer_osdata_cpus)
8101         (print_sockets, linux_xfer_osdata_shm, linux_xfer_osdata_sem)
8102         (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Update.
8103         * nat/linux-btrace.c (linux_determine_kernel_start): Update.
8104         * linux-nat.c (linux_proc_pending_signals): Update.
8105         * dwarf2read.c (write_psymtabs_to_index): Use gdb_file_up.
8106         (file_closer): Remove.
8107         * compile/compile.c (compile_to_object): Update.
8108         * common/filestuff.h (struct gdb_file_deleter): New.
8109         (gdb_file_up): New typedef.
8110         (gdb_fopen_cloexec): Change return type.
8111         * common/filestuff.c (gdb_fopen_cloexec): Return gdb_file_up.
8112         * cli/cli-dump.c (fopen_with_cleanup): Remove.
8113         (dump_binary_file, restore_binary_file): Update.
8114         * auto-load.c (auto_load_objfile_script_1): Update.
8115
8116 2017-08-03  Tom Tromey  <tom@tromey.com>
8117
8118         * tracepoint.c (tvariables_info_1): Use ui_out_emit_table.
8119         (info_static_tracepoint_markers_command): Likewise.
8120         * solib.c (info_sharedlibrary_command): Use ui_out_emit_table.
8121         * skip.c (skip_info): Use ui_out_emit_table.
8122         * progspace.c (print_program_space): Use ui_out_emit_table.
8123         * osdata.c (info_osdata): Use ui_out_emit_table.
8124         * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions): Use
8125         ui_out_emit_table.
8126         * linux-thread-db.c (info_auto_load_libthread_db): Use
8127         ui_out_emit_table.
8128         * inferior.c (print_inferior): Use ui_out_emit_table.
8129         * gdb_bfd.c (maintenance_info_bfds): Use ui_out_emit_table.
8130         * breakpoint.c (breakpoint_1): Use ui_out_emit_table.
8131         * auto-load.c (auto_load_info_scripts): Use ui_out_emit_table.
8132         * ada-tasks.c (print_ada_task_info): Use ui_out_emit_table.
8133         * ui-out.h (class ui_out_emit_table): New.
8134
8135 2017-08-02  Maciej W. Rozycki  <macro@imgtec.com>
8136
8137         * mips-tdep.c (mips_fpu_type_str): New function.
8138         (mips_dump_tdep): Call it.
8139
8140 2017-08-01  Maciej W. Rozycki  <macro@imgtec.com>
8141
8142         * mips-tdep.c (mips_gdbarch_init): Use MIPS_FPU_TYPE to access
8143         `->mips_fpu_type'.
8144
8145 2017-07-31  Xavier Roirand  <roirand@adacore.com>
8146
8147         * solib-darwin.c (DYLD_VERSION_MAX): Increase value.
8148
8149 2017-07-27  Xavier Roirand  <roirand@adacore.com>
8150
8151         * MAINTAINERS (Write After Approval): Add Xavier Roirand.
8152
8153 2017-07-26  Yao Qi  <yao.qi@linaro.org>
8154
8155         * cli/cli-cmds.c (maintenancechecklist): New variable.
8156         * gdbcmd.h (maintenancechecklist): Declare it.
8157         * i386-linux-tdep.c (_initialize_i386_linux_tdep) [GDB_SELF_TEST]:
8158         Call i386_linux_read_description with different masks.
8159         * maint.c (maintenance_check_command): New function.
8160         (_initialize_maint_cmds): Call add_prefix_cmd.
8161         * target-descriptions.c (tdesc_reg): override operator != and ==.
8162         (tdesc_type): Likewise.
8163         (tdesc_feature): Likewise.
8164         (target_desc): Likewise.
8165         [GDB_SELF_TEST] (selftests::record_xml_tdesc): New function.
8166         (maintenance_check_xml_descriptions): New function.
8167         (_initialize_target_descriptions) Add command "xml-descriptions".
8168         * target-descriptions.h (selftests::record_xml_tdesc): Declare.
8169
8170 2017-07-26  Yao Qi  <yao.qi@linaro.org>
8171
8172         * i386-linux-tdep.c: Don't include features/i386/i386-*linux.c.
8173         Include features/i386/32bit-*.c.
8174         (i386_linux_read_description): Generate target description if it
8175         doesn't exist.
8176         (_initialize_i386_linux_tdep): Don't call _initialize_tdesc_i386
8177         functions.
8178         * features/i386/32bit-linux.c: Re-generated.
8179         * features/i386/32bit-sse.c: Likewise.
8180         * target-descriptions.c (print_c_feature::visit): Print code to
8181         set register number if needed.
8182         (print_c_feature) <m_next_regnum>: New field.
8183
8184 2017-07-26  Yao Qi  <yao.qi@linaro.org>
8185
8186         * features/Makefile (CFILES): Rename with TDESC_CFILES.
8187         (FEATURE_XMLFILES): New.
8188         (FEATURE_CFILES): New.
8189         New rules.
8190         (clean-cfiles): Remove generated c files.
8191         * features/i386/32bit-avx.c: Generated.
8192         * features/i386/32bit-avx512.c: Generated.
8193         * features/i386/32bit-core.c: Generated.
8194         * features/i386/32bit-linux.c: Generated.
8195         * features/i386/32bit-mpx.c: Generated.
8196         * features/i386/32bit-pkeys.c: Generated.
8197         * features/i386/32bit-sse.c: Generated.
8198         * target-descriptions.c: Include algorithm.
8199         (tdesc_element_visitor): Add method visit_end.
8200         (print_c_tdesc): Implement visit_end.
8201         (print_c_tdesc:: m_filename_after_features): Move it to
8202         protected.
8203         (print_c_feature): New class.
8204         (maint_print_c_tdesc_cmd): Use print_c_feature if XML file
8205         name starts with "i386/32bit-".
8206
8207 2017-07-26  Yao Qi  <yao.qi@linaro.org>
8208
8209         * target-descriptions.c (tdesc_element_visitor): New class.
8210         (tdesc_element): New class.
8211         (tdesc_reg): Inherit from tdesc_element.
8212         (tdesc_reg::accept): New function.
8213         (tdesc_type): Inherit from tdesc_element.
8214         (tdesc_type::accept): New function.
8215         (tdesc_feature): Inherit from tdesc_element.
8216         (tdesc_feature::accept): New function.
8217         (target_desc): Inherit from tdesc_element.
8218         (target_desc::target_desc): New.
8219         (target_desc::~target_desc): New.
8220         (target_desc::accept): New.
8221         (allocate_target_description): Use new.
8222         (free_target_description): Use delete.
8223         (print_c_tdesc): New class.
8224         (maint_print_c_tdesc_cmd): Adjust.
8225
8226         * features/aarch64.c: Re-generated.
8227         * features/arc-arcompact.c: Re-generated.
8228         * features/arc-v2.c: Re-generated.
8229         * features/arm/arm-with-iwmmxt.c: Re-generated.
8230         * features/arm/arm-with-m.c: Re-generated.
8231         * features/arm/arm-with-m-fpa-layout.c: Re-generated.
8232         * features/arm/arm-with-m-vfp-d16.c: Re-generated.
8233         * features/arm/arm-with-neon.c: Re-generated.
8234         * features/arm/arm-with-vfpv2.c: Re-generated.
8235         * features/arm/arm-with-vfpv3.c: Re-generated.
8236         * features/i386/amd64-avx-avx512.c: Re-generated.
8237         * features/i386/amd64-avx-avx512-linux.c: Re-generated.
8238         * features/i386/amd64-avx.c: Re-generated.
8239         * features/i386/amd64-avx-linux.c: Re-generated.
8240         * features/i386/amd64-avx-mpx-avx512-pku.c: Re-generated.
8241         * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
8242         * features/i386/amd64-avx-mpx.c: Re-generated.
8243         * features/i386/amd64-avx-mpx-linux.c: Re-generated.
8244         * features/i386/amd64.c: Re-generated.
8245         * features/i386/amd64-linux.c: Re-generated.
8246         * features/i386/amd64-mpx.c: Re-generated.
8247         * features/i386/amd64-mpx-linux.c: Re-generated.
8248         * features/i386/i386-avx-avx512.c: Re-generated.
8249         * features/i386/i386-avx-avx512-linux.c: Re-generated.
8250         * features/i386/i386-avx.c: Re-generated.
8251         * features/i386/i386-avx-linux.c: Re-generated.
8252         * features/i386/i386-avx-mpx-avx512-pku.c: Re-generated.
8253         * features/i386/i386-avx-mpx-avx512-pku-linux.c: Re-generated.
8254         * features/i386/i386-avx-mpx.c: Re-generated.
8255         * features/i386/i386-avx-mpx-linux.c: Re-generated.
8256         * features/i386/i386.c: Re-generated.
8257         * features/i386/i386-linux.c: Re-generated.
8258         * features/i386/i386-mmx.c: Re-generated.
8259         * features/i386/i386-mmx-linux.c: Re-generated.
8260         * features/i386/i386-mpx.c: Re-generated.
8261         * features/i386/i386-mpx-linux.c: Re-generated.
8262         * features/i386/x32-avx-avx512.c: Re-generated.
8263         * features/i386/x32-avx-avx512-linux.c: Re-generated.
8264         * features/i386/x32-avx.c: Re-generated.
8265         * features/i386/x32-avx-linux.c: Re-generated.
8266         * features/i386/x32.c: Re-generated.
8267         * features/i386/x32-linux.c: Re-generated.
8268         * features/microblaze.c: Re-generated.
8269         * features/microblaze-with-stack-protect.c: Re-generated.
8270         * features/mips64-dsp-linux.c: Re-generated.
8271         * features/mips64-linux.c: Re-generated.
8272         * features/mips-dsp-linux.c: Re-generated.
8273         * features/mips-linux.c: Re-generated.
8274         * features/nds32.c: Re-generated.
8275         * features/nios2.c: Re-generated.
8276         * features/nios2-linux.c: Re-generated.
8277         * features/rs6000/powerpc-32.c: Re-generated.
8278         * features/rs6000/powerpc-32l.c: Re-generated.
8279         * features/rs6000/powerpc-403.c: Re-generated.
8280         * features/rs6000/powerpc-403gc.c : Re-generated.
8281         * features/rs6000/powerpc-405.c: Re-generated.
8282         * features/rs6000/powerpc-505.c: Re-generated.
8283         * features/rs6000/powerpc-601.c: Re-generated.
8284         * features/rs6000/powerpc-602.c: Re-generated.
8285         * features/rs6000/powerpc-603.c: Re-generated.
8286         * features/rs6000/powerpc-604.c: Re-generated.
8287         * features/rs6000/powerpc-64.c: Re-generated.
8288         * features/rs6000/powerpc-64l.c: Re-generated.
8289         * features/rs6000/powerpc-7400.c: Re-generated.
8290         * features/rs6000/powerpc-750.c: Re-generated.
8291         * features/rs6000/powerpc-860.c: Re-generated.
8292         * features/rs6000/powerpc-altivec32.c: Re-generated.
8293         * features/rs6000/powerpc-altivec32l.c: Re-generated.
8294         * features/rs6000/powerpc-altivec64.c: Re-generated.
8295         * features/rs6000/powerpc-altivec64l.c: Re-generated.
8296         * features/rs6000/powerpc-cell32l.c: Re-generated.
8297         * features/rs6000/powerpc-cell64l.c: Re-generated.
8298         * features/rs6000/powerpc-e500.c: Re-generated.
8299         * features/rs6000/powerpc-e500l.c: Re-generated.
8300         * features/rs6000/powerpc-isa205-32l.c: Re-generated.
8301         * features/rs6000/powerpc-isa205-64l.c: Re-generated.
8302         * features/rs6000/powerpc-isa205-altivec32l.c: Re-generated.
8303         * features/rs6000/powerpc-isa205-altivec64l.c: Re-generated.
8304         * features/rs6000/powerpc-isa205-vsx32l.c: Re-generated.
8305         * features/rs6000/powerpc-isa205-vsx64l.c: Re-generated.
8306         * features/rs6000/powerpc-vsx32.c: Re-generated.
8307         * features/rs6000/powerpc-vsx32l.c: Re-generated.
8308         * features/rs6000/powerpc-vsx64.c: Re-generated.
8309         * features/rs6000/powerpc-vsx64l.c: Re-generated.
8310         * features/rs6000/rs6000.c: Re-generated.
8311         * features/s390-linux32.c: Re-generated.
8312         * features/s390-linux32v1.c: Re-generated.
8313         * features/s390-linux32v2.c: Re-generated.
8314         * features/s390-linux64.c: Re-generated.
8315         * features/s390-linux64v1.c: Re-generated.
8316         * features/s390-linux64v2.c: Re-generated.
8317         * features/s390-te-linux64.c: Re-generated.
8318         * features/s390-tevx-linux64.c: Re-generated.
8319         * features/s390-vx-linux64.c: Re-generated.
8320         * features/s390x-linux64.c: Re-generated.
8321         * features/s390x-linux64v1.c: Re-generated.
8322         * features/s390x-linux64v2.c: Re-generated.
8323         * features/s390x-te-linux64.c: Re-generated.
8324         * features/s390x-tevx-linux64.c: Re-generated.
8325         * features/s390x-vx-linux64.c: Re-generated.
8326         * features/sparc/sparc32-solaris.c: Re-generated.
8327         * features/sparc/sparc64-solaris.c: Re-generated.
8328         * features/tic6x-c62x.c: Re-generated.
8329         * features/tic6x-c62x-linux.c: Re-generated.
8330         * features/tic6x-c64x.c: Re-generated.
8331         * features/tic6x-c64x-linux.c: Re-generated.
8332         * features/tic6x-c64xp.c: Re-generated.
8333         * features/tic6x-c64xp-linux.c: Re-generated.
8334
8335 2017-07-26  Yao Qi  <yao.qi@linaro.org>
8336
8337         * i386-linux-tdep.c (i386_linux_read_description): New function.
8338         (i386_linux_core_read_description): Call
8339         i386_linux_read_description.
8340         * i386-linux-tdep.h (i386_linux_read_description): Declare.
8341         (tdesc_i386_linux, tdesc_i386_mmx_linux): Remove declarations.
8342         (tdesc_i386_avx_linux, tdesc_i386_mpx_linux): Likewise
8343         (tdesc_i386_avx_mpx_linux, tdesc_i386_avx_avx512_linux): Likewise.
8344         (tdesc_i386_avx_mpx_avx512_pku_linux): Likewise.
8345         * x86-linux-nat.c (x86_linux_read_description): Call
8346         i386_linux_read_description.
8347
8348 2017-07-26  Yao Qi  <yao.qi@linaro.org>
8349
8350         * NEWS: Mention it.
8351         * features/Makefile (%.c: %.xml): Pass the xml file name to
8352         command "maint print c-tdesc".
8353         * target-descriptions.c (maint_print_c_tdesc_cmd): Get file
8354         name from 'arg'.
8355
8356 2017-07-26  Yao Qi  <yao.qi@linaro.org>
8357
8358         * target-descriptions.c (target_desc): Add ctor and dtor.  Do
8359         in-class initialization.
8360         (tdesc_create_feature): Call new instead of XCNEW.
8361         (free_target_description): Ue delete.
8362
8363 2017-07-25  John Baldwin  <jhb@FreeBSD.org>
8364
8365         * configure.nat: Add "-lkvm" for NetBSD/sparc64 and fix typo.
8366
8367 2017-07-25  Yao Qi  <yao.qi@linaro.org>
8368
8369         * amd64-tdep.c (amd64_init_abi): Make argument default_tdesc
8370         constant.
8371         (amd64_x32_init_abi): Likewise.
8372         * amd64-tdep.h (amd64_init_abi): Update declaration.
8373         (amd64_x32_init_abi): Likewise.
8374
8375 2017-07-25  Yao Qi  <yao.qi@linaro.org>
8376
8377         PR tdep/21717
8378         * arm-linux-nat.c (arm_linux_fetch_inferior_registers): Update
8379         condition for FPSCR.
8380         (arm_linux_store_inferior_registers): Likewise.
8381
8382 2017-07-22  Tom Tromey  <tom@tromey.com>
8383
8384         * break-catch-syscall.c (struct catch_syscall_inferior_data)
8385         <syscalls_counts>: Now a std::vector.
8386         (get_catch_syscall_inferior_data): Use "new".
8387         (catch_syscall_inferior_data_cleanup): Use "delete".
8388         (insert_catch_syscall, remove_catch_syscall)
8389         (clear_syscall_counts): Update.
8390
8391 2017-07-22  Tom Tromey  <tom@tromey.com>
8392
8393         * break-catch-syscall.c (syscall_catchpoint)
8394         <syscalls_to_be_caught>: Now a std::vector<int>
8395         (~syscall_catchpoint): Remove.
8396         (insert_catch_syscall, remove_catch_syscall)
8397         (breakpoint_hit_catch_syscall, print_one_catch_syscall)
8398         (print_mention_catch_syscall, print_recreate_catch_syscall):
8399         Update.
8400         (create_syscall_event_catchpoint): Change type of "filter"
8401         parameter.
8402         (catch_syscall_split_args): Return a std::vector.
8403         (catch_syscall_command_1, catching_syscall_number_1): Update.
8404
8405 2017-07-22  Tom Tromey  <tom@tromey.com>
8406
8407         * break-catch-throw.c (struct exception_catchpoint)
8408         <exception_rx>: Now a std::string.
8409         (~exception_catchpoint): Remove.
8410         (print_one_detail_exception_catchpoint): Update.
8411         (handle_gnu_v3_exceptions): Change type of except_rx.
8412         (extract_exception_regexp): Return a std::string.
8413         (catch_exception_command_1): Update.
8414
8415 2017-07-22  Tom Tromey  <tom@tromey.com>
8416
8417         * break-catch-sig.c (gdb_signal_type): Remove typedef.
8418         (struct signal_catchpoint) <signals_to_be_caught>: Now a
8419         std::vector.
8420         <catch_all>: Now a bool.
8421         (~signal_catchpoint): Remove.
8422         (signal_catchpoint_insert_location)
8423         (signal_catchpoint_remove_location)
8424         (signal_catchpoint_breakpoint_hit, signal_catchpoint_print_one)
8425         (signal_catchpoint_print_mention)
8426         (signal_catchpoint_print_recreate)
8427         (signal_catchpoint_explains_signal): Update.
8428         (create_signal_catchpoint): Change type of "filter" and
8429         "catch_all".
8430         (catch_signal_split_args): Return a std::vector.  Change type of
8431         "catch_all".
8432         (catch_signal_command): Update.
8433
8434 2017-07-20  Pedro Alves  <palves@redhat.com>
8435
8436         * ada-lang.c (ada_language_defn): Make extern.
8437         (_initialize_ada_language): Remove add_language call.
8438         * c-lang.c (c_language_defn, cplus_language_defn)
8439         (asm_language_defn, minimal_language_defn): Make extern.
8440         (_initialize_c_language): Delete.
8441         * completer.c (compare_cstrings): Delete, moved to utils.h.
8442         * d-lang.c (d_language_defn): Make extern.
8443         (_initialize_d_language): Remove add_language calls.
8444         * defs.h (enum language): Add comment.
8445         * f-lang.c (f_language_defn): Make extern.
8446         (_initialize_f_language): Remove add_language call.
8447         * go-lang.c (go_language_defn): Make extern.
8448         (_initialize_go_language): Remove add_language call.
8449         * language.c: Include <algorithm>.
8450         (languages): Redefine as const array.
8451         (languages_size, languages_allocsize, DEFAULT_ALLOCSIZE): Delete.
8452         (set_language_command): Handle "local".  Use for-range loop.
8453         (set_language): Remove loop.
8454         (language_enum): Rewrite.
8455         (language_def, language_str): Remove loops.
8456         (add_language): Delete.
8457         (add_set_language_command): New, based on add_languages.
8458         (skip_language_trampoline): Adjust.
8459         (local_language_defn): Delete.
8460         (language_gdbarch_post_init): Adjust.
8461         (_initialize_language): Remove add_language calls.  Call
8462         add_set_language_command.
8463         * language.h (add_language): Delete.
8464         (auto_language_defn)
8465         (unknown_language_defn, minimal_language_defn, ada_language_defn)
8466         (asm_language_defn, c_language_defn, cplus_language_defn)
8467         (d_language_defn, f_language_defn, go_language_defn)
8468         (m2_language_defn, objc_language_defn, opencl_language_defn)
8469         (pascal_language_defn, rust_language_defn): Declare.
8470         * m2-lang.c (m2_language_defn): Make extern.
8471         (_initialize_m2_language): Remove add_language call.
8472         * objc-lang.c (objc_language_defn): Make extern.
8473         (_initialize_objc_language): Remove add_language call.
8474         * opencl-lang.c (opencl_language_defn): Make extern.
8475         (_initialize_opencl_language): Remove add_language call.
8476         * p-lang.c (pascal_language_defn): Make extern.
8477         (_initialize_pascal_language): Delete.
8478         * rust-lang.c (rust_language_defn): Make extern.
8479         (_initialize_rust_language): Delete.
8480         * utils.h (compare_cstrings): New static inline function.
8481
8482 2017-07-20  Pedro Alves  <palves@redhat.com>
8483
8484         * ada-lang.c (ada_to_fixed_type_1): Adjust.
8485         (get_var_value): Constify parameters.
8486         (get_int_var_value): Change prototype.
8487         (to_fixed_range_type): Adjust.
8488         * ada-lang.h (get_int_var_value): Change prototype.
8489
8490 2017-07-20  Pedro Alves  <palves@redhat.com>
8491
8492         * dwarf2read.c (dw2_lookup_symbol): Use
8493         SYMBOL_MATCHES_SEARCH_NAME.
8494         * psymtab.c (psym_lookup_symbol): Use SYMBOL_MATCHES_SEARCH_NAME.
8495
8496 2017-07-20  Pedro Alves  <palves@redhat.com>
8497
8498         * block.c (block_iter_name_step, block_iter_name_first)
8499         (block_iter_name_next): Delete.
8500         (block_lookup_symbol_primary): Adjust to use
8501         dict_iter_match_first/dict_iter_match_next.
8502         * block.h (block_iter_name_first, block_iter_name_next): Delete
8503         declarations.
8504         (ALL_BLOCK_SYMBOLS_WITH_NAME): Adjust to use
8505         dict_iter_match_first/dict_iter_match_next.
8506
8507 2017-07-20  Pedro Alves  <palves@redhat.com>
8508
8509         * cp-support.c (cp_find_first_component_aux): Add missing case for
8510         end of string.
8511
8512 2017-07-18  David Blaikie  <dblaikie@gmail.com>
8513
8514         * dwarf2read.c (create_cus_hash_table): Re-add lost initialization
8515         of dwo_cu's dwo_file.
8516
8517 2017-07-18  Yao Qi  <yao.qi@linaro.org>
8518
8519         * remote.c (store_registers_using_G): Remove one line comment.
8520
8521 2017-07-18  Yao Qi  <yao.qi@linaro.org>
8522
8523         * regcache.c (regcache_cpy): Simplify it.
8524         (regcache::cpy_no_passthrough): Remove it.
8525         * regcache.h (cpy_no_passthrough): Remove it.
8526         (regcache_dup, regcache_cpy): Update comments.
8527
8528 2017-07-18  Pedro Alves  <palves@redhat.com>
8529
8530         * remote-sim.c (sim_command_completer): Adjust to work with a
8531         completion_tracker instead of a VEC.
8532
8533 2017-07-17  Pedro Alves  <palves@redhat.com>
8534
8535         * completer.c (complete_source_filenames): New function.
8536         (complete_address_and_linespec_locations): New function.
8537         (location_completer): Use complete_address_and_linespec_locations.
8538         (completion_tracker::build_completion_result): Honor the tracker's
8539         request to suppress append.
8540         * completer.h (completion_tracker::suppress_append_ws)
8541         (completion_tracker::set_suppress_append_ws): New methods.
8542         (completion_tracker::m_suppress_append_ws): New field.
8543         (complete_source_filenames): New declaration.
8544         * linespec.c (linespec_complete_what): New.
8545         (struct ls_parser) <complete_what, completion_word,
8546         completion_quote_char, completion_quote_end, completion_tracker>:
8547         New fields.
8548         (string_find_incomplete_keyword_at_end): New.
8549         (linespec_lexer_lex_string): Record quote char.  If in completion
8550         mode, don't throw.
8551         (linespec_lexer_consume_token): Advance the completion word point.
8552         (linespec_lexer_peek_token): Save/restore completion info.
8553         (save_stream_and_consume_token): New.
8554         (set_completion_after_number): New.
8555         (linespec_parse_basic): Set what to complete next depending on
8556         token.  Handle function and label completions specially.
8557         (parse_linespec): Disable objc shortcut in completion mode.  Set
8558         what to complete next depending on token type.  Skip keyword if in
8559         completion mode.
8560         (complete_linespec_component, linespec_complete): New.
8561         * linespec.h (linespec_complete): Declare.
8562
8563 2017-07-17  Pedro Alves  <palves@redhat.com>
8564
8565         * linespec.c (linespec_lexer_lex_string, find_toplevel_char):
8566         Handle 'operator<' / 'operator<<'.
8567
8568 2017-07-17  Pedro Alves  <palves@redhat.com>
8569
8570         * completer.c (collect_explicit_location_matches): Handle
8571         MATCH_LABEL.
8572         (convert_explicit_location_to_linespec): New, factored out from
8573         ...
8574         (convert_explicit_location_to_sals): ... this.
8575         (complete_label): New.
8576         (linespec_complete_label, find_label_symbols_in_block): New.
8577         (find_label_symbols): Add completion_mode parameter and adjust to
8578         call find_label_symbols_in_block.
8579         * linespec.h (linespec_complete_label): Declare.
8580
8581 2017-07-17  Pedro Alves  <palves@redhat.com>
8582
8583         * ada-lang.c (ada_collect_symbol_completion_matches): Add
8584         complete_symbol_mode parameter.
8585         * cli/cli-cmds.c (complete_command): Get the completion result out
8586         of the handle_brkchars tracker if used a custom word point.
8587         * completer.c: Include "linespec.h".
8588         (enum explicit_location_match_type) <MATCH_LINE>: New enumerator.
8589         (advance_to_expression_complete_word_point): New.
8590         (completion_tracker::completes_to_completion_word): New.
8591         (complete_files_symbols): Pass down
8592         complete_symbol_mode::EXPRESSION.
8593         (explicit_options, probe_options): New.
8594         (collect_explicit_location_matches): Complete on the
8595         explictit_loc->foo instead of word.  Use
8596         linespec_complete_function.  Handle MATCH_LINE.  Handle offering
8597         keyword and options completions.
8598         (backup_text_ptr): Delete.
8599         (skip_keyword): New.
8600         (complete_explicit_location): Remove 'word' parameter.  Add
8601         language, quoted_arg_start and quoted_arg_end parameters.
8602         Rewrite, parsing left to right.
8603         (location_completer): Rewrite.
8604         (location_completer_handle_brkchars): New function.
8605         (symbol_completer): Pass down complete_symbol_mode::EXPRESSION.
8606         (enum complete_line_internal_reason): Adjust comments.
8607         (completion_tracker::discard_completions): New.
8608         (completer_handle_brkchars_func_for_completer): Handle
8609         location_completer.
8610         (gdb_custom_word_point_brkchars)
8611         (gdb_org_rl_basic_quote_characters): New.
8612         (gdb_completion_word_break_characters_throw)
8613         (completion_find_completion_word): Handle trackers that use a
8614         custom word point.
8615         (completion_tracker::advance_custom_word_point_by): New.
8616         (completion_tracker::build_completion_result): Don't rely on
8617         readline appending the quote char.
8618         (gdb_rl_attempted_completion_function_throw): Handle trackers that
8619         use a custom word point.
8620         (gdb_rl_attempted_completion_function): Restore
8621         rl_basic_quote_characters.
8622         * completer.h (class completion_tracker): Extend intro comment.
8623         (completion_tracker::set_quote_char)
8624         (completion_tracker::quote_char)
8625         (completion_tracker::set_use_custom_word_point)
8626         (completion_tracker::use_custom_word_point)
8627         (completion_tracker::custom_word_point)
8628         (completion_tracker::set_custom_word_point)
8629         (completion_tracker::advance_custom_word_point_by)
8630         (completion_tracker::completes_to_completion_word)
8631         (completion_tracker::discard_completions): New methods.
8632         (completion_tracker::m_quote_char)
8633         (completion_tracker::m_use_custom_word_point)
8634         (completion_tracker::m_custom_word_point): New fields.
8635         (advance_to_expression_complete_word_point): Declare.
8636         * f-lang.c (f_collect_symbol_completion_matches): Add
8637         complete_symbol_mode parameter.
8638         * language.h (struct language_defn)
8639         <la_collect_symbol_completion_matches>: Add complete_symbol_mode
8640         parameter.
8641         * linespec.c (linespec_keywords): Add NULL terminator.  Make extern.
8642         (linespec_complete_function): New function.
8643         (linespec_lexer_lex_keyword): Adjust.
8644         * linespec.h (linespec_keywords, linespec_complete_function): New
8645         declarations.
8646         * location.c (find_end_quote): New function.
8647         (explicit_location_lex_one): Add explicit_completion_info
8648         parameter.  Save quoting info.  Don't throw if being called for
8649         completion.  Don't handle Ada operators here.
8650         (is_cp_operator, skip_op_false_positives, first_of)
8651         (explicit_location_lex_one_function): New function.
8652         (string_to_explicit_location): Replace 'dont_throw' parameter with
8653         an explicit_completion_info pointer parameter.  Handle it.  Don't
8654         use explicit_location_lex_one to lex function names.  Use
8655         explicit_location_lex_one_function instead.
8656         * location.h (struct explicit_completion_info): New.
8657         (string_to_explicit_location): Replace 'dont_throw' parameter with
8658         an explicit_completion_info pointer parameter.
8659         * symtab.c (default_collect_symbol_completion_matches_break_on):
8660         Add complete_symbol_mode parameter.  Handle LINESPEC mode.
8661         (default_collect_symbol_completion_matches)
8662         (collect_symbol_completion_matches): Add complete_symbol_mode
8663         parameter.
8664         (collect_symbol_completion_matches_type): Pass down
8665         complete_symbol_mode::EXPRESSION.
8666         (collect_file_symbol_completion_matches): Add complete_symbol_mode
8667         parameter.  Handle LINESPEC mode.
8668         * symtab.h (complete_symbol_mode): New.
8669         (default_collect_symbol_completion_matches_break_on)
8670         (default_collect_symbol_completion_matches)
8671         (collect_symbol_completion_matches)
8672         (collect_file_symbol_completion_matches): Add complete_symbol_mode
8673         parameter.
8674
8675 2017-07-17  Pedro Alves  <palves@redhat.com>
8676
8677         * utils.c (enum class strncmp_iw_mode): New.
8678         (strcmp_iw): Rename to ...
8679         (strncmp_iw_with_mode): ... this.  Add string2_len and mode
8680         parameters.  Handle them.
8681         (strncmp_iw): New.
8682         (strcmp_iw): Reimplement as wrapper around strncmp_iw_with_mode.
8683         * utils.h (strncmp_iw): Declare.
8684         (strcmp_iw): Move describing comments here.
8685
8686 2017-07-17  Pedro Alves  <palves@redhat.com>
8687
8688         * c-exp.y (operator_stoken): Use CP_OPERATOR_LEN and
8689         CP_OPERATOR_STR.
8690         * c-typeprint.c (is_type_conversion_operator): Use
8691         CP_OPERATOR_STR.
8692         * cp-support.c (LENGTH_OF_OPERATOR): Delete.
8693         (cp_find_first_component_aux): Use CP_OPERATOR_STR and
8694         CP_OPERATOR_LEN.
8695         * cp-support.h (CP_OPERATOR_STR, CP_OPERATOR_LEN): New.
8696         * gnu-v2-abi.c (gnuv2_is_operator_name): Use CP_OPERATOR_STR.
8697         * gnu-v3-abi.c (gnuv3_is_operator_name): Use CP_OPERATOR_STR.
8698         * linespec.c (linespec_lexer_lex_string): Use CP_OPERATOR_LEN and
8699         CP_OPERATOR_STR.
8700         * location.c: Include "cp-support.h".
8701         (explicit_location_lex_one): Use CP_OPERATOR_LEN and
8702         CP_OPERATOR_STR.
8703         * symtab.c (operator_chars): Use CP_OPERATOR_STR and
8704         CP_OPERATOR_LEN.
8705
8706 2017-07-17  Pedro Alves  <palves@redhat.com>
8707
8708         * cli/cli-cmds.c (complete_command): Use a completion tracker
8709         along with completion_find_completion_word for handle_brkchars
8710         phase.
8711         * completer.c (RL_QF_SINGLE_QUOTE, RL_QF_DOUBLE_QUOTE)
8712         (RL_QF_BACKSLASH, RL_QF_OTHER_QUOTE): New.
8713         (struct gdb_rl_completion_word_info): New.
8714         (gdb_rl_find_completion_word): New.
8715         (completion_find_completion_word): New.
8716         * completer.h (completion_find_completion_word): Declare.
8717
8718 2017-07-17  Pedro Alves  <palves@redhat.com>
8719
8720         * ada-lang.c (symbol_completion_match): Adjust comments.
8721         (symbol_completion_add): Replace vector parameter with
8722         completion_tracker parameter.  Use it.
8723         (ada_make_symbol_completion_list): Rename to...
8724         (ada_collect_symbol_completion_matches): ... this.  Add
8725         completion_tracker parameter and use it.
8726         (ada_language_defn): Adjust.
8727         * break-catch-syscall.c (catch_syscall_completer): Adjust
8728         prototype and work with completion_tracker instead of VEC.
8729         * breakpoint.c (condition_completer): Adjust prototype and work
8730         with completion_tracker instead of VEC.
8731         * c-lang.c (c_language_defn, cplus_language_defn)
8732         (asm_language_defn, minimal_language_defn): Adjust to renames.
8733         * cli/cli-cmds.c (complete_command): Rework using
8734         completion_tracker.  Catch exceptions when completing.
8735         * cli/cli-decode.c (integer_unlimited_completer)
8736         (complete_on_cmdlist, complete_on_enum): Adjust prototype and work
8737         with completion_tracker instead of VEC.
8738         * command.h (struct completion_tracker): Forward declare.
8739         (completer_ftype, completer_handle_brkchars_ftype): Change
8740         types.
8741         (complete_on_cmdlist, complete_on_enum): Adjust.
8742         * completer.c: Include <algorithm>.
8743         (struct gdb_completer_state): New.
8744         (current_completion): New global.
8745         (readline_line_completion_function): Delete.
8746         (noop_completer, filename_completer)
8747         (filename_completer_handle_brkchars, complete_files_symbols)
8748         (linespec_location_completer): Adjust to work with a
8749         completion_tracker instead of a VEC.
8750         (string_or_empty): New.
8751         (collect_explicit_location_matches): Adjust to work with a
8752         completion_tracker instead of a VEC.
8753         (explicit_location_completer): Rename to ...
8754         (complete_explicit_location): ... this and adjust to work with a
8755         completion_tracker instead of a VEC.
8756         (location_completer): Adjust to work with a completion_tracker
8757         instead of a VEC.
8758         (add_struct_fields): Adjust to work with a completion_list instead
8759         of VEC.
8760         (expression_completer): Rename to ...
8761         (complete_expression): ... this and adjust to work with a
8762         completion_tracker instead of a VEC.  Use complete_files_symbols.
8763         (expression_completer): Reimplement on top of complete_expression.
8764         (symbol_completer): Adjust to work with a completion_tracker
8765         instead of a VEC.
8766         (enum complete_line_internal_reason): Add describing comments.
8767         (complete_line_internal_normal_command): Adjust to work with a
8768         completion_tracker instead of a VEC.
8769         (complete_line_internal): Rename to ...
8770         (complete_line_internal_1): ... this and adjust to work with a
8771         completion_tracker instead of a VEC.  Assert TEXT is NULL in the
8772         handle_brkchars phase.
8773         (new_completion_tracker): Delete.
8774         (complete_line_internal): Reimplement as TRY/CATCH wrapper around
8775         complete_line_internal_1.
8776         (free_completion_tracker): Delete.
8777         (INITIAL_COMPLETION_HTAB_SIZE): New.
8778         (completion_tracker::completion_tracker)
8779         (completion_tracker::~completion_tracker): New.
8780         (maybe_add_completion): Delete.
8781         (completion_tracker::maybe_add_completion)
8782         (completion_tracker::add_completion)
8783         (completion_tracker::add_completions): New.
8784         (throw_max_completions_reached_error): Delete.
8785         (complete_line): Adjust to work with a completion_tracker instead
8786         of a VEC.  Don't create a completion_tracker_t or check for max
8787         completions here.
8788         (command_completer, command_completer_handle_brkchars)
8789         (signal_completer, reg_or_group_completer_1)
8790         (reg_or_group_completer, default_completer_handle_brkchars):
8791         Adjust to work with a completion_tracker.
8792         (gdb_completion_word_break_characters_throw): New.
8793         (gdb_completion_word_break_characters): Reimplement.
8794         (line_completion_function): Delete.
8795         (completion_tracker::recompute_lowest_common_denominator)
8796         (expand_preserving_ws)
8797         (completion_tracker::build_completion_result)
8798         (completion_result::completion_result)
8799         (completion_result::completion_result)
8800         (completion_result::~completion_result)
8801         (completion_result::completion_result)
8802         (completion_result::release_match_list, compare_cstrings)
8803         (completion_result::sort_match_list)
8804         (completion_result::reset_match_list)
8805         (gdb_rl_attempted_completion_function_throw)
8806         (gdb_rl_attempted_completion_function): New.
8807         * completer.h (completion_list, struct completion_result)
8808         (class completion_tracker): New.
8809         (complete_line): Add completion_tracker parameter.
8810         (readline_line_completion_function): Delete.
8811         (gdb_rl_attempted_completion_function): New.
8812         (noop_completer, filename_completer, expression_completer)
8813         (location_completer, symbol_completer, command_completer)
8814         (signal_completer, reg_or_group_completer): Update prototypes.
8815         (completion_tracker_t, new_completion_tracker)
8816         (make_cleanup_free_completion_tracker): Delete.
8817         (enum maybe_add_completion_enum): Delete.
8818         (maybe_add_completion): Delete.
8819         (throw_max_completions_reached_error): Delete.
8820         * corefile.c (complete_set_gnutarget): Adjust to work with a
8821         completion_tracker instead of a VEC.
8822         * cp-abi.c (cp_abi_completer): Adjust to work with a
8823         completion_tracker instead of a VEC.
8824         * d-lang.c (d_language_defn): Adjust.
8825         * disasm.c (disassembler_options_completer): Adjust to work with a
8826         completion_tracker instead of a VEC.
8827         * f-lang.c (f_make_symbol_completion_list): Rename to ...
8828         (f_collect_symbol_completion_matches): ... this.  Adjust to work
8829         with a completion_tracker instead of a VEC.
8830         (f_language_defn): Adjust.
8831         * go-lang.c (go_language_defn): Adjust.
8832         * guile/scm-cmd.c (cmdscm_add_completion, cmdscm_completer):
8833         Adjust to work with a completion_tracker instead of a VEC.
8834         * infrun.c (handle_completer): Likewise.
8835         * interps.c (interpreter_completer): Likewise.
8836         * interps.h (interpreter_completer): Likewise.
8837         * language.c (unknown_language_defn, auto_language_defn)
8838         (local_language_defn): Adjust.
8839         * language.h (language_defn::la_make_symbol_completion_list):
8840         Rename to ...
8841         (language_defn::la_collect_symbol_completion_matches): ... this
8842         and adjust to work with a completion_tracker instead of a VEC.
8843         * m2-lang.c (m2_language_defn): Adjust.
8844         * objc-lang.c (objc_language_defn): Adjust.
8845         * opencl-lang.c (opencl_language_defn): Adjust.
8846         * p-lang.c (pascal_language_defn): Adjust.
8847         * python/py-cmd.c (cmdpy_completer_helper): Handle NULL word.
8848         (cmdpy_completer_handle_brkchars, cmdpy_completer): Adjust to work
8849         with a completion_tracker.
8850         * rust-lang.c (rust_language_defn): Adjust.
8851         * symtab.c (free_completion_list, do_free_completion_list)
8852         (return_val, completion_tracker): Delete.
8853         (completion_list_add_name, completion_list_add_symbol)
8854         (completion_list_add_msymbol, completion_list_objc_symbol)
8855         (completion_list_add_fields, add_symtab_completions): Add
8856         completion_tracker parameter and use it.
8857         (default_make_symbol_completion_list_break_on_1): Rename to...
8858         (default_collect_symbol_completion_matches_break_on): ... this.
8859         Add completion_tracker parameter and use it instead of allocating
8860         a completion tracker here.
8861         (default_make_symbol_completion_list_break_on): Delete old
8862         implementation.
8863         (default_make_symbol_completion_list): Delete.
8864         (default_collect_symbol_completion_matches): New.
8865         (make_symbol_completion_list): Delete.
8866         (collect_symbol_completion_matches): New.
8867         (make_symbol_completion_type): Rename to ...
8868         (collect_symbol_completion_matches_type): ... this.  Add
8869         completion_tracker parameter and use it instead of VEC.
8870         (make_file_symbol_completion_list_1): Rename to...
8871         (collect_file_symbol_completion_matches): ... this.  Add
8872         completion_tracker parameter and use it instead of VEC.
8873         (make_file_symbol_completion_list): Delete.
8874         (add_filename_to_list): Use completion_list instead of a VEC.
8875         (add_partial_filename_data::list): Now a completion_list.
8876         (make_source_files_completion_list): Work with a completion_list
8877         instead of a VEC.
8878         * symtab.h: Include "completer.h".
8879         (default_make_symbol_completion_list_break_on)
8880         (default_make_symbol_completion_list, make_symbol_completion_list)
8881         (make_symbol_completion_type, make_file_symbol_completion_list)
8882         (make_source_files_completion_list): Delete.
8883         (default_collect_symbol_completion_matches_break_on)
8884         (default_collect_symbol_completion_matches)
8885         (collect_symbol_completion_matches)
8886         (collect_symbol_completion_matches_type)
8887         (collect_file_symbol_completion_matches)
8888         (make_source_files_completion_list): New.
8889         * top.c (init_main): Don't install a rl_completion_entry_function
8890         hook.  Install a rl_attempted_completion_function hook instead.
8891         * tui/tui-layout.c (layout_completer): Adjust to work with a
8892         completion_tracker.
8893         * tui/tui-regs.c (tui_reggroup_completer):
8894         * tui/tui-win.c (window_name_completer, focus_completer)
8895         (winheight_completer): Adjust to work with a completion_tracker.
8896         * value.c: Include "completer.h".
8897         (complete_internalvar): Adjust to work with a completion_tracker.
8898         * value.h (complete_internalvar): Likewise.
8899
8900 2017-07-17  Pedro Alves  <palves@redhat.com>
8901
8902         * cli/cli-decode.c (set_cmd_completer_handle_brkchars): Adjust to
8903         renames.
8904         * cli/cli-decode.h (struct cmd_list_element) <completer>: Move
8905         comments to completer_ftype's declaration.
8906         <completer_handle_brkchars>: Change type to
8907         completer_handle_brkchars_ftype.
8908         * command.h (completer_ftype): Add describing comment and give
8909         names to parameters.
8910         (completer_ftype_void): Rename to ...
8911         (completer_handle_brkchars_ftype) ... this.  Add describing comment.
8912         (set_cmd_completer_handle_brkchars): Adjust.
8913         * completer.c (filename_completer_handle_brkchars): New function.
8914         (complete_line_internal_normal_command): New function, factored
8915         out from ...
8916         (complete_line_internal): ... here.
8917         (command_completer_handle_brkchars)
8918         (default_completer_handle_brkchars)
8919         (completer_handle_brkchars_func_for_completer): New functions.
8920         * completer.h (set_gdb_completion_word_break_characters): Delete
8921         declaration.
8922         (completer_handle_brkchars_func_for_completer): New declaration.
8923         * python/py-cmd.c (cmdpy_completer_handle_brkchars): Adjust to use
8924         completer_handle_brkchars_func_for_completer.
8925
8926 2017-07-17  Pedro Alves  <palves@redhat.com>
8927
8928         * completer.c (symbol_completer): New function, based on
8929         make_symbol_completion_list_fn.
8930         * completer.h (symbol_completer): New declaration.
8931         * guile/scm-cmd.c (cmdscm_completers): Adjust.
8932         * python/py-cmd.c (completers): Adjust.
8933         * symtab.c (make_symbol_completion_list_fn): Delete.
8934         * symtab.h (make_symbol_completion_list_fn): Delete.
8935         * cli/cli-decode.c (add_cmd): Adjust.
8936
8937 2017-07-17  Pedro Alves  <palves@redhat.com>
8938
8939         * Makefile.in (COMMON_OBS): Add filename-seen-cache.o.
8940         * dwarf2read.c: Include "filename-seen-cache.h".
8941         * dwarf2read.c (dwarf2_per_objfile) <filenames_cache>: New field.
8942         (dw2_map_symbol_filenames): Build and use a filenames_seen_cache.
8943         * filename-seen-cache.c: New file.
8944         * filename-seen-cache.h: New file.
8945         * symtab.c: Include "filename-seen-cache.h".
8946         (struct filename_seen_cache, INITIAL_FILENAME_SEEN_CACHE_SIZE)
8947         (create_filename_seen_cache, clear_filename_seen_cache)
8948         (delete_filename_seen_cache, filename_seen): Delete, parts moved
8949         to filename-seen-cache.h/filename-seen-cache.c.
8950         (output_source_filename, sources_info)
8951         (maybe_add_partial_symtab_filename)
8952         (make_source_files_completion_list): Adjust to use
8953         filename_seen_cache.
8954
8955 2017-07-17  Pedro Alves  <palves@redhat.com>
8956
8957         * dwarf2read.c (dwarf2_per_objfile): In-class initialize all
8958         fields.
8959         (dwarf2_per_objfile::dwarf2_per_objfile(objfile*, const
8960         dwarf2_debug_sections*)): New.
8961         (dwarf2_per_objfile::dwarf2_per_objfile(const
8962         dwarf2_per_objfile&)): Declare as deleted.
8963         (dwarf2_per_objfile::operator=): Declare as deleted.
8964         (dwarf2_per_objfile::dwarf2_per_objfile)
8965         (dwarf2_per_objfile::~dwarf2_per_objfile)
8966         (dwarf2_per_objfile::free_cached_comp_units): New.
8967         (dwarf2_has_info): dwarf2_per_objfile initialization code moved to
8968         ctor.  Call dwarf2_per_objfile's ctor manually.
8969         (dwarf2_locate_sections): Deleted/refactored as ...
8970         (dwarf2_per_objfile::locate_sections): ... this new method.
8971         (free_cached_comp_units): Defer to
8972         dwarf2_per_objfile::free_cached_comp_units.
8973         (dwarf2_free_objfile): Call dwarf2_per_objfile's dtor manually.
8974
8975 2017-07-14  Tom Tromey  <tom@tromey.com>
8976
8977         PR rust/21764:
8978         * rust-exp.y (convert_ast_to_expression): Add "want_type"
8979         parameter.
8980         <UNOP_SIZEOF>: Split into separate case.
8981         <UNOP_VAR_VALUE>: Handle want_type.  Add error case.
8982
8983 2017-07-14  Tom Tromey  <tom@tromey.com>
8984
8985         PR rust/21763:
8986         * symtab.c (symbol_matches_domain): Add language_rust to special
8987         case.
8988         * rust-exp.y (convert_ast_to_expression) <OP_VAR_VALUE>: Don't
8989         treat LOC_TYPEDEF symbols as variables.
8990
8991 2017-07-14  Pedro Alves  <palves@redhat.com>
8992
8993         * symtab.c (make_file_symbol_completion_list_1): Iterate over
8994         symtabs matching all symtabs with SRCFILE as file name instead of
8995         only considering the first hit, with lookup_symtab.
8996
8997 2017-07-14  Simon Marchi  <simon.marchi@ericsson.com>
8998
8999         * ax-gdb.c (gen_aggregate_elt_ref): Remove operand_name and
9000         operator_name parameters.
9001         (gen_expr): Update function call.
9002
9003 2017-07-14  Simon Marchi  <simon.marchi@ericsson.com>
9004
9005         * dwarf2loc.h (dwarf2_compile_expr_to_ax): Remove gdbarch
9006         parameter.
9007         * symtab.h (struct symbol_computed_ops::tracepoint_var_ref):
9008         Likewise.
9009         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove gdbarch
9010         parameter, use agent_expr::gdbarch instead, update function
9011         calls.
9012         (locexpr_tracepoint_var_ref): Likewise.
9013         (loclist_tracepoint_var_ref): Likewise.
9014         * ax-gdb.c (gen_trace_static_fields): Likewise.
9015         (gen_traced_pop): Likewise.
9016         (gen_frame_args_address): Likewise.
9017         (gen_frame_locals_address): Likewise.
9018         (gen_var_ref): Likewise.
9019         (gen_struct_ref_recursive): Likewise.
9020         (gen_static_field): Likewise.
9021         (gen_maybe_namespace_elt): Likewise.
9022         (gen_expr): Likewise.
9023         (gen_trace_for_var): Likewise.
9024         (gen_trace_for_expr): Likewise.
9025         (gen_trace_for_return_address): Likewise.
9026
9027 2017-07-14  Simon Marchi  <simon.marchi@ericsson.com>
9028
9029         * ax-gdb.c (gen_deref, gen_address_of): Remove unused ax
9030         parameter.
9031         (gen_struct_ref, gen_expr, gen_expr_binop_rest): Update call.
9032
9033 2017-07-14  Simon Marchi  <simon.marchi@ericsson.com>
9034
9035         * ax-gdb.c (gen_usual_unary): Remove exp parameter, get gdbarch
9036         from ax, update calls.
9037         (gen_usual_arithmetic): Likewise.
9038         (gen_integral_promotions): Likewise.
9039         (gen_bitfield_ref): Likewise.
9040         (gen_primitive_field): Likewise.
9041         (gen_struct_ref_recursive): Likewise.
9042         (gen_struct_ref): Likewise.
9043         (gen_maybe_namespace_elt): Likewise.
9044         (gen_struct_elt_for_reference): Likewise.
9045         (gen_namespace_elt): Likewise.
9046         (gen_aggregate_elt_ref): Likewise.
9047         (gen_expr): Get gdbarch from ax, update calls.
9048         (gen_expr_binop_rest): Likewise.
9049
9050 2017-07-13  Pedro Alves  <palves@redhat.com>
9051
9052         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Pass tdesc_amd64
9053         as default tdesc.
9054         * amd64-dicos-tdep.c (amd64_dicos_init_abi):
9055         * amd64-fbsd-tdep.c (amd64fbsd_init_abi):
9056         * amd64-linux-tdep.c (amd64_linux_init_abi): Pass
9057         tdesc_amd64_linux as default tdesc.  Get final tdesc from the
9058         tdep.
9059         (amd64_x32_linux_init_abi): Pass tdesc_x32_linux as default tdesc.
9060         Get final tdesc from the tdep.
9061         * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Pass tdesc_amd64 as
9062         default tdesc.
9063         * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
9064         * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
9065         * amd64-tdep.c (amd64_init_abi): Add 'default_tdesc' parameter.
9066         Use it as default tdesc.
9067         (amd64_x32_init_abi): Add 'default_tdesc' parameter, and pass it
9068         down to amd_init_abi.  No longer handle fallback tdesc here.
9069         * amd64-tdep.h (tdesc_x32): Declare.
9070         (amd64_init_abi, amd64_x32_init_abi): Add 'default_tdesc'
9071         parameter.
9072         * amd64-windows-tdep.c (amd64_windows_init_abi): Pass tdesc_amd64
9073         as default tdesc.
9074
9075 2017-07-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9076
9077         * s390-linux-tdep.c (s390_process_record): Add support for
9078         instructions new in arch12.
9079
9080 2017-07-11  John Baldwin  <jhb@FreeBSD.org>
9081
9082         * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers): Use
9083         PT_GETFSBASE and PT_GETGSBASE.
9084         (amd64bsd_store_inferior_registers): Use PT_SETFSBASE and
9085         PT_SETGSBASE.
9086
9087 2017-07-11  John Baldwin  <jhb@FreeBSD.org>
9088
9089         * features/Makefile (amd64.dat, amd64-avx.dat, amd64-mpx.dat)
9090         (amd64-avx-mpx.dat, amd64-avx-avx512.dat)
9091         (amd64-avx-mpx-avx512-pku.dat): Add i386/64bit-segments.xml in
9092         those rules.
9093         * features/i386/amd64-avx-avx512.xml: Add 64bit-segments.xml.
9094         * features/i386/amd64-avx-mpx-avx512-pku.xml: Add 64bit-segments.xml.
9095         * features/i386/amd64-avx-mpx.xml: Add 64bit-segments.xml.
9096         * features/i386/amd64-avx.xml: Add 64bit-segments.xml.
9097         * features/i386/amd64-mpx.xml: Add 64bit-segments.xml.
9098         * features/i386/amd64.xml: Add 64bit-segments.xml.
9099         * features/i386/amd64-avx-avx512.c: Regenerated.
9100         * features/i386/amd64-avx-mpx-avx512-pku.c: Regenerated.
9101         * features/i386/amd64-avx-mpx.c: Regenerated.
9102         * features/i386/amd64-avx.c: Regenerated.
9103         * features/i386/amd64-mpx.c: Regenerated.
9104         * features/i386/amd64.c: Regenerated.
9105         * regformats/i386/amd64-avx-avx512.dat: Regenerated.
9106         * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
9107         * regformats/i386/amd64-avx-mpx.dat: Regenerated.
9108         * regformats/i386/amd64-avx.dat: Regenerated.
9109         * regformats/i386/amd64-mpx.dat: Regenerated.
9110         * regformats/i386/amd64.dat: Regenerated.
9111
9112 2017-07-10  Yao Qi  <yao.qi@linaro.org>
9113
9114         * features/i386/amd64-avx-avx512-linux.c: Re-generated.
9115         * features/i386/amd64-avx-mpx-avx512-pku-linux.c: Re-generated.
9116
9117 2017-07-10  Anton Kolesov  <Anton.Kolesov@synopsys.com>
9118
9119         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add setenv and
9120         unsetenv.
9121         * gnulib/aclocal.m4: Regenerate.
9122         * gnulib/config.in: Regenerate.
9123         * gnulib/configure: Regenerate.
9124         * gnulib/import/Makefile.am: Regenerate.
9125         * gnulib/import/Makefile.in: Regenerate.
9126         * gnulib/import/m4/gnulib-cache.m4: Regenerate.
9127         * gnulib/import/m4/gnulib-comp.m4: Regenerate.
9128         * gnulib/import/m4/environ.m4: New file.
9129         * gnulib/import/m4/setenv.m4: New file.
9130         * gnulib/import/setenv.c: New file.
9131         * gnulib/import/unsetenv.c: New file.
9132
9133 2017-07-09  Simon Marchi  <simon.marchi@ericsson.com>
9134
9135         * compile/compile-loc2c.c (do_compile_dwarf_expr_to_c): Read
9136         address when op is DW_OP_addr.
9137
9138 2017-07-09  Tom Tromey  <tom@tromey.com>
9139
9140         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Reverse size
9141         check and apply to outer type.
9142
9143 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
9144
9145         * fbsd-tdep.c (LWPINFO_OFFSET, LWPINFO_PL_FLAGS)
9146         (LWPINFO64_PL_SIGINFO, LWPINFO32_PL_SIGINFO, PL_FLAG_SI)
9147         (SIZE64_SIGINFO_T, SIZE32_SIGINFO_T, fbsd_core_xfer_siginfo): New.
9148         (fbsd_init_abi): Install gdbarch "core_xfer_siginfo" method.
9149
9150 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
9151
9152         * fbsd-tdep.c (fbsd_core_thread_name): Use thread_section_name.
9153
9154 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
9155
9156         * corelow.c (get_core_siginfo): Remove.
9157         (core_xfer_partial): Use the gdbarch "core_xfer_siginfo" method
9158         instead of get_core_siginfo.
9159         * gdbarch.sh (core_xfer_siginfo): New gdbarch callback.
9160         * gdbarch.h: Re-generate.
9161         * gdbarch.c: Re-generate.
9162         * linux-tdep.c (linux_core_xfer_siginfo): New.
9163         (linux_init_abi): Install gdbarch "core_xfer_siginfo" method.
9164
9165 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
9166
9167         * corelow.c (thread_section_name): Move to ...
9168         * gdbcore.h (thread_section_name): ... here.
9169
9170 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
9171
9172         * fbsd-nat.c [PT_LWPINFO && __LP64__] (union sigval32)
9173         (struct siginfo32): New.
9174         [PT_LWPINFO] (fbsd_siginfo_size, fbsd_convert_siginfo): New.
9175         (fbsd_xfer_partial) [PT_LWPINFO]: Handle TARGET_OBJECT_SIGNAL_INFO
9176         via ptrace(PT_LWPINFO).
9177
9178 2017-07-07  John Baldwin  <jhb@FreeBSD.org>
9179
9180         * fbsd-tdep.c (fbsd_gdbarch_data_handle, struct fbsd_gdbarch_data)
9181         (init_fbsd_gdbarch_data, get_fbsd_gdbarch_data)
9182         (fbsd_get_siginfo_type): New.
9183         (fbsd_init_abi): Install gdbarch "get_siginfo_type" method.
9184         (_initialize_fbsd_tdep): New.
9185
9186 2017-07-06  David Blaikie  <dblaikie@gmail.com>
9187
9188         * dwarf2read.c (struct dwo_file): Use a htab of dwo_unit* (rather than
9189         a singular dwo_unit*) to support multiple CUs in the same way that
9190         multiple TUs are supported.
9191         (create_cus_hash_table): Replace create_dwo_cu with a function for
9192         parsing multiple CUs from a DWO file.
9193         (open_and_init_dwo_file): Use create_cus_hash_table rather than
9194         create_dwo_cu.
9195         (lookup_dwo_cutu): Lookup CU in the hash table in the dwo_file with
9196         htab_find, rather than comparing the signature to a singleton CU in
9197         the dwo_file.
9198
9199 2017-07-06  Pedro Alves  <palves@redhat.com>
9200
9201         * python/py-unwind.c (pyuw_dealloc_cache): Fix for loop condition.
9202
9203 2017-07-04  Pedro Alves  <palves@redhat.com>
9204
9205         * gdbtypes.c (recursive_dump_type): Don't reference TYPE_STATIC.
9206         * gdbtypes.h (TYPE_STATIC): Delete.
9207         (struct fn_field) <is_public, is_abstract, is_static, is_final,
9208         is_synchronized, is_native>: Delete.
9209         <dummy>: Bump.
9210         (TYPE_FN_FIELD_PUBLIC, TYPE_FN_FIELD_STATIC, TYPE_FN_FIELD_FINAL)
9211         (TYPE_FN_FIELD_SYNCHRONIZED, TYPE_FN_FIELD_NATIVE)
9212         (TYPE_FN_FIELD_ABSTRACT): Delete.
9213
9214 2017-07-03  Simon Marchi  <simon.marchi@ericsson.com>
9215
9216         * buffer.h (buffer_finish): Fix spelling mistakes.
9217
9218 2017-07-01  Eli Zaretskii  <eliz@gnu.org>
9219
9220         * .dir-locals.el: Automatically switch to C-style comments in
9221         versions of Emacs that support the feature.
9222
9223 2017-06-30  Sergio Durigan Junior  <sergiodj@redhat.com>
9224             Pedro Alves  <palves@redhat.com>
9225
9226         PR cli/21688
9227         * cli/cli-script.c (command_name_equals_not_inline): Remove function.
9228         (process_next_line): New variable 'inline_cmd'.
9229         Adjust 'if' clauses for "python", "compile" and "guile" to use
9230         'command_name_equals' and check for '!inline_cmd'.
9231
9232 2017-06-30  Sergio Durigan Junior  <sergiodj@redhat.com>
9233
9234         PR cli/21688
9235         * cli/cli-script.c (command_name_equals_not_inline): New function.
9236         (process_next_line): Adjust 'if' clauses for "python", "compile"
9237         and "guile" to use command_name_equals_not_inline.
9238
9239 2017-06-29  Pedro Alves  <palves@redhat.com>
9240
9241         * completer.c (expression_completer): Call
9242         linespec_location_completer instead of location_completer.
9243
9244 2017-06-29  Pedro Alves  <palves@redhat.com>
9245
9246         * completer.c (expression_completer): Remove code that recomputes
9247         'text' from 'word'.
9248
9249 2017-06-29  Yao Qi  <yao.qi@linaro.org>
9250
9251         * regformats/regdat.sh: Generate code with
9252         "ifndef IN_PROCESS_AGENT".
9253
9254 2017-06-28  Pedro Alves  <palves@redhat.com>
9255
9256         * command.h: Include "common/scoped_restore.h".
9257
9258 2017-06-28  Yao Qi  <yao.qi@linaro.org>
9259
9260         * mi/mi-cmd-break.c (mi_argv_to_format): Use obstack_grow_str
9261         instead of obstack_grow.
9262
9263 2017-06-28  Doug Gilmore  <Doug.Gilmore@imgtec.com>
9264
9265         PR gdb/21337
9266         * symfile.c (reread_symbols): Call objfiles_changed just before
9267         read_symbols.
9268
9269 2017-06-27  Pedro Alves  <palves@redhat.com>
9270
9271         * symtab.c (COMPLETION_LIST_ADD_SYMBOL)
9272         (MCOMPLETION_LIST_ADD_SYMBOL): Delete macros, replace with ...
9273         (completion_list_add_symbol, completion_list_add_msymbol):
9274         ... these new functions.
9275         (add_symtab_completions)
9276         (default_make_symbol_completion_list_break_on_1): Adjust.
9277
9278 2017-06-27  Pedro Alves  <palves@redhat.com>
9279
9280         * objfiles.c (get_objfile_bfd_data): Call bfd_alloc instead of
9281         bfd_zalloc.  Call objfile_per_bfd_storage's ctor.
9282         (free_objfile_per_bfd_storage): Call objfile_per_bfd_storage's
9283         dtor.
9284         * objfiles.h (objfile_per_bfd_storage): Add ctor.  Make
9285         'storage_obstack' field an auto_obstack.  In-class initialize all
9286         non-bitfield fields.  Make minsyms_read bool.
9287         * symfile.c (read_symbols): Adjust.
9288
9289 2017-06-27  Alan Hayward  <alan.hayward@arm.com>
9290
9291         * remote-sim.c (gdbsim_fetch_register): Use byte_vector.
9292         (gdbsim_store_register): Likewise.
9293
9294 2017-06-27  Pedro Alves  <palves@redhat.com>
9295
9296         * c-exp.y (name_obstack): Now an auto_obstack.
9297         (yylex): Use auto_obstack::clear.
9298         (c_parse): Use auto_obstack::clear instead of reinitializing and
9299         freeing the obstack.
9300         * c-lang.c (evaluate_subexp_c): Use auto_obstack.
9301         * d-exp.y (name_obstack): Now an auto_obstack.
9302         (yylex): Use auto_obstack::clear.
9303         (d_parse): Use auto_obstack::clear instead of reinitializing and
9304         freeing the obstack.
9305         * dwarf2loc.c (fetch_const_value_from_synthetic_pointer): Use
9306         auto_obstack.
9307         * dwarf2read.c (create_addrmap_from_index)
9308         (dwarf2_build_psymtabs_hard)
9309         (update_enumeration_type_from_children): Likewise.
9310         * gdb_obstack.h (auto_obstack): New type.
9311         * go-exp.y (name_obstack): Now an auto_obstack.
9312         (build_packaged_name): Use auto_obstack::clear.
9313         (go_parse): Use auto_obstack::clear instead of reinitializing and
9314         freeing the obstack.
9315         * linux-tdep.c (linux_make_mappings_corefile_notes): Use
9316         auto_obstack.
9317         * printcmd.c (printf_wide_c_string, ui_printf): Use auto_obstack.
9318         * rust-exp.y (work_obstack): Now an auto_obstack.
9319         (rust_parse, rust_lex_tests): Use auto_obstack::clear instead of
9320         reinitializing and freeing the obstack.
9321         * utils.c (do_obstack_free, make_cleanup_obstack_free): Delete.
9322         (host_char_to_target): Use auto_obstack.
9323         * utils.h (make_cleanup_obstack_free): Delete declaration.
9324         * valprint.c (generic_emit_char, generic_printstr): Use
9325         auto_obstack.
9326
9327 2017-06-27  Simon Marchi  <simon.marchi@ericsson.com>
9328
9329         * darwin-nat.c (darwin_check_new_threads): Don't handle dummy
9330         thread.
9331         (darwin_init_thread_list): Don't update dummy thread.
9332         (darwin_create_inferior, darwin_attach): Don't add a dummy thread.
9333
9334 2017-06-26  Simon Marchi  <simon.marchi@ericsson.com>
9335
9336         * record-full.c (netorder16): Remove.
9337
9338 2017-06-26  Simon Marchi  <simon.marchi@ericsson.com>
9339
9340         * common/diagnostics.h: Define macros for GCC.
9341         (DIAGNOSTIC_IGNORE_UNUSED_FUNCTION): New macro.
9342         * common/vec.h: Include diagnostics.h.
9343         (DIAGNOSTIC_IGNORE_UNUSED_VEC_FUNCTION): New macro.
9344         (DEF_VEC_I, DEF_VEC_P, DEF_VEC_O): Ignore -Wunused-function
9345         warning.
9346
9347 2017-06-26  Simon Marchi  <simon.marchi@ericsson.com>
9348
9349         * common/diagnostics.h (DIAGNOSTIC_IGNORE_DEPRECATED_REGISTER):
9350         New macro.
9351         * ada-lex.l: Ignore deprecated register warnings.
9352
9353 2017-06-25  Simon Marchi  <simon.marchi@ericsson.com>
9354
9355         * main.c (get_init_files): Replace "SYSTEM_GDBINIT +
9356         datadir_len" with "&SYSTEM_GDBINIT[datadir_len]".
9357
9358 2017-06-25  Simon Marchi  <simon.marchi@ericsson.com>
9359
9360         * dtrace-probe.c (dtrace_process_dof_probe): Put semi-colon on
9361         its own line.
9362
9363 2017-06-25  Simon Marchi  <simon.marchi@ericsson.com>
9364
9365         * nat/x86-dregs.c (x86_show_dr): Print registers one per line.
9366
9367 2017-06-23  Alan Hayward  <alan.hayward@arm.com>
9368
9369         * xtensa-tdep.c (XTENSA_MAX_REGISTER_SIZE): Add.
9370         (xtensa_register_write_masked): Use XTENSA_MAX_REGISTER_SIZE.
9371         (xtensa_register_read_masked): Likewise.
9372
9373 2017-06-22  Sergio Durigan Junior  <sergiodj@redhat.com>
9374
9375         * common/environ.c (gdb_environ::unset): Update comment.
9376
9377 2017-06-22  Alan Hayward  <alan.hayward@arm.com>
9378
9379         * python/py-unwind.c (pyuw_sniffer): Allocate space for
9380         registers.
9381
9382 2017-06-22  Alan Hayward  <alan.hayward@arm.com>
9383
9384         * record-full.c (record_full_exec_insn): Use byte_vector.
9385
9386 2017-06-22  Yao Qi  <yao.qi@linaro.org>
9387
9388         * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Regenerated.
9389         * regformats/i386/amd64-avx-mpx-avx512-pku.dat: Regenerated.
9390
9391 2017-06-22  Alan Hayward  <alan.hayward@arm.com>
9392
9393         * remote.c (cached_reg): Move from here...
9394         * regcache.h (cached_reg): ...to here.
9395         * python/py-unwind.c (struct reg_info): Remove.
9396         (cached_frame_info): Use cached_reg_t.
9397         (pyuw_prev_register): Likewise.
9398         (pyuw_sniffer): Use cached_reg_t and allocate registers.
9399         (pyuw_dealloc_cache): Free all registers.
9400
9401 2017-06-22  Pedro Alves  <palves@redhat.com>
9402             Simon Marchi  <simon.marchi@ericsson.com>
9403
9404         * unittests/environ-selftests.c (run_tests): Ignore -Wself-move
9405         warning.
9406         * common/diagnostics.h: New file.
9407
9408 2017-06-22  Pedro Alves  <palves@redhat.com>
9409
9410         * common/agent.h: Add include guards.
9411
9412 2017-06-21  Simon Marchi  <simon.marchi@ericsson.com>
9413
9414         * target.h (struct target_ops) <to_xfer_partial>: Update doc to
9415         talk about addressable units instead of bytes.
9416
9417 2017-06-20  Sergio Durigan Junior  <sergiodj@redhat.com>
9418
9419         * common/environ.c (gdb_environ::unset): Use '::iterator' instead
9420         of '::const_iterator'.
9421
9422 2017-06-20  Sergio Durigan Junior  <sergiodj@redhat.com>
9423
9424         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
9425         'unittests/environ-selftests.c'.
9426         (SUBDIR_UNITTESTS_OBS): Add 'environ-selftests.o'.
9427         * charset.c (find_charset_names): Declare object 'iconv_env'.
9428         Update code to use 'iconv_env' object.  Remove call to
9429         'free_environ'.
9430         * common/environ.c: Include <utility>.
9431         (make_environ): Delete function.
9432         (free_environ): Delete function.
9433         (gdb_environ::clear): New function.
9434         (gdb_environ::operator=): New function.
9435         (gdb_environ::get): Likewise.
9436         (environ_vector): Delete function.
9437         (set_in_environ): Delete function.
9438         (gdb_environ::set): New function.
9439         (unset_in_environ): Delete function.
9440         (gdb_environ::unset): New function.
9441         (gdb_environ::envp): Likewise.
9442         * common/environ.h: Include <vector>.
9443         (struct gdb_environ): Delete; transform into...
9444         (class gdb_environ): ... this class.
9445         (free_environ): Delete prototype.
9446         (init_environ, get_in_environ, set_in_environ, unset_in_environ,
9447         environ_vector): Likewise.
9448         * infcmd.c (run_command_1): Update code to call
9449         'envp' from 'gdb_environ' class.
9450         (environment_info): Update code to call methods from 'gdb_environ'
9451         class.
9452         (unset_environment_command): Likewise.
9453         (path_info): Likewise.
9454         (path_command): Likewise.
9455         * inferior.c (inferior::~inferior): Delete call to 'free_environ'.
9456         (inferior::inferior): Initialize 'environment' using the host's
9457         information.
9458         * inferior.h: Remove forward declaration of 'struct gdb_environ'.
9459         Include "environ.h".
9460         (class inferior) <environment>: Change type from 'struct
9461         gdb_environ' to 'gdb_environ'.
9462         * mi/mi-cmd-env.c (mi_cmd_env_path): Update code to call
9463         methods from 'gdb_environ' class.
9464         * solib.c (solib_find_1): Likewise
9465         * unittests/environ-selftests.c: New file.
9466
9467 2017-06-20  Yao Qi  <yao.qi@linaro.org>
9468
9469         * features/i386/i386-linux.xml: Exchange the order of including
9470         32bit-linux.xml and 32bit-sse.xml.
9471         * features/i386/i386-linux.c: Regenerated.
9472
9473 2017-06-20  Yao Qi  <yao.qi@linaro.org>
9474
9475         * target-descriptions.c (tdesc_reg): Add ctor, dtor.
9476         Delete copy ctor and assignment operator.
9477         (tdesc_type): Likewise.
9478         (tdesc_feature): Likewise.
9479         (tdesc_free_reg): Remove.
9480         (tdesc_create_reg): Use new.
9481         (tdesc_free_type): Remove.
9482         (tdesc_create_vector): Use new.
9483         (tdesc_create_union): Likewise.
9484         (tdesc_create_flags): Likewise.
9485         (tdesc_create_enum): Likewise.
9486         (tdesc_free_feature): Delete.
9487         (free_target_description): Use delete.
9488
9489 2017-06-19  John Baldwin  <jhb@FreeBSD.org>
9490
9491         * mips-tdep.c (print_gp_register_row): Don't error for unavailable
9492         registers.
9493
9494 2017-06-19  Pedro Alves  <palves@redhat.com>
9495
9496         * dwarf2read.c (write_psymtabs_to_index): Construct file_closer
9497         after gdb::unlinker.
9498
9499 2017-06-19  Sergio Durigan Junior  <sergiodj@redhat.com>
9500
9501         * mi/mi-cm-env.c (_initialize_mi_cmd_env): Use getenv instead of
9502         gdb_environ to access an environment variable.
9503
9504 2017-06-18  Thomas Petazzoni  <thomas.petazzoni@free-electrons.com>
9505
9506         * nat/linux-ptrace.c (linux_fork_to_function): Add cast to
9507         gdb_byte*.
9508
9509 2017-06-17  Simon Marchi  <simon.marchi@ericsson.com>
9510
9511         * nat/fork-inferior.h (trace_start_error): Add ATTRIBUTE_PRINTF.
9512
9513 2017-06-17  Simon Marchi  <simon.marchi@ericsson.com>
9514
9515         * configure: Re-generate.
9516         * warning.m4 (build_warnings): Add -Wno-mismatched-tags.
9517
9518 2017-06-17  Simon Marchi  <simon.marchi@ericsson.com>
9519
9520         * configure: Re-generate.
9521         * warning.m4: Pass -Werror to compiler when checking for
9522         supported warning flags.
9523
9524 2017-06-17  Simon Marchi  <simon.marchi@ericsson.com>
9525
9526         * Makefile.in (COMPILE.pre): Add "-x c++".
9527
9528 2017-06-16  Alan Hayward  <alan.hayward@arm.com>
9529             Pedro Alves  <palves@redhat.com>
9530             Yao Qi  <yao.qi@linaro.org>
9531
9532         * defs.h (RequireLongest): New.
9533         (extract_integer): Declare function template.
9534         (extract_signed_integer): Remove the declaration, but define it
9535         static inline.
9536         (extract_unsigned_integer): Likewise.
9537         (store_integer): Declare function template.
9538         (store_signed_integer): Remove the declaration, but define it
9539         static inline.
9540         (store_unsigned_integer): Likewise.
9541         * findvar.c (extract_integer): New function template.
9542         (extract_signed_integer): Remove.
9543         (extract_unsigned_integer): Remove.
9544         (extract_integer<LONGEST>, extract_integer<ULONGEST>): Explicit
9545         instantiations.
9546         (store_integer): New function template.
9547         (store_signed_integer): Remove.
9548         (store_unsigned_integer): Remove.
9549         (store_integer): Explicit instantiations.
9550         * regcache.c (regcache_raw_read_signed): Update.
9551         (regcache::raw_read): New function.
9552         (regcache::raw_read_signed): Remove.
9553         (regcache::raw_read_unsigned): Remove.
9554         (regcache_raw_read_unsigned): Update.
9555         (regcache_raw_write_unsigned): Update.
9556         (regcache::raw_write_signed): Remove.
9557         (regcache::raw_write): New function.
9558         (regcache_cooked_read_signed): Update.
9559         (regcache::raw_write_unsigned): Remove.
9560         (regcache::cooked_read_signed): Remove.
9561         (regcache_cooked_read_unsigned): Update.
9562         (regcache::cooked_read_unsigned): Remove.
9563         (regcache_cooked_write_signed): Update.
9564         (regcache_cooked_write_unsigned): Update.
9565         * regcache.h (regcache) <raw_read_signed>: Remove.
9566         <raw_write_signed, raw_read_unsigned, raw_write_unsigned>: Remove.
9567         <raw_read, raw_write>: New.
9568         <cooked_read_signed, cooked_write_signed>: Remove.
9569         <cooked_write_unsigned, cooked_read_unsigned>: Remove.
9570         <cooked_read, cooked_write>: New.
9571         * sh64-tdep.c (sh64_pseudo_register_read): Update.
9572         (sh64_pseudo_register_write): Update.
9573
9574 2017-06-16  Anton Kolesov  <anton.kolesov@synopsys.com>
9575
9576         * arc-tdep.c (arc_disassembler_options): New variable.
9577         (arc_gdbarch_init): Set and use it. Use arc_delayed_print_insn instead
9578         of default_print_insn.
9579         (arc_delayed_print_insn): Set info->section when needed,
9580         use default_print_insn to retrieve a disassembler.
9581
9582 2017-06-14  Sergio Durigan Junior  <sergiodj@redhat.com>
9583
9584         PR gdb/21574
9585         * infcmd.c (_initialize_infcmd): Expand "help run" documentation
9586         to mention $SHELL and startup-with-shell.
9587
9588 2017-06-14  Max Filippov  <jcmvbkbc@gmail.com>
9589
9590         * MAINTAINERS: Move Maxim Grigoriev to the Past Maintainers.
9591
9592 2017-06-14  Yao Qi  <yao.qi@linaro.org>
9593
9594         * aarch64-tdep.c (aarch64_gdb_print_insn): Call
9595         default_print_insn instead of print_insn_aarch64.
9596         * arm-tdep.c (gdb_print_insn_arm): Call
9597         default_print_insn instead of print_insn_big_arm
9598         and print_insn_little_arm.
9599         * i386-tdep.c (i386_print_insn): Call default_print_insn
9600         instead of print_insn_i386.
9601         * ia64-tdep.c (ia64_print_insn): Call
9602         default_print_insn instead of print_insn_ia64.
9603         * mips-tdep.c (gdb_print_insn_mips): Call
9604         default_print_insn instead of print_insn_big_mips
9605         and print_insn_little_mips.
9606         * spu-tdep.c (gdb_print_insn_spu): Call default_print_insn
9607         instead of print_insn_spu.
9608
9609 2017-06-14  Pedro Alves  <palves@redhat.com>
9610
9611         * ada-lang.c: Include "common/byte-vector.h".
9612         (ada_value_primitive_packed_val): Use gdb::byte_vector.
9613         * charset.c (wchar_iterator::iterate): Resize the vector instead
9614         of reserving it.
9615         * common/byte-vector.h: Include "common/def-vector.h".
9616         (wchar_iterator::m_out): Now a gdb::def_vector<gdb_wchar_t>.
9617         * cli/cli-dump.c: Include "common/byte-vector.h".
9618         (dump_memory_to_file, restore_binary_file): Use gdb::byte_vector.
9619         * common/byte-vector.h: New file.
9620         * common/def-vector.h: New file.
9621         * common/default-init-alloc.h: New file.
9622         * dwarf2loc.c: Include "common/byte-vector.h".
9623         (rw_pieced_value): Use gdb::byte_vector, and resize the vector
9624         instead of reserving it.
9625         * dwarf2read.c: Include "common/byte-vector.h".
9626         (data_buf::m_vec): Now a gdb::byte_vector.
9627         * gdb_regex.c: Include "common/def-vector.h".
9628         (compiled_regex::compiled_regex): Use gdb::def_vector<char>.
9629         * mi/mi-main.c: Include "common/byte-vector.h".
9630         (mi_cmd_data_read_memory): Use gdb::byte_vector.
9631         * printcmd.c: Include "common/byte-vector.h".
9632         (print_scalar_formatted): Use gdb::byte_vector.
9633         * valprint.c: Include "common/byte-vector.h".
9634         (maybe_negate_by_bytes, print_decimal_chars): Use
9635         gdb::byte_vector.
9636
9637 2017-06-13  Simon Marchi  <simon.marchi@ericsson.com>
9638
9639         * darwin-nat.c: Include "nat/fork-inferior.h".
9640
9641 2017-06-13  Simon Marchi  <simon.marchi@ericsson.com>
9642
9643         * configure.nat: Factor out Darwin bits that are not
9644         architecture-specific.  Add fork-inferior.o.
9645
9646 2017-06-13  Simon Marchi  <simon.marchi@ericsson.com>
9647
9648         * configure.nat: Factor out AIX bits that are not
9649         architecture-specific.  Add fork-inferior.o.
9650
9651 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9652
9653         * dwarf2loc.c (rw_pieced_value): New.  Merge logic from...
9654         (read_pieced_value, write_pieced_value): ...here.  Reduce to
9655         wrappers that just call rw_pieced_value.
9656
9657 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9658
9659         * dwarf2loc.c (write_pieced_value): When writing the data for a
9660         memory piece, use write_memory_with_notification instead of
9661         write_memory.
9662
9663 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9664
9665         * valops.c (read_value_memory): Change embedded_offset to
9666         represent a bit offset instead of a byte offset.
9667         * value.h (read_value_memory): Adjust comment.
9668
9669 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9670
9671         * dwarf2loc.c (read_pieced_value): Remove unnecessary variables
9672         dest_offset_bits and source_offset_bits.
9673         (write_pieced_value): Likewise.
9674
9675 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9676
9677         * dwarf2loc.c (read_pieced_value): Respect the piece offset, as
9678         given by DW_OP_bit_piece.
9679         (write_pieced_value): Likewise.
9680
9681 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9682
9683         * dwarf2loc.c (read_pieced_value): Move the buffer allocation and
9684         some other preparations to the places where sufficient information
9685         is available.
9686         (write_pieced_value): Likewise.
9687
9688 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9689
9690         * dwarf2loc.c (bits_to_bytes): New function.
9691         (read_pieced_value): Fix offset calculations for register pieces
9692         on big-endian targets.
9693         (write_pieced_value): Likewise.
9694
9695 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9696
9697         * dwarf2loc.c (read_pieced_value): Remove buffer_size variable.
9698         (write_pieced_value): Likewise.
9699
9700 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9701
9702         * dwarf2loc.c (write_pieced_value): When writing to a bit-field,
9703         transfer the source value's least significant bits, instead of its
9704         lowest-addressed ones.  Rename type_len to max_offset.
9705         (read_pieced_value): Mirror above changes to write_pieced_value as
9706         applicable.
9707
9708 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9709
9710         * dwarf2loc.c (write_pieced_value): In DWARF_VALUE_MEMORY,
9711         truncate full bytes from dest_offset_bits before using it as an
9712         offset into the buffer.
9713
9714 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9715
9716         * dwarf2loc.c (write_pieced_value): Include transfer size in
9717         byte-wise check.
9718
9719 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9720
9721         * dwarf2loc.c (write_pieced_value): Fix copy/paste error in the
9722         calculation of this_size.
9723
9724 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9725
9726         * dwarf2loc.c (read_pieced_value): Respect parent value's offset
9727         when targeting a bit-field.
9728         (write_pieced_value): Likewise.
9729
9730 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9731
9732         * dwarf2loc.c (struct piece_closure) <addr_size>: Remove field.
9733         (allocate_piece_closure): Drop addr_size parameter.
9734         (dwarf2_evaluate_loc_desc_full): Adjust call to
9735         allocate_piece_closure.
9736
9737 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9738
9739         PR gdb/21226
9740         * dwarf2loc.c (read_pieced_value): Anchor stack value pieces at
9741         the LSB end, independent of endianness.
9742
9743 2017-06-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
9744
9745         * dwarf2loc.c (write_pieced_value): Fix order of calculations for
9746         size capping.
9747
9748 2017-06-13  Yao Qi  <yao.qi@linaro.org>
9749
9750         * mips-linux-nat.c: Move include features/mips*-linux.c to
9751         mips-linux-tdep.c.
9752         (_initialize_mips_linux_nat): Move initialize_tdesc_mips* calls
9753         to mips-linux-tdep.c.
9754         * mips-linux-tdep.c: Include features/mips*-linux.c
9755         (_initialize_mips_linux_tdep): Call initialize_tdesc_mips*
9756         functions.
9757         * mips-linux-tdep.h (tdesc_mips_linux): Declare.
9758         (tdesc_mips_dsp_linux, tdesc_mips64_linux): Declare.
9759         (tdesc_mips64_dsp_linux): Declare.
9760
9761 2017-06-12  Tom Tromey  <tom@tromey.com>
9762
9763         * valprint.h (val_print_type_code_int): Remove.
9764         * valprint.c (generic_val_print_int): Always call
9765         val_print_scalar_formatted.
9766         (val_print_type_code_int): Remove.
9767         * printcmd.c (print_scalar_formatted): Handle options->format==0.
9768         * f-valprint.c (f_val_print): Use val_print_scalar_formatted.
9769         * c-valprint.c (c_val_print_int): Use val_print_scalar_formatted.
9770         * ada-valprint.c (ada_val_print_num): Use
9771         val_print_scalar_formatted.
9772
9773 2017-06-12  Tom Tromey  <tom@tromey.com>
9774
9775         * printcmd.c (print_scalar_formatted): Unify the two switches.
9776         Don't convert scalars to LONGEST.
9777
9778 2017-06-12  Tom Tromey  <tom@tromey.com>
9779
9780         PR exp/16225:
9781         * valprint.h (print_decimal_chars): Update.
9782         * valprint.c (maybe_negate_by_bytes): New function.
9783         (print_decimal_chars): Add "is_signed" argument.
9784         * printcmd.c (print_scalar_formatted): Update.
9785
9786 2017-06-12  Tom Tromey  <tom@tromey.com>
9787
9788         PR exp/16225:
9789         * valprint.h (print_binary_chars, print_hex_chars): Update.
9790         * valprint.c (val_print_type_code_int): Update.
9791         (print_binary_chars): Add "zero_pad" argument.
9792         (emit_octal_digit): New function.
9793         (print_octal_chars): Don't zero-pad.
9794         (print_decimal_chars): Likewise.
9795         (print_hex_chars): Add "zero_pad" argument.
9796         * sh64-tdep.c (sh64_do_fp_register): Update.
9797         * regcache.c (regcache::dump): Update.
9798         * printcmd.c (print_scalar_formatted): Update.
9799         * infcmd.c (default_print_one_register_info): Update.
9800
9801 2017-06-12  Pedro Alves  <palves@redhat.com>
9802             Alan Hayward  <alan.hayward@arm.com>
9803
9804         * mips-tdep.c (MAX_MIPS_ABI_REGSIZE): New.
9805         (mips_eabi_push_dummy_call): Rename local 'regsize' to
9806         'abi_regsize'.  Rename local array 'valbuf' to 'ref_valbuf', and
9807         use MAX_MIPS_ABI_REGSIZE instead of MAX_REGISTER_SIZE to size it.
9808         Assert that abi_regsize bytes fit in 'ref_valbuf'.
9809
9810 2017-06-12  Pedro Alves  <palves@redhat.com>
9811
9812         * dwarf2read.c (mapped_symtab::data): Now a vector of
9813         symtab_index_entry instead of vector of
9814         std::unique_ptr<symtab_index_entry>.  All users adjusted to check
9815         whether an element's name is NULL instead of checking whether the
9816         element itself is NULL.
9817         (find_slot): Change return type.  Adjust.
9818         (hash_expand, , add_index_entry, uniquify_cu_indices)
9819         (write_hash_table): Adjust.
9820
9821 2017-06-12  Pedro Alves  <palves@redhat.com>
9822
9823         * dwarf2read.c (recursively_count_psymbols): New function.
9824         (write_psymtabs_to_index): Call it to compute number of psyms and
9825         pass estimate size of psyms_seen to unordered_set's ctor.
9826
9827 2017-06-12  Pedro Alves  <palves@redhat.com>
9828
9829         * dwarf2read.c (write_hash_table): Check if key already exists
9830         before emplacing.
9831
9832 2017-06-12  Pedro Alves  <palves@redhat.com>
9833
9834         * dwarf2read.c (data_buf::append_space): Rename to...
9835         (data_buf::grow): ... this, and make private.  Adjust all callers.
9836         (data_buf::append_uint): New method.
9837         (add_address_entry, write_one_signatured_type)
9838         (write_psymtabs_to_index): Use it.
9839
9840 2017-06-12  Pedro Alves  <palves@redhat.com>
9841
9842         * dwarf2read.c (file_write(FILE *, const void *, size_t)): Delete.
9843         (file_write (FILE *, const std::vector<Elem>&)): Delete.
9844         (data_buf::file_write): Call ::fwrite directly.
9845
9846 2017-06-12  Pedro Alves  <palves@redhat.com>
9847
9848         * dwarf2read.c (uniquify_cu_indices): Use std::unique and
9849         std::vector::erase.
9850
9851 2017-06-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
9852
9853         Code cleanup: C++ify .gdb_index producer.
9854         * dwarf2read.c: Include <unordered_set> and <unordered_map>.
9855         (MAYBE_SWAP) [WORDS_BIGENDIAN]: Cast to offset_type.
9856         (struct strtab_entry, hash_strtab_entry, eq_strtab_entry)
9857         (create_strtab, add_string): Remove.
9858         (file_write, data_buf): New.
9859         (struct symtab_index_entry): Use std::vector for cu_indices.
9860         (struct mapped_symtab): Use std::vector for data.
9861         (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry)
9862         (create_symbol_hash_table, create_mapped_symtab, cleanup_mapped_symtab):
9863         Remove.
9864         (find_slot): Change return type.  Update it to the new data structures.
9865         (hash_expand, add_index_entry): Update it to the new data structures.
9866         (offset_type_compare): Remove.
9867         (uniquify_cu_indices): Update it to the new data structures.
9868         (c_str_view, c_str_view_hasher, vector_hasher): New.
9869         (add_indices_to_cpool): Remove.
9870         (write_hash_table): Update it to the new data structures.
9871         (struct psymtab_cu_index_map, hash_psymtab_cu_index)
9872         (eq_psymtab_cu_index): Remove.
9873         (psym_index_map): New typedef.
9874         (struct addrmap_index_data): Change addr_obstack pointer to data_buf
9875         reference and std::unordered_map for cu_index_htab.
9876         (add_address_entry, add_address_entry_worker, write_address_map)
9877         (write_psymbols): Update it to the new data structures.
9878         (write_obstack): Remove.
9879         (struct signatured_type_index_data): Change types_list to a data_buf
9880         reference and psyms_seen to a std::unordered_set reference.
9881         (write_one_signatured_type, recursively_write_psymbols)
9882         (write_psymtabs_to_index): Update it to the new data structures.
9883
9884 2017-06-11  Simon Marchi  <simon.marchi@ericsson.com>
9885
9886         * NEWS (Changes since GDB 8.0): Announce {set,show} debug
9887         separate-debug-file commands.
9888         * symfile.h (separate_debug_file_debug): New global.
9889         * symfile.c (separate_debug_file_debug): New global.
9890         (separate_debug_file_exists, find_separate_debug_file): Add
9891         debug output.
9892         (_initialize_symfile): Add "set debug separate-debug-file"
9893         command.
9894         * build-id.c (build_id_to_debug_bfd,
9895         find_separate_debug_file_by_buildid): Add debug output.
9896
9897 2017-06-10  Simon Marchi  <simon.marchi@polymtl.ca>
9898
9899         * gdbarch.sh (displaced_step_free_closure): Remove.
9900         * gdbarch.h, gdbarch.c: Re-generate.
9901         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't set
9902         displaced_step_free_closure.
9903         * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise.
9904         * arm-linux-tdep.c (arm_linux_init_abi): Likewise.
9905         * i386-linux-tdep.c (i386_linux_init_abi): Likewise.
9906         * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
9907         * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
9908         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
9909         * arch-utils.h (simple_displaced_step_free_closure): Remove.
9910         * arch-utils.c (simple_displaced_step_free_closure): Remove.
9911         * infrun.c (displaced_step_clear): Call xfree instead of
9912         gdbarch_displaced_step_free_closure.
9913
9914 2017-06-08  Sergio Durigan Junior  <sergiodj@redhat.com>
9915
9916         * common/common-utils.c (stringify_argv): Check for "arg[0] !=
9917         NULL".
9918
9919 2017-06-08 Alan Hayward  <alan.hayward@arm.com>
9920
9921         * mn10300-tdep.c (MN10300_MAX_REGISTER_SIZE): Add.
9922         (mn10300_extract_return_value): Use MN10300_MAX_REGISTER_SIZE.
9923         (mn10300_push_dummy_call): Likewise.
9924
9925 2017-06-08  Alan Hayward  <alan.hayward@arm.com>
9926
9927         * mi/mi-main.c (register_changed_p): Use value_contents_eq.
9928
9929 2017-06-08  Alan Hayward  <alan.hayward@arm.com>
9930
9931         * mi/mi-main.c (register_changed_p): Use cooked_read_value.
9932
9933 2017-06-07  Sergio Durigan Junior  <sergiodj@redhat.com>
9934
9935         * NEWS (Changes since GDB 8.0): Announce that GDBserver is now
9936         able to start inferiors using a shell.
9937         (New remote packets): Announce new packet "QStartupWithShell".
9938         * remote.c: Add PACKET_QStartupWithShell.
9939         (extended_remote_create_inferior): Handle new
9940         PACKET_QStartupWithShell.
9941         (remote_protocol_features) <QStartupWithShell>: New entry for
9942         PACKET_QStartupWithShell.
9943         (_initialize_remote): Call "add_packet_config_cmd" for
9944         QStartupShell.
9945
9946 2017-06-07  Sergio Durigan Junior  <sergiodj@redhat.com>
9947             Pedro Alves  <palves@redhat.com>
9948
9949         * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-inferior.h"
9950         and "nat/fork-inferior.h".
9951         * common/common-inferior.h: New file, with contents from
9952         "gdb/inferior.h".
9953         * commom/common-utils.c: Include "common-utils.h".
9954         (stringify_argv): New function.
9955         * common/common-utils.h (stringify_argv): New prototype.
9956         * configure.nat: Add "fork-inferior.o" as a dependency for
9957         "*linux*", "fbsd*" and "nbsd*" hosts.
9958         * corefile.c (get_exec_file): Update comment.
9959         * darwin-nat.c (darwin_ptrace_him): Call "gdb_startup_inferior"
9960         instead of "startup_inferior".
9961         (darwin_create_inferior): Call "add_thread_silent" after
9962         "fork_inferior".
9963         * fork-child.c: Cleanup unnecessary includes.
9964         (SHELL_FILE): Move to "common/common-fork-child.c".
9965         (environ): Likewise.
9966         (exec_wrapper): Initialize.
9967         (get_exec_wrapper): New function.
9968         (breakup_args): Move to "common/common-fork-child.c"; rename to
9969         "breakup_args_for_exec".
9970         (escape_bang_in_quoted_argument): Move to
9971         "common/common-fork-child.c".
9972         (saved_ui): New variable.
9973         (prefork_hook): New function.
9974         (postfork_hook): Likewise.
9975         (postfork_child_hook): Likewise.
9976         (gdb_startup_inferior): Likewise.
9977         (fork_inferior): Move to "common/common-fork-child.c".  Update
9978         function to support gdbserver.
9979         (startup_inferior): Likewise.
9980         * gdbcore.h (get_exec_file): Remove declaration.
9981         * gnu-nat.c (gnu_create_inferior): Call "gdb_startup_inferior"
9982         instead of "startup_inferior".  Call "add_thread_silent" after
9983         "fork_inferior".
9984         * inf-ptrace.c: Include "nat/fork-inferior.h" and "utils.h".
9985         (inf_ptrace_create_inferior): Call "gdb_startup_inferior"
9986         instead of "startup_inferior".  Call "add_thread_silent" after
9987         "fork_inferior".
9988         * inferior.h: Include "common-inferior.h".
9989         (trace_start_error): Move to "common/common-utils.h".
9990         (trace_start_error_with_name): Likewise.
9991         (fork_inferior): Move prototype to "nat/fork-inferior.h".
9992         (startup_inferior): Likewise.
9993         (gdb_startup_inferior): New prototype.
9994         * nat/fork-inferior.c: New file, with contents from "fork-child.c".
9995         * nat/fork-inferior.h: New file.
9996         * procfs.c (procfs_init_inferior): Call "gdb_startup_inferior"
9997         instead of "startup_inferior".  Call "add_thread_silent" after
9998         "fork_inferior".
9999         * target.h (target_terminal_init): Move prototype to
10000         "target/target.h".
10001         (target_terminal_inferior): Likewise.
10002         (target_terminal_ours): Likewise.
10003         * target/target.h (target_terminal_init): New prototype, moved
10004         from "target.h".
10005         (target_terminal_inferior): Likewise.
10006         (target_terminal_ours): Likewise.
10007         * utils.c (gdb_flush_out_err): New function.
10008
10009 2017-06-07  Sergio Durigan Junior  <sergiodj@redhat.com>
10010
10011         * Makefile.in (HFILES_NO_SRCDIR): Add "common/common-gdbthread.h".
10012         * common/common-gdbthread.h: New file, with parts from
10013         "gdb/gdbthread.h".
10014         * gdbthread.h: Include "common-gdbthread.h".
10015         (switch_to_thread): Moved to "common/common-gdbthread.h".
10016
10017 2017-06-07  Sergio Durigan Junior  <sergiodj@redhat.com>
10018
10019         * Makefile.in (SFILES): Add "common/job-control.c".
10020         (HFILES_NO_SRCDIR): Add "common/job-control.h".
10021         (COMMON_OBS): Add "job-control.o".
10022         * common/job-control.c: New file, with contents from
10023         "gdb/inflow.c".
10024         * common/job-control.h: New file, with contents from "terminal.h".
10025         * fork-child.c: Include "job-control.h".
10026         * inflow.c: Include "job-control.h".
10027         (gdb_setpgid): Move to "common/common-inflow.c".
10028         (_initialize_inflow): Move setting of "job_control" to
10029         "handle_job_control".
10030         * terminal.h (job_control): Moved to "common/common-terminal.h".
10031         (gdb_setpgid): Likewise.
10032         * top.c: Include "job_control.h".
10033         * utils.c: Likewise.
10034         (job_control): Moved to "job-control.c".
10035
10036 2017-06-07  Pedro Alves  <palves@redhat.com>
10037
10038         * Makefile.in (SFILES): Add gdb_regex.c.
10039         (COMMON_OBS): Add gdb_regex.o.
10040         * ada-lang.c (ada_add_standard_exceptions)
10041         (ada_add_exceptions_from_frame, name_matches_regex)
10042         (ada_add_global_exceptions, ada_exceptions_list_1): Change regex
10043         parameter type to compiled_regex.  Adjust.
10044         (ada_exceptions_list): Use compiled_regex.
10045         * break-catch-throw.c (exception_catchpoint::pattern): Now a
10046         std::unique_ptr<compiled_regex>.
10047         (exception_catchpoint::~exception_catchpoint): Remove regfree
10048         call.
10049         (check_status_exception_catchpoint): Adjust to use compiled_regex.
10050         (handle_gnu_v3_exceptions): Adjust to use compiled_regex.
10051         * breakpoint.c (solib_catchpoint::compiled): Now a
10052         std::unique_ptr<compiled_regex>.
10053         (solib_catchpoint::~solib_catchpoint): Remove regfree call.
10054         (check_status_catch_solib): Adjust to use compiled_regex.
10055         (add_solib_catchpoint): Adjust to use compiled_regex.
10056         * cli/cli-cmds.c (apropos_command): Use compiled_regex.
10057         * cli/cli-decode.c (apropos_cmd): Change regex parameter to
10058         compiled_regex reference.  Adjust to use it.
10059         * cli/cli-decode.h: Remove struct re_pattern_buffer forward
10060         declaration.  Include "gdb_regex.h".
10061         (apropos_cmd): Change regex parameter to compiled_regex reference.
10062         * gdb_regex.c: New file.
10063         * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Delete
10064         declarations.
10065         (class compiled_regex): New.
10066         * linux-tdep.c: Include "common/gdb_optional.h".
10067         (struct mapping_regexes): New, factored out from
10068         mapping_is_anonymous_p, and adjusted to use compiled_regex.
10069         (mapping_is_anonymous_p): Use mapping_regexes wrapped in a
10070         gdb::optional and remove cleanups.  Adjust to compiled_regex.
10071         * probe.c: Include "common/gdb_optional.h".
10072         (collect_probes): Use compiled_regex and gdb::optional and remove
10073         cleanups.
10074         * skip.c: Include "common/gdb_optional.h".
10075         (skiplist_entry::compiled_function_regexp): Now a
10076         gdb::optional<compiled_regex>.
10077         (skiplist_entry::compiled_function_regexp_is_valid): Delete field.
10078         (free_skiplist_entry): Remove regfree call.
10079         (compile_skip_regexp, skip_rfunction_p): Adjust to use
10080         compiled_regex and gdb::optional.
10081         * symtab.c: Include "common/gdb_optional.h".
10082         (search_symbols): Use compiled_regex and gdb::optional.
10083         * utils.c (do_regfree_cleanup, make_regfree_cleanup)
10084         (get_regcomp_error, compile_rx_or_error): Delete.  Some bits moved
10085         to gdb_regex.c.
10086
10087 2017-06-07  Alan Hayward  <alan.hayward@arm.com>
10088
10089         * regcache.c (regcache::save): Avoid buffer use.
10090         (regcache::dump): Likewise.
10091
10092 2017-06-07  Alan Hayward  <alan.hayward@arm.com>
10093
10094         * sh-tdep.c (sh_pseudo_register_read): Remove
10095         MAX_REGISTER_SIZE.
10096         (sh_pseudo_register_write): Likewise.
10097         * sh64-tdep.c (sh64_pseudo_register_read): Likewise.
10098         (sh64_pseudo_register_write): Likewise
10099
10100 2017-06-07  Alan Hayward  <alan.hayward@arm.com>
10101
10102         * aarch64-tdep.c (aarch64_store_return_value): Use
10103         V_REGISTER_SIZE.
10104         (aarch64_pseudo_read_value): Likewise.
10105         (aarch64_pseudo_write): Likewise.
10106
10107 2017-06-06  Yao Qi  <yao.qi@linaro.org>
10108
10109         * regformats/regdef.h (set_register_cache): Remove the
10110         declaration.
10111
10112 2017-06-06 Alan Hayward  <alan.hayward@arm.com>
10113
10114         * frame.c (frame_unwind_register_signed): Use
10115         frame_unwind_register_value.
10116
10117 2017-06-06  Pedro Alves  <palves@redhat.com>
10118
10119         PR breakpoints/21553
10120         * breakpoint.c (create_breakpoints_sal_default)
10121         (init_breakpoint_sal, create_breakpoint_sal): Use
10122         gdb::unique_xmalloc_ptr for string parameters.
10123         (create_breakpoint): Constify 'extra_string' and 'cond_string'
10124         parameters.  Replace cleanups with gdb::unique_xmalloc_ptr.
10125         (base_breakpoint_create_breakpoints_sal)
10126         (bkpt_create_breakpoints_sal, tracepoint_create_breakpoints_sal)
10127         (strace_marker_create_breakpoints_sal)
10128         (create_breakpoints_sal_default): Use gdb::unique_xmalloc_ptr for
10129         string parameters.
10130         * breakpoint.h (breakpoint_ops::create_breakpoints_sal): Use
10131         gdb::unique_xmalloc_ptr for string parameters.
10132         (create_breakpoint): Constify 'extra_string' and 'cond_string'
10133         parameters.
10134
10135 2017-06-06  Alan Hayward  <alan.hayward@arm.com>
10136
10137         * alpha-tdep.c (alpha_register_to_value): Use
10138         get_frame_register_value.
10139         (alpha_value_to_register): Use ALPHA_REGISTER_SIZE.
10140
10141 2017-06-06  Alan Hayward  <alan.hayward@arm.com>
10142
10143         * ia64-tdep.c (IA64_MAX_FP_REGISTER_SIZE) Add.
10144         (ia64_register_to_value): Use IA64_MAX_FP_REGISTER_SIZE.
10145         (ia64_value_to_register): Likewise.
10146         (ia64_extract_return_value): Likewise.
10147         (ia64_store_return_value): Likewise.
10148         (ia64_push_dummy_call): Likewise.
10149
10150 2017-06-04  Joel Brobecker  <brobecker@adacore.com>
10151
10152         GDB 8.0 released.
10153
10154 2017-06-03  Simon Marchi  <simon.marchi@ericsson.com>
10155
10156         * x86-linux-nat.c (struct arch_lwp_info): Remove.
10157
10158 2017-06-03  Simon Marchi  <simon.marchi@polymtl.ca>
10159
10160         * linux-nat.c (linux_nat_post_attach_wait): Remove FIRST
10161         parameter.
10162         (linux_nat_attach): Adjust call to linux_nat_post_attach_wait.
10163
10164 2017-06-02  Simon Marchi  <simon.marchi@ericsson.com>
10165
10166         * event-loop.c (poll_timers): Unallocate timer using delete
10167         instead of xfree.
10168
10169 2017-06-02  Simon Marchi  <simon.marchi@polymtl.ca>
10170
10171         * breakpoint.h (struct breakpoint_ops) <dtor>: Remove.
10172         (struct breakpoint) <~breakpoint>: New.
10173         (struct watchpoint): Inherit from breakpoint.
10174         <~watchpoint>: New.
10175         <base>: Remove.
10176         (struct tracepoint): Inherit from breakpoint.
10177         <base>: Remove.
10178         * breakpoint.c (longjmp_breakpoint_ops): Remove.
10179         (struct longjmp_breakpoint): Inherit from breakpoint.
10180         <~longjmp_breakpoint>: New.
10181         <base>: Remove.
10182         (new_breakpoint_from_type): Remove casts.
10183         (watchpoint_in_thread_scope): Remove reference to base field.
10184         (watchpoint_del_at_next_stop): Likewise.
10185         (update_watchpoint): Likewise.
10186         (watchpoint_check): Likewise.
10187         (bpstat_check_watchpoint): Likewise.
10188         (set_longjmp_breakpoint): Likewise.
10189         (struct fork_catchpoint): Inherit from breakpoint.
10190         <base>: Remove.
10191         (struct solib_catchpoint): Inherit from breakpoint.
10192         <~solib_catchpoint>: New.
10193         <base>: Remove.
10194         (dtor_catch_solib): Change to ...
10195         (solib_catchpoint::~solib_catchpoint): ... this.
10196         (breakpoint_hit_catch_solib): Remove reference to base field.
10197         (add_solib_catchpoint): Likewise.
10198         (create_fork_vfork_event_catchpoint): Likewise.
10199         (struct exec_catchpoint): Inherit from breakpoint.
10200         <~exec_catchpoint>: New.
10201         <base>: Remove.
10202         (dtor_catch_exec): Change to ...
10203         (exec_catchpoint::~exec_catchpoint): ... this.
10204         (dtor_watchpoint): Change to ...
10205         (watchpoint::~watchpoint): ... this.
10206         (watch_command_1): Remove reference to base field.
10207         (catch_exec_command_1): Likewise.
10208         (base_breakpoint_dtor): Change to ...
10209         (breakpoint::~breakpoint): ... this.
10210         (base_breakpoint_ops): Remove dtor field value.
10211         (longjmp_bkpt_dtor): Change to ...
10212         (longjmp_breakpoint::~longjmp_breakpoint): ... this.
10213         (strace_marker_create_breakpoints_sal): Remove reference to base
10214         field.
10215         (delete_breakpoint): Don't manually call breakpoint destructor.
10216         (create_tracepoint_from_upload): Remove reference to base field.
10217         (trace_pass_set_count): Likewise.
10218         (initialize_breakpoint_ops): Don't initialize
10219         momentary_breakpoint_ops, don't set dtors.
10220         * ada-lang.c (struct ada_catchpoint): Inherit from breakpoint.
10221         <~ada_catchpoint>: New.
10222         <base>: Remove.
10223         (create_excep_cond_exprs): Remove reference to base field.
10224         (dtor_exception): Change to ...
10225         (ada_catchpoint::~ada_catchpoint): ... this.
10226         (dtor_catch_exception): Remove.
10227         (dtor_catch_exception_unhandled): Remove.
10228         (dtor_catch_assert): Remove.
10229         (create_ada_exception_catchpoint): Remove reference to base
10230         field.
10231         (initialize_ada_catchpoint_ops): Don't set dtors.
10232         * break-catch-sig.c (struct signal_catchpoint): Inherit from
10233         breakpoint.
10234         <~signal_catchpoint>: New.
10235         <base>: Remove.
10236         (signal_catchpoint_dtor): Change to ...
10237         (signal_catchpoint::~signal_catchpoint): ... this.
10238         (create_signal_catchpoint): Remove reference to base field.
10239         (initialize_signal_catchpoint_ops): Don't set dtor.
10240         * break-catch-syscall.c (struct syscall_catchpoint): Inherit
10241         from breakpoint.
10242         <~syscall_catchpoint>: New.
10243         <base>: Remove.
10244         (dtor_catch_syscall): Change to ...
10245         (syscall_catchpoint::~syscall_catchpoint): ... this.
10246         (create_syscall_event_catchpoint): Remove reference to base
10247         field.
10248         (initialize_syscall_catchpoint_ops): Don't set dtor.
10249         * break-catch-throw.c (struct exception_catchpoint): Inherit
10250         from breakpoint.
10251         <~exception_catchpoint>: New.
10252         <base>: Remove.
10253         (dtor_exception_catchpoint): Change to ...
10254         (exception_catchpoint::~exception_catchpoint): ... this.
10255         (handle_gnu_v3_exceptions): Remove reference to base field.
10256         (initialize_throw_catchpoint_ops): Don't set dtor.
10257         * ctf.c (ctf_get_traceframe_address): Remove reference to base
10258         field.
10259         * remote.c (remote_get_tracepoint_status): Likewise.
10260         * tracefile-tfile.c (tfile_get_traceframe_address): Likewise.
10261         * tracefile.c (tracefile_fetch_registers): Likewise.
10262         * tracepoint.c (actions_command): Likewise.
10263         (validate_actionline): Likewise.
10264         (tfind_1): Likewise.
10265         (get_traceframe_location): Likewise.
10266         (find_matching_tracepoint_location): Likewise.
10267         (parse_tracepoint_status): Likewise.
10268         * mi/mi-cmd-break.c (mi_cmd_break_passcount): Likewise.
10269
10270 2017-06-02  Simon Marchi  <simon.marchi@polymtl.ca>
10271
10272         * breakpoint.c (struct longjmp_breakpoint): New struct.
10273         (is_tracepoint_type): Change return type to bool.
10274         (is_longjmp_type): New function.
10275         (new_breakpoint_from_type): Handle longjmp kinds of breakpoints.
10276         (set_raw_breakpoint_without_location): Use
10277         new_breakpoint_from_type.
10278         (set_raw_breakpoint): Likewise.
10279
10280 2017-06-02  Simon Marchi  <simon.marchi@polymtl.ca>
10281
10282         * breakpoint.c (new_breakpoint_from_type): New function.
10283         (create_breakpoint_sal): Use new_breakpoint_from_type and
10284         unique_ptr.
10285         (create_breakpoint): Likewise.
10286
10287 2017-05-31  Simon Marchi  <simon.marchi@ericsson.com>
10288
10289         * memattr.c (mem_info_command): Rename to ...
10290         (info_mem_command): ... this.
10291         (mem_enable_command): Rename to ...
10292         (enable_mem_command): ... this.
10293         (mem_disable_command): Rename to ...
10294         (disable_mem_command): ... this.
10295         (mem_delete_command): Rename to ...
10296         (delete_mem_command): ... this.
10297         (_initialize_mem): Adjust function names.
10298
10299 2017-05-31  Markus Metzger  <markus.t.metzger@intel.com>
10300
10301         * btrace.c (handle_pt_insn_events): New.
10302         (ftrace_add_pt): Call handle_pt_insn_events.  Rename ERRCODE into
10303         STATUS.  Split into this and ...
10304         (handle_pt_insn_event_flags): ... this.
10305
10306 2017-05-31  Markus Metzger  <markus.t.metzger@intel.com>
10307
10308         * configure.ac: Check for pt_insn_event, struct pt_insn.enabled,
10309         and struct pt_insn.resynced.
10310         * configure: Regenerated.
10311         * config.in: Regenerated.
10312
10313 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10314
10315         * btrace.c (ftrace_find_call_by_number): New function.
10316         (ftrace_new_function): Store objects, not pointers.
10317         (ftrace_find_call_by_number, ftrace_new_return, ftrace_new_switch,
10318         ftrace_new_gap, ftrace_update_function,
10319         ftrace_compute_global_level_offset, btrace_stich_bts, btrace_clear,
10320         btrace_insn_get, btrace_insn_get_error, btrace_insn_end,
10321         btrace_insn_next, btrace_insn_prev, ptrace_find_insn_by_number,
10322         btrace_ends_with_single_insn, btrace_call_get): Account for
10323         btrace_thread_info::functions now storing objects.
10324         * btrace.h (struct btrace_thread_info): Add constructor.
10325         (struct btrace_thread_info) <functions>: Make std::vector.
10326         (struct btrace_thread_info) <prev, next, up, insn, errcode, flags):
10327         Initialize with default values.
10328         * record-btrace.c (record_btrace_frame_sniffer): Account for
10329         btrace_thread_info::functions now storing objects.
10330
10331 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10332
10333         * btrace.c: Remove typedef bfun_s.
10334         (ftrace_new_gap): Directly add gaps to the list of gaps.
10335         (btrace_bridge_gaps, btrace_compute_ftrace_bts, pt_btrace_insn_flags,
10336         ftrace_add_pt, btrace_compute_ftrace_pt, btrace_compute_ftrace_1,
10337         btrace_finalize_ftrace, btrace_compute_ftrace): Use std::vector
10338         instead of gdb VEC.
10339
10340 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10341
10342         * btrace.c (ftrace_fixup_caller, ftrace_new_return, ftrace_connect_bfun,
10343         ftrace_bridge_gap): Replace references to btrace_thread_info::segment
10344         with btrace_thread_info::next_segment and
10345         btrace_thread_info::prev_segment.
10346         * btrace.h: Remove struct btrace_func_link.
10347         (struct btrace_function): Replace pair of function segment pointers
10348         with pair of indices.
10349         * python/py-record-btrace.c (btpy_call_prev_sibling,
10350         btpy_call_next_sibling): Replace references to
10351         btrace_thread_info::segment with btrace_thread_info::next_segment and
10352         btrace_thread_info::prev_segment.
10353         * record-btrace.c (record_btrace_frame_this_id): Use
10354         btrace_find_call_by_number.
10355
10356 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10357
10358         * btrace.c (ftrace_new_function, ftrace_fixup_level,
10359         ftrace_connect_bfun, ftrace_bridge_gap, btrace_bridge_gaps,
10360         btrace_insn_next, btrace_insn_prev): Remove references to
10361         btrace_thread_info::flow.
10362         * btrace.h (struct btrace_function): Remove FLOW.
10363
10364 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10365
10366         * btrace.c (ftrace_find_call_by_number): New function.
10367         (ftrace_update_caller, ftrace_new_call, ftrace_new_tailcall,
10368         ftrace_get_caller, ftrace_find_call, ftrace_new_return,
10369         ftrace_match_backtrace, ftrace_connect_bfun, ftrace_connect_backtrace,
10370         ftrace_bridge_gap, btrace_bridge_gaps): Use btrace_function::up as an
10371         index.
10372         * btrace.h (struct btrace_function): Turn UP into an index.
10373         * python/py-record-btrace.c (btpy_call_up): Use btrace_function::up
10374         as an index.
10375         * record-btrace.c (record_btrace_frame_unwind_stop_reason,
10376         record_btrace_frame_prev_register, record_btrace_frame_sniffer,
10377         record_btrace_tailcall_frame_sniffe): Use btrace_find_call_by_number.
10378
10379 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10380
10381         * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
10382         ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
10383         ftrace_update_function, ftrace_compute_global_level_offset,
10384         btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt,
10385         btrace_stitch_bts, btrace_fetch, btrace_clear, btrace_insn_number,
10386         btrace_insn_end, btrace_is_empty): Remove references to
10387         btrace_thread_info::begin and btrace_thread_info::end.
10388         * btrace.h (struct btrace_thread_info): Remove BEGIN and END.
10389         (struct btrace_thread_info) <functions>: Adjust comment.
10390         * record-btrace.c (record_btrace_start_replaying): Remove reference to
10391         btrace_thread_info::begin.
10392
10393 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10394
10395         * btrace.c (ftrace_new_function, ftrace_new_call, ftrace_new_tailcall,
10396         ftrace_new_return, ftrace_new_switch, ftrace_new_gap,
10397         ftrace_update_function): Remove arguments that implicitly were always
10398         BTINFO->END.
10399         (btrace_compute_ftrace_bts, ftrace_add_pt, btrace_compute_ftrace_pt):
10400         Don't pass BTINFO->END.
10401
10402 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10403
10404         * btrace.c: (btrace_insn_get, btrace_insn_get_error, btrace_insn_number,
10405         btrace_insn_begin, btrace_insn_end, btrace_insn_next, btrace_insn_prev,
10406         btrace_find_insn_by_number): Replace function segment pointer with
10407         index.
10408         (btrace_insn_cmp): Simplify.
10409         * btrace.h: (struct btrace_insn_iterator) Rename index to
10410         insn_index.  Replace function segment pointer with index into function
10411         segment vector.
10412         * record-btrace.c (record_btrace_call_history): Replace function
10413         segment pointer use with index.
10414         (record_btrace_frame_sniffer): Retrieve function call segment through
10415         vector.
10416         (record_btrace_set_replay): Remove defunc't safety check.
10417
10418 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10419
10420         * btrace.c (btrace_ends_with_single_insn): New function.
10421         (btrace_call_get, btrace_call_number, btrace_call_begin,
10422         btrace_call_end, btrace_call_next, btrace_call_prev,
10423         btrace_find_call_by_number): Use index into call segment vector
10424         instead of pointer.
10425         (btrace_call_cmp): Simplify.
10426         * btrace.h (struct btrace_call_iterator): Replace function call segment
10427         pointer with index into vector.
10428         * record-btrace.c (record_btrace_call_history): Use index instead of
10429         pointer.
10430
10431 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10432
10433         * btrace.c (btrace_insn_begin, btrace_insn_end,
10434         btrace_find_insn_by_number): Add btinfo to iterator.
10435         * btrace.h (struct btrace_insn_iterator): Add btinfo.
10436
10437 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10438
10439         * btrace.c (ftrace_new_function): Add btrace_thread_info to arguments
10440         and save pointers directly.
10441         (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return,
10442         ftrace_new_switch, ftrace_new_gap, ftrace_update_function,
10443         ftrace_add_pt): Add btrace_thread_info to arguments.  Adjust for
10444         changed signature of functions.
10445         (btrace_compute_ftrace_pt): Adjust for changed signature of functions.
10446         (btrace_fetch): Remove code that adds btrace_function pointers to
10447         vector of btrace_functions.
10448         (btrace_clear): Simplify freeing vector of btrace_functions.
10449
10450 2017-05-30  Tim Wiederhake  <tim.wiederhake@intel.com>
10451
10452         * btrace.c (btrace_fetch, btrace_clear, btrace_find_insn_by_number):
10453         Replace VEC_* with std::vector functions.
10454         * btrace.h: Add include: vector. Remove typedef for DEF_VEC_P.
10455         (struct btrace_thread_info)<functions>: Change type to std::vector.
10456
10457 2017-05-30  Simon Marchi  <simon.marchi@ericsson.com>
10458
10459         * NEWS (Changes in GDB 8.0): Remove extra empty line.  Move
10460         "Removed targets and native configurations" up.  Merge duplicate
10461         "New commands" sub-sections.  Add "New options" sub-sections.
10462
10463 2017-05-26  Alan Hayward  <alan.hayward@arm.com>
10464
10465         * defs.h (copy_integer_to_size): New declaration.
10466         * findvar.c (copy_integer_to_size): New function.
10467         (do_cint_test): New selftest function.
10468         (copy_integer_to_size_test): Likewise.
10469         (_initialize_findvar): Likewise.
10470         * mips-fbsd-tdep.c (mips_fbsd_supply_reg): Use raw_supply_integer.
10471         (mips_fbsd_collect_reg): Use raw_collect_integer.
10472         * mips-linux-tdep.c (supply_32bit_reg): Use raw_supply_integer.
10473         (mips64_fill_gregset): Use raw_collect_integer
10474         (mips64_fill_fpregset): Use raw_supply_integer.
10475         * regcache.c (regcache::raw_supply_integer): New function.
10476         (regcache::raw_collect_integer): Likewise.
10477         * regcache.h: (regcache::raw_supply_integer): New declaration.
10478         (regcache::raw_collect_integer): Likewise.
10479
10480 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10481
10482         * Makefile.in (SFILES): Add gdbarch-selftests.c.
10483         (COMMON_OBS): Add gdbarch-selftests.o.
10484         * frame.c [GDB_SELF_TESTS] (create_new_frame): New function.
10485         * frame.h [GDB_SELF_TESTS] (create_new_frame): Declare.
10486         * gdbarch-selftests.c: New file.
10487         * regcache.h (regcache) <~regcache>: Mark it virtual if
10488         GDB_SELF_TEST.
10489         <raw_write>: Likewise.
10490
10491 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10492
10493         * regcache.c (current_regcache): Change it to
10494         regcache::current_regcache.
10495         (regcache_observer_target_changed): Update.
10496         (regcache_thread_ptid_changed): Make it a regcache static
10497         method.
10498         (regcache_thread_ptid_changed): Update.
10499         (class regcache_access): New.
10500         (current_regcache_test): Update.
10501         (_initialize_regcache): Update.
10502         * regcache.h: Include forward_list.
10503         (regcache): Declare regcache_thread_ptid_changed and declare
10504         registers_changed_ptid as friend.
10505
10506 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10507
10508         * i387-tdep.c (i387_register_to_value): Use register_size
10509         instead of TYPE_LENGTH.
10510         * m68k-tdep.c (m68k_register_to_value): Likewise.
10511
10512 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10513
10514         * i387-tdep.c (i387_convert_register_p): Return false if type
10515         code isn't TYPE_CODE_FLT.
10516
10517 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10518
10519         * alpha-tdep.c (alpha_convert_register_p): Return true if type
10520         length is 4.
10521         (alpha_register_to_value): Remove type length check.
10522         (alpha_value_to_register): Likewise.
10523
10524 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10525
10526         * ia64-tdep.c (ia64_convert_register_p): Check type's code is
10527         TYPE_CODE_FLT.
10528
10529 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10530
10531         * m68k-tdep.c (m68k_convert_register_p): Check type's code is
10532         TYPE_CODE_FLT or not.
10533
10534 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10535
10536         * alpha-tdep.c (alpha_gdbarch_init): Use XCNEW instead of XNEW.
10537         * avr-tdep.c (avr_gdbarch_init): Likewise.
10538         * bfin-tdep.c (bfin_gdbarch_init): Likewise.
10539         * cris-tdep.c (cris_gdbarch_init): Likewise.
10540         * ft32-tdep.c (ft32_gdbarch_init): Likewise.
10541         * lm32-tdep.c (lm32_gdbarch_init): Likewise.
10542         * m32r-tdep.c (m32r_gdbarch_init): Likewise.
10543         * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
10544         * mep-tdep.c (mep_gdbarch_init): Likewise.
10545         * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
10546         * mips-tdep.c (mips_gdbarch_init): Likewise.
10547         * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
10548         * moxie-tdep.c (moxie_gdbarch_init): Likewise.
10549         * msp430-tdep.c (msp430_gdbarch_init): Likewise.
10550         * sh64-tdep.c (sh64_gdbarch_init): Likewise.
10551         * v850-tdep.c (v850_gdbarch_init): Likewise.
10552
10553 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10554
10555         * selftest-arch.c (tests_with_arch): Call registers_changed
10556         and reinit_frame_cache.
10557         * selftest.c (run_self_tests): Likewise.
10558
10559 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10560
10561         * rs6000-tdep.c (gdb_print_insn_powerpc): Remove.
10562         (rs6000_gdbarch_init): Don't call set_gdbarch_print_insn.
10563
10564 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10565
10566         * rl78-tdep.c (rl78_gdbarch_init): Don't call
10567         set_gdbarch_print_insn.
10568
10569 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10570
10571         * h8300-tdep.c (h8300_gdbarch_init): Don't call
10572         set_gdbarch_print_insn.
10573
10574 2017-05-24  Yao Qi  <yao.qi@linaro.org>
10575
10576         * alpha-tdep.c (alpha_gdbarch_init): Don't call
10577         set_gdbarch_print_insn.
10578         * arc-tdep.c (arc_gdbarch_init): Likewise.
10579         * arch-utils.c: include dis-asm.h.
10580         (default_print_insn): New function.
10581         * arch-utils.h (default_print_insn): Declare.
10582         * avr-tdep.c (avr_gdbarch_init): Don't call set_gdbarch_print_insn.
10583         * bfin-tdep.c (bfin_gdbarch_init): Likewise.
10584         * cris-tdep.c (cris_delayed_get_disassembler): Remove.
10585         (cris_gdbarch_init): Don't call set_gdbarch_print_insn.
10586         * frv-tdep.c (frv_gdbarch_init): Likewise.
10587         * ft32-tdep.c (ft32_gdbarch_init): Likewise.
10588         * gdbarch.sh (print_insn): Use default_print_insn.
10589         * gdbarch.c: Regenerated.
10590         * hppa-tdep.c (hppa_gdbarch_init): Likewise.
10591         * iq2000-tdep.c (iq2000_gdbarch_init): Likewise.
10592         * lm32-tdep.c (lm32_gdbarch_init): Likewise.
10593         * m32c-tdep.c (m32c_gdbarch_init): Likewise.
10594         * m32r-tdep.c (m32r_gdbarch_init): Likewise.
10595         * m68hc11-tdep.c (gdb_print_insn_m68hc11): Remove.
10596         (m68hc11_gdbarch_init): Don't call set_gdbarch_print_insn.
10597         * m68k-tdep.c (m68k_gdbarch_init): Likewise.
10598         * m88k-tdep.c (m88k_gdbarch_init): Likewise.
10599         * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
10600         * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
10601         * moxie-tdep.c (moxie_gdbarch_init): Likewise.
10602         * msp430-tdep.c (msp430_gdbarch_init): Likewise.
10603         * mt-tdep.c (mt_gdbarch_init): Likewise.
10604         * nds32-tdep.c (nds32_gdbarch_init): Likewise.
10605         * nios2-tdep.c (nios2_print_insn): Remove.
10606         (nios2_gdbarch_init): Don't call set_gdbarch_print_insn.
10607         * rx-tdep.c (rx_gdbarch_init): Likewise.
10608         * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
10609         * score-tdep.c (score_print_insn): Remove.
10610         (score_gdbarch_init): Don't call set_gdbarch_print_insn.
10611         * sh-tdep.c (sh_gdbarch_init): Likewise.
10612         * sh64-tdep.c (sh64_gdbarch_init): Likewise.
10613         * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
10614         * tic6x-tdep.c (tic6x_print_insn): Remove.
10615         (tic6x_gdbarch_init): Don't call set_gdbarch_print_insn.
10616         * tilegx-tdep.c (tilegx_gdbarch_init): Likewise.
10617         * v850-tdep.c (v850_gdbarch_init): Likewise.
10618         * vax-tdep.c (vax_gdbarch_init): Likewise.
10619         * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
10620         * xtensa-tdep.c (xtensa_gdbarch_init): Likewise.
10621
10622 2017-05-23  John Baldwin  <jhb@FreeBSD.org>
10623
10624         * mips-fbsd-tdep.c (MIPS_PC_REGNUM): Remove.
10625         (MIPS_FP0_REGNUM): Remove.
10626         (MIPS_FSR_REGNUM): Remove.
10627         (mips_fbsd_supply_fpregs): Use mips_regnum.
10628         (mips_fbsd_supply_gregs): Likewise.
10629         (mips_fbsd_collect_fpregs): Likewise.
10630         (mips_fbsd_collect_gregs): Likewise.
10631
10632 2017-05-23  John Baldwin  <jhb@FreeBSD.org>
10633
10634         * mips-fbsd-nat.c (getregs_supplies): Fix upper bound comparison.
10635         (getpfpregs_supplies): New function.
10636         (mips_fbsd_fetch_inferior_registers): Remove early exit and use
10637         getfpregs_supplies.
10638         (mips_fbsd_store_inferior_registers): Likewise.
10639
10640 2017-05-22  Pedro Alves <palves@redhat.com>
10641
10642         * MAINTAINERS (Host/Native): Add John Baldwin as FreeBSD
10643         maintainer.
10644
10645 2017-05-22  Alan Hayward  <alan.hayward@arm.com>
10646
10647         * ppc-linux-nat.c (fetch_register): Use PPC_MAX_REGISTER_SIZE.
10648         (store_register): Likewise.
10649         * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
10650         (get_decimal_float_return_value): Likewise.
10651         (do_ppc_sysv_return_value): Likewise.
10652         (ppc64_sysv_abi_push_integer): Likewise.
10653         (ppc64_sysv_abi_push_freg): Likewise.
10654         (ppc64_sysv_abi_return_value_base): Likewise.
10655         (ppc64_sysv_abi_return_value): Likewise.
10656         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
10657         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
10658         * rs6000-nat.c: Likewise.
10659         * rs6000-tdep.c (rs6000_register_to_value): Likewise.
10660         (rs6000_value_to_register): Likewise.
10661         * ppc-tdep.h (PPC_MAX_REGISTER_SIZE): Add.
10662
10663 2017-05-21  Tom Tromey  <tom@tromey.com>
10664
10665         PR rust/21466:
10666         * rust-lang.c (rust_print_type) <TYPE_CODE_ARRAY>: Print unsized
10667         arrays as "[T]", not "[T; ]".
10668
10669 2017-05-19  Tom Tromey  <tom@tromey.com>
10670
10671         PR rust/21484:
10672         * rust-lang.c (exp_descriptor_rust): New function.
10673         (rust_language_defn): Use it.
10674         * p-lang.c (pascal_language_defn): Update.
10675         * opencl-lang.c (opencl_language_defn): Update.
10676         * objc-lang.c (objc_language_defn): Update.
10677         * m2-lang.c (m2_language_defn): Update.
10678         * language.h (struct language_defn)
10679         <la_watch_location_expression>: New member.
10680         * language.c (unknown_language_defn, auto_language_defn)
10681         (local_language_defn): Update.
10682         * go-lang.c (go_language_defn): Update.
10683         * f-lang.c (f_language_defn): Update.
10684         * d-lang.c (d_language_defn): Update.
10685         * c-lang.h (c_watch_location_expression): Declare.
10686         * c-lang.c (c_watch_location_expression): New function.
10687         (c_language_defn, cplus_language_defn, asm_language_defn)
10688         (minimal_language_defn): Use it.
10689         * breakpoint.c (watch_command_1): Call
10690         la_watch_location_expression.
10691         * ada-lang.c (ada_language_defn): Update.
10692
10693 2017-05-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10694
10695         PR tui/21482
10696         * gdb_curses.h (NOMACROS): Define.
10697         (NCURSES_NOMACROS): Define.
10698
10699 2017-05-19  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10700
10701         PR tui/21482
10702         * tui/tui-windata.c (tui_erase_data_content): Cast last mvwaddstr
10703         arg to char *.
10704         * tui/tui-wingeneral.c (box_win): Likewise.
10705         * tui/tui-winsource.c (tui_erase_source_content): Likewise.
10706         (tui_show_source_line): Likewise.
10707         (tui_show_exec_info_content): Likewise.
10708
10709 2017-05-19  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>
10710
10711         * sparc-tdep.c (sparc_structure_return_p)
10712         (sparc_arg_on_registers_p): New functions.
10713         (sparc32_store_arguments): Use them.
10714         * sparc64-tdep.c (sparc64_16_byte_align_p)
10715         (sparc64_store_floating_fields, sparc64_extract_floating_fields):
10716         Handle TYPE_CODE_ARRAY.
10717
10718 2017-05-17  Yao Qi  <yao.qi@linaro.org>
10719
10720         * cli/cli-decode.c (add_alias_cmd): New function.
10721         * command.h (add_alias_cmd): Declare.
10722         * infcmd.c (_initialize_infcmd): Don't call add_com_alias,
10723         instead call add_alias_cmd.
10724
10725 2017-05-17  Pedro Alves  <palves@redhat.com>
10726
10727         * Makefile.in (nat_extra_makefile_frag): Rename to ...
10728         (nat_makefile_frag): ... this.  All references updated.
10729         * configure.ac: Likewise.
10730         * configure.nat: Likewise.  Enhance comments.
10731         * configure: Regenerate.
10732
10733 2017-05-15  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
10734
10735         * procfs.c (procfs_create_inferior): Change prototype to match
10736         definition.
10737
10738 2017-05-13  Eli Zaretskii  <eliz@gnu.org>
10739
10740         * tui/tui.c (tui_enable): Cast "unknown" to 'char *' to avoid a
10741         C++ compiler warning.
10742
10743 2017-05-12  Tom Tromey  <tom@tromey.com>
10744
10745         PR rust/21483:
10746         * rust-lang.c (rust_evaluate_subexp) <STRUCTOP_STRUCT>: Don't
10747         recurse, just call value_struct_elt directly.
10748
10749 2017-05-12  Tom Tromey  <tom@tromey.com>
10750
10751         * rust-lang.c (rust_dump_subexp_body) <STRUCTOP_ANONYMOUS,
10752         OP_RUST_ARRAY>: Fix.
10753
10754 2017-05-12  Tom Tromey  <tom@tromey.com>
10755
10756         * rust-lang.c (rust_print_subexp): Replace "return" with "break".
10757
10758 2017-05-09  Yao Qi  <yao.qi@linaro.org>
10759
10760         * regcache.c: Include <forward_list>.
10761         (struct regcache_list): Remove.
10762         (current_regcache): Update.
10763         (get_thread_arch_aspace_regcache): Update for std::forward_list.
10764         (regcache_thread_ptid_changed): Likewise.
10765         (registers_changed_ptid): Likewise.
10766         (current_regcache_size): Likewise.
10767
10768 2017-05-09  Yao Qi  <yao.qi@linaro.org>
10769
10770         * regcache.c [GDB_SELF_TEST]: Include selftest.h.
10771         (current_regcache_size): New function.
10772         (current_regcache_test): New function.
10773         (_initialize_regcache) [GDB_SELF_TEST]: Register the unit test.
10774
10775 2017-05-08  Alan Hayward  <alan.hayward@arm.com>
10776
10777         * mips-tdep.c (mips_o32_return_value): Remove unused buffer.
10778         (print_gp_register_row): Use get_frame_register_value.
10779
10780 2017-05-08  Alan Hayward  <alan.hayward@arm.com>
10781
10782         * mips-linux-tdep.c (mips_supply_gregset): Use raw_supply_zeroed.
10783         (mips_supply_fpregset): Likewise.
10784         (mips64_supply_gregset): Likewise.
10785
10786 2017-05-08  Alan Hayward  <alan.hayward@arm.com>
10787
10788         * mn10300-linux-tdep.c (am33_supply_gregset_method): Use 
10789         regcache->raw_supply_zeroed.
10790
10791 2017-05-06  Sergio Durigan Junior  <sergiodj@redhat.com>
10792
10793         * configure.nat: Rearrange 'case' statements to match
10794         host before cpu.
10795
10796 2017-05-06  Sergio Durigan Junior  <sergiodj@redhat.com>
10797
10798         * Makefile.in: Remove "@host_makefile_frag@".  Add variables
10799         NAT_FILE, NATDEPFILES, NAT_CDEPS, LOADLIBES, MH_CFLAGS, XM_CLIBS,
10800         NAT_GENERATED_FILES, HAVE_NATIVE_GCORE_HOST.  Add
10801         "@nat_extra_makefile_frag@".
10802         (Makefile): Remove dependency on "@frags@".
10803         ($(GNULIB_BUILDDIR)/Makefile): Likewise.
10804         (data-directory/Makefile): Likewise.
10805         * config/aarch64/linux.mh: Deleted; moved contents to
10806         "gdb/configure.nat".
10807         * config/alpha/alpha-linux.mh: Likewise.
10808         * config/alpha/nbsd.mh: Likewise.
10809         * config/arm/linux.mh: Likewise.
10810         * config/arm/nbsdelf.mh: Likewise.
10811         * config/i386/cygwin.mh: Likewise.
10812         * config/i386/cygwin64.mh: Likewise.
10813         * config/i386/darwin.mh: Likewise.
10814         * config/i386/fbsd.mh: Likewise.
10815         * config/i386/fbsd64.mh: Likewise.
10816         * config/i386/go32.mh: Likewise.
10817         * config/i386/i386gnu.mh: Likewise.
10818         * config/i386/i386sol2.mh: Likewise.
10819         * config/i386/linux.mh: Likewise.
10820         * config/i386/linux64.mh: Likewise.
10821         * config/i386/mingw.mh: Likewise.
10822         * config/i386/mingw64.mh: Likewise.
10823         * config/i386/nbsd64.mh: Likewise.
10824         * config/i386/nbsdelf.mh: Likewise.
10825         * config/i386/nto.mh: Likewise.
10826         * config/i386/obsd.mh: Likewise.
10827         * config/i386/obsd64.mh: Likewise.
10828         * config/i386/sol2-64.mh: Likewise.
10829         * config/ia64/linux.mh: Likewise.
10830         * config/m32r/linux.mh: Likewise.
10831         * config/m68k/linux.mh: Likewise.
10832         * config/m68k/nbsdelf.mh: Likewise.
10833         * config/m68k/obsd.mh: Likewise.
10834         * config/m88k/obsd.mh: Likewise.
10835         * config/mips/fbsd.mh: Likewise.
10836         * config/mips/linux.mh: Likewise.
10837         * config/mips/nbsd.mh: Likewise.
10838         * config/mips/obsd64.mh: Likewise.
10839         * config/pa/linux.mh: Likewise.
10840         * config/pa/nbsd.mh: Likewise.
10841         * config/pa/obsd.mh: Likewise.
10842         * config/powerpc/aix.mh: Likewise.
10843         * config/powerpc/fbsd.mh: Likewise.
10844         * config/powerpc/linux.mh: Likewise.
10845         * config/powerpc/nbsd.mh: Likewise.
10846         * config/powerpc/obsd.mh: Likewise.
10847         * config/powerpc/ppc64-linux.mh: Likewise.
10848         * config/powerpc/spu-linux.mh: Likewise.
10849         * config/s390/linux.mh: Likewise.
10850         * config/sh/nbsd.mh: Likewise.
10851         * config/sparc/fbsd.mh: Likewise.
10852         * config/sparc/linux.mh: Likewise.
10853         * config/sparc/linux64.mh: Likewise.
10854         * config/sparc/nbsd64.mh: Likewise.
10855         * config/sparc/nbsdelf.mh: Likewise.
10856         * config/sparc/obsd64.mh: Likewise.
10857         * config/sparc/sol2.mh: Likewise.
10858         * config/tilegx/linux.mh: Likewise.
10859         * config/vax/nbsdelf.mh: Likewise.
10860         * config/vax/obsd.mh: Likewise.
10861         * config/xtensa/linux.mh: Likewise.
10862         * config/i386/i386gnu.mn: New file, with excerpts from
10863         "config/i386/i386gnu.mh".
10864         * configure: Regenerate.
10865         * configure.ac: Rewrite code to use "gdb/configure.nat" instead of
10866         *.mh files under "gdb/config".
10867         * configure.nat: New file, with contents from the
10868         "gdb/config/*/*.mh" files.
10869
10870 2017-05-05  Tim Wiederhake  <tim.wiederhake@intel.com>
10871
10872         * btrace.c (btrace_clear): Free insn vector.
10873
10874 2017-05-05  Pedro Alves  <palves@redhat.com>
10875
10876         * warning.m4 (build_warnings): Add -Wno-error=maybe-uninitialized.
10877         * configure: Regenerate.
10878
10879 2017-05-04  Pedro Alves  <palves@redhat.com>
10880
10881         * Makefile.in (SFILES): Add progspace-and-thread.c.
10882         (HFILES_NO_SRCDIR): Add progspace-and-thread.h.
10883         (COMMON_OBS): Add progspace-and-thread.o.
10884         * breakpoint.c: Include "progspace-and-thread.h".
10885         (update_inserted_breakpoint_locations)
10886         (insert_breakpoint_locations, create_longjmp_master_breakpoint):
10887         Use scoped_restore_current_pspace_and_thread.
10888         (create_std_terminate_master_breakpoint): Use
10889         scoped_restore_current_program_space.
10890         (remove_breakpoint): Use scoped_restore_current_pspace_and_thread.
10891         (print_breakpoint_location): Use
10892         scoped_restore_current_program_space.
10893         (bp_loc_is_permanent): Use
10894         scoped_restore_current_pspace_and_thread.
10895         (resolve_sal_pc): Use scoped_restore_current_pspace_and_thread.
10896         (download_tracepoint_locations): Use
10897         scoped_restore_current_pspace_and_thread.
10898         (breakpoint_re_set): Use scoped_restore_current_pspace_and_thread.
10899         * exec.c (exec_close_1): Use scoped_restore_current_program_space.
10900         (enum step_over_calls_kind): Moved from inferior.h.
10901         (class scoped_restore_current_thread): New class.
10902         * gdbthread.h (make_cleanup_restore_current_thread): Delete
10903         declaration.
10904         (scoped_restore_current_thread): New class.
10905         * infcmd.c: Include "common/gdb_optional.h".
10906         (continue_1, proceed_after_attach): Use
10907         scoped_restore_current_thread.
10908         (notice_new_inferior): Use scoped_restore_current_thread.
10909         * inferior.c: Include "progspace-and-thread.h".
10910         (restore_inferior, save_current_inferior): Delete.
10911         (add_inferior_command, clone_inferior_command): Use
10912         scoped_restore_current_pspace_and_thread.
10913         * inferior.h (scoped_restore_current_inferior): New class.
10914         * infrun.c: Include "progspace-and-thread.h" and
10915         "common/gdb_optional.h".
10916         (follow_fork_inferior): Use
10917         scoped_restore_current_pspace_and_thread.
10918         (scoped_restore_exited_inferior): New class.
10919         (handle_vfork_child_exec_or_exit): Use
10920         scoped_restore_exited_inferior,
10921         scoped_restore_current_pspace_and_thread,
10922         scoped_restore_current_thread and scoped_restore.
10923         (fetch_inferior_event): Use scoped_restore_current_thread.
10924         * linespec.c (decode_line_full, decode_line_1): Use
10925         scoped_restore_current_program_space.
10926         * mi/mi-main.c: Include "progspace-and-thread.h".
10927         (exec_continue): Use scoped_restore_current_thread.
10928         (mi_cmd_exec_run): Use scoped_restore_current_pspace_and_thread.
10929         (mi_cmd_trace_frame_collected): Use scoped_restore_current_thread.
10930         * proc-service.c (ps_pglobal_lookup): Use
10931         scoped_restore_current_program_space.
10932         * progspace-and-thread.c: New file.
10933         * progspace-and-thread.h: New file.
10934         * progspace.c (release_program_space, clone_program_space): Use
10935         scoped_restore_current_program_space.
10936         (restore_program_space, save_current_program_space)
10937         (save_current_space_and_thread): Delete.
10938         (switch_to_program_space_and_thread): Moved to
10939         progspace-and-thread.c.
10940         * progspace.h (save_current_program_space)
10941         (save_current_space_and_thread): Delete declarations.
10942         (scoped_restore_current_program_space): New class.
10943         * remote.c (remote_btrace_maybe_reopen): Use
10944         scoped_restore_current_thread.
10945         * symtab.c: Include "progspace-and-thread.h".
10946         (skip_prologue_sal): Use scoped_restore_current_pspace_and_thread.
10947         * thread.c (print_thread_info_1): Use
10948         scoped_restore_current_thread.
10949         (struct current_thread_cleanup): Delete.
10950         (do_restore_current_thread_cleanup)
10951         (restore_current_thread_cleanup_dtor): Rename/convert both to ...
10952         (scoped_restore_current_thread::~scoped_restore_current_thread):
10953         ... this new dtor.
10954         (make_cleanup_restore_current_thread): Rename/convert to ...
10955         (scoped_restore_current_thread::scoped_restore_current_thread):
10956         ... this new ctor.
10957         (thread_apply_all_command): Use scoped_restore_current_thread.
10958         (thread_apply_command): Use scoped_restore_current_thread.
10959         * tracepoint.c (tdump_command): Use scoped_restore_current_thread.
10960         * varobj.c (value_of_root_1): Use scoped_restore_current_thread.
10961
10962 2017-05-04  Pedro Alves  <palves@redhat.com>
10963
10964         * thread.c (make_cleanup_restore_current_thread): Move
10965         find_thread_ptid call before the is_stopped call.  Assert that the
10966         thread is found.  Replace is_stopped call by checking the thread's
10967         state directly.  Remove unnecessary NULL-thread check.
10968
10969 2017-05-04  Pedro Alves  <palves@redhat.com>
10970
10971         * corelow.c (thread_section_name): New class.
10972         (get_core_register_section, get_core_siginfo): Use it.
10973
10974 2017-05-04  Andreas Arnez  <arnez@linux.vnet.ibm.com>
10975
10976         * corelow.c (sniff_core_bfd): Remove extra semicolon.
10977         (get_core_register_section): Remove xfree of NULL pointer.
10978
10979 2017-05-03  Alan Hayward  <alan.hayward@arm.com>
10980
10981         * frv-linux-tdep.c (frv_linux_supply_gregset): Use raw_supply_zeroed.
10982         * regcache.c (regcache::raw_supply_zeroed): New function.
10983         * regcache.h (regcache::raw_supply_zeroed): New declaration.
10984
10985 2017-05-03  Simon Marchi  <simon.marchi@ericsson.com>
10986
10987         * gdbarch.sh: Remove commented out definition of
10988         TARGET_CHAR_BIT.
10989         * gdbarch.h: Re-generate.
10990
10991 2017-05-03  Sergio Durigan Junior  <sergiodj@redhat.com>
10992
10993         * configure: Regenerate.
10994
10995 2017-05-02  Simon Marchi  <simon.marchi@ericsson.com>
10996
10997         * solib-target.c (solib_target_relocate_section_addresses):
10998         Remove num_section_bases, num_bases, segment_bases variables.
10999
11000 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
11001
11002         * common/gdb_vecs.h (DEF_VEC_I (CORE_ADDR)): Remove.
11003
11004 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
11005
11006         * solib-target.c: Include <vector>
11007         (struct lm_info_target) <~lm_info_target>: Remove.
11008         <segment_bases, section_bases>: Change type to
11009         std::vector<CORE_ADDR>.
11010         (library_list_start_segment, library_list_start_section,
11011         library_list_end_library,
11012         solib_target_relocate_section_addresses): Adjust.
11013
11014 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
11015
11016         * gdbarch.sh (software_single_step): Change return type to
11017         std::vector<CORE_ADDR>.
11018         * gdbarch.c, gdbarch.h: Re-generate.
11019         * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw):
11020         Adjust.
11021         (arm_deal_with_atomic_sequence_raw): Adjust.
11022         (thumb_get_next_pcs_raw): Adjust.
11023         (arm_get_next_pcs_raw): Adjust.
11024         (arm_get_next_pcs): Adjust.
11025         * arch/arm-get-next-pcs.h (arm_get_next_pcs): Adjust.
11026         * aarch64-tdep.c (aarch64_software_single_step): Adjust.
11027         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Adjust.
11028         (alpha_software_single_step): Adjust.
11029         * alpha-tdep.h (alpha_software_single_step): Adjust.
11030         * arm-linux-tdep.c (arm_linux_software_single_step): Adjust.
11031         * arm-tdep.c (arm_software_single_step): Adjust.
11032         (arm_breakpoint_kind_from_current_state): Adjust.
11033         * arm-tdep.h (arm_software_single_step): Adjust.
11034         * breakpoint.c (insert_single_step_breakpoint): Adjust.
11035         * cris-tdep.c (cris_software_single_step): Adjust.
11036         * mips-tdep.c (mips_deal_with_atomic_sequence): Adjust.
11037         (micromips_deal_with_atomic_sequence): Adjust.
11038         (deal_with_atomic_sequence): Adjust.
11039         (mips_software_single_step): Adjust.
11040         * mips-tdep.h (mips_software_single_step): Adjust.
11041         * moxie-tdep.c (moxie_software_single_step): Adjust.
11042         * nios2-tdep.c (nios2_software_single_step): Adjust.
11043         * ppc-tdep.h (ppc_deal_with_atomic_sequence): Adjust.
11044         * rs6000-aix-tdep.c (rs6000_software_single_step): Adjust.
11045         * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Adjust.
11046         * s390-linux-tdep.c (s390_software_single_step): Adjust.
11047         * sparc-tdep.c (sparc_software_single_step): Adjust.
11048         * spu-tdep.c (spu_software_single_step): Adjust.
11049         * tic6x-tdep.c (tic6x_software_single_step): Adjust.
11050
11051 2017-05-02  Simon Marchi  <simon.marchi@polymtl.ca>
11052
11053         * gdbarch.sh: Use semi-colon as field separator instead of colon.
11054         * gdbarch.h: Re-generate.
11055
11056 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
11057
11058         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-instruction.o.
11059         (SUBDIR_PYTHON_SRCS): Add py-instruction.c.
11060         * python/py-instruction.c, python/py-instruction.h: New file.
11061         * python/py-record.c: Add py-instruction.h include.
11062         (gdbpy_initialize_record): Make gdb.Instruction a super class of
11063         gdb.RecordInstruction.
11064         * python/python-internal.h: Add gdbpy_initialize_instruction
11065         declaration.
11066         * python/python.c (do_start_initialization): Add
11067         gdbpy_initialize_instruction.
11068
11069 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
11070
11071         * python/py-record-btrace.c (BTPY_REQUIRE_VALID_CALL, btpy_call_type):
11072         Remove.
11073         (btrace_func_from_recpy_func): New function.
11074         (btpy_call_new, btpy_number, btpy_hash, btpy_richcompare): Remove.
11075         (btpy_call_level, btpy_call_symbol, btpy_call_instructions,
11076         btpy_call_up, btpy_call_prev_sibling, btpy_call_next_sibling): Rename to ...
11077         (recpy_bt_func_level, recpy_bt_func_symbol, recpy_bt_func_instructions,
11078         recpy_bt_func_up, recpy_bt_func_prev, recpy_bt_func_next): This.
11079         Also, use new helper functions.
11080         (btpy_list_item): Use new helper functions.
11081         (recpy_bt_function_call_history): Use new type name.
11082         (btpy_call_getset): Remove.
11083         (gdbpy_initialize_btrace): Remove code to initialize
11084         gdb.BtraceFunctionCall.
11085         * python/py-record-btrace.h (recpy_bt_func_number, recpy_btb_func_level,
11086         recpy_btb_func_symbol, recpy_bt_func_instructions, recpy_bt_func_up,
11087         recpy_bt_func_prev, recpy_bt_func_next): New export.
11088         * python/py-record.c (recpy_func_type): New static object.
11089         (recpy_func_new, recpy_func_level, recpy_func_symbol,
11090         recpy_func_instructions, recpy_func_up, recpy_func_prev,
11091         recpy_func_next): New function.
11092         (recpy_element_hash, recpy_element_richcompare): Updated comment.
11093         (recpy_func_getset): New static object.
11094         (gdbpy_initialize_record): Add code to initialize gdb.RecordInstruction.
11095         * python/py-record.h (recpy_func_type, recpy_func_new): New export.
11096
11097 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
11098
11099         * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN): Remove.
11100         (btpy_object, btpy_insn_type, btpy_new): Remove.
11101         (btpy_list_object): Use gdb.RecordInstruction type instead of
11102         gdb.BtraceInstruction type.
11103         (btrace_insn_from_recpy_insn): New function.
11104         (btpy_insn_or_gap_new): Adjust comment. Use recpy_insn_new instead of
11105         btpy_new.
11106         (btpy_call_new, btpy_list_item): Do not use btpy_new anymore.
11107         (btpy_number, btpy_hash, btpy_call_level, btpy_call_symbol,
11108         btpy_call_instructions, btpy_call_up, btpy_call_prev_sibling,
11109         btpy_call_next_sibling, btpy_richcompare): Use recpy_element_object
11110         instead of btpy_object.
11111         (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
11112         btpy_insn_data, btpy_insn_decode): Rename to ...
11113         (recpy_bt_insn_sal, recpy_bt_insn_pc, recpy_bt_insn_size,
11114         recpy_bt_insn_is_speculative, recpy_bt_insn_data,
11115         recpy_bt_insn_decode): This.  Also, use new helper functions.
11116         (btpy_list_position, recpy_bt_goto): Use recpy_element_object and
11117         recpy_insn_type.
11118         (btpy_insn_getset): Remove.
11119         (gdbpy_initialize_btrace): Remove code to initialize
11120         gdb.BtraceInstruction.  Use recpy_element_object.
11121         * python/py-record-btrace.h (recpy_bt_insn_number, recpy_bt_insn_sal,
11122         recpy_bt_insn_pc, recpy_bt_insn_data, recpy_bt_insn_decoded,
11123         recpy_bt_insn_size, recpy_bt_insn_is_speculative): New export.
11124         * python/py-record.c (recpy_insn_type): New static object.
11125         (recpy_insn_new, recpy_insn_sal, recpy_insn_pc, recpy_insn_data,
11126         recpy_insn_decoded, recpy_insn_size, recpy_insn_is_speculative,
11127         recpy_element_number, recpy_element_hash, recpy_element_richcompare):
11128         New function.
11129         (recpy_insn_getset): New static object.
11130         (gdbpy_initialize_record): Initialize gdb.RecordInstruction.
11131         * python/py-record.h (recpy_element_object): New typedef.
11132         (recpy_insn_type, recpy_insn_new): New export.
11133
11134 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
11135
11136         * py-record-btrace.c (btpy_insn_new): Removed.
11137         (btpy_insn_or_gap_new): New function.
11138         (btpy_insn_error): Removed.
11139         (btpy_insn_sal, btpy_insn_pc, btpy_insn_size, btpy_insn_is_speculative,
11140         btpy_insn_data, btpy_insn_decode): Remove code path for gaps.
11141         (recpy_bt_replay_position, recpy_bt_begin, recpy_bt_end): Call
11142         btpy_insn_or_gap_new instead of btpy_insn_new.
11143         (btpy_insn_getset): Remove btpy_insn_error.
11144         * py-record.c (recpy_gap_type): New static object.
11145         (recpy_gap_object): New typedef.
11146         (recpy_gap_new, recpy_gap_number, recpy_gap_reason_code,
11147         recpy_gap_reason_string): New function.
11148         (recpy_gap_getset): New static object.
11149         (gdbpy_initialize_record): Initialize gdb.RecordGap type.
11150         * py-record.h (recpy_gap_new): New export.
11151
11152 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
11153
11154         * python/py-record.c (recpy_ptid): Remove.
11155         (recpy_record_getset): Remove recpy_ptid.
11156
11157 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
11158
11159         * btrace.c (btrace_fetch): Set inferior_ptid.
11160         * python/py-record-btrace.c: Add "py-record.h" include.
11161         (recpy_bt_format, recpy_bt_replay_position, recpy_bt_begin,
11162         recpy_bt_end, recpy_bt_instruction_history,
11163         recpy_bt_function_call_history, recpy_bt_goto): Use ptid stored
11164         in gdb.Record object instead of current ptid.
11165         * python/py-record.c: Include new "py-record.h" file.
11166         (recpy_record_object): Moved to py-record.h.
11167         * python/py-record.h: New file.
11168
11169 2017-05-01  Tim Wiederhake  <tim.wiederhake@intel.com>
11170
11171         * python/py-record-btrace.c (BTPY_REQUIRE_VALID_INSN,
11172         BTPY_REQUIRE_VALID_CALL, recpy_bt_function_call_history): Fix
11173         indentation.
11174
11175 2017-05-01  Joel Brobecker  <brobecker@adacore.com>
11176
11177         * MAINTAINERS: Move Daniel Jacobowitz and Mark Kettenis to
11178         the past maintainers section.
11179
11180 2017-04-28  Yao Qi  <yao.qi@linaro.org>
11181
11182         * infcmd.c (get_return_value): Use regcache ctor, and remove
11183         cleanup.
11184
11185 2017-04-28  Yao Qi  <yao.qi@linaro.org>
11186             Pedro Alves  <palves@redhat.com>
11187
11188         * regcache.c (regcache::regcache): New tag dispatch ctor.
11189         (do_cooked_read): Moved above.
11190         (regcache_dup): Use the tag dispatch ctor..
11191         * regcache.h (regcache): Declare ctor, delete copy ctor and
11192         assignment operator, remove friend regcache_dup.
11193
11194 2017-04-28  Yao Qi  <yao.qi@linaro.org>
11195
11196         * regcache.c (regcache_dup): Assert !src->m_readonly_p and
11197         call method save instead of regcache_cpy.
11198         * regcache.h (struct regcache): Make regcache_dup a friend.
11199
11200 2017-04-28  Yao Qi  <yao.qi@linaro.org>
11201
11202         * regcache.c (struct regcache): Move to regcache.h
11203         (regcache::arch): New method.
11204         (regcache_get_ptid): Update.
11205         (get_regcache_arch): Call arch method.
11206         (get_regcache_aspace): Call method aspace.
11207         (register_buffer): Change it to method.
11208         (regcache_save): Change it to regcache::save.
11209         (regcache_restore): Likewise.
11210         (regcache_cpy_no_passthrough): Remove the declaration.
11211         (regcache_cpy): Call methods restore and cpy_no_passthrough.
11212         (regcache_cpy_no_passthrough): Change it to method
11213         cpy_no_passthrough.
11214         (regcache_register_status): Change it to method
11215         get_register_status.
11216         (regcache_invalidate): Change it to method invalidate.
11217         (regcache_thread_ptid_changed): Use methods ptid and set_ptid.
11218         (regcache_raw_update): Change it to method raw_update.
11219         (regcache_raw_read): Likewise.
11220         (regcache_raw_read_signed): Likewise.
11221         (regcache_raw_read_unsigned): Likewise.
11222         (regcache_raw_write_signed): Likewise.
11223         (regcache_raw_write_unsigned): Likewise.
11224         (regcache_cooked_read): Likewise.
11225         (regcache_cooked_read_value): Likewise.
11226         (regcache_cooked_read_signed): Likewise.
11227         (regcache_cooked_read_unsigned): Likewise.
11228         (regcache_cooked_write_signed): Likewise.
11229         (regcache_cooked_write_unsigned): Likewise.
11230         (regcache_raw_set_cached_value): Likewise.
11231         (regcache_raw_write): Likewise.
11232         (regcache_cooked_write): Likewise.
11233         (regcache_xfer_part): Likewise.
11234         (regcache_raw_read_part): Likewise.
11235         (regcache_raw_write_part): Likewise.
11236         (regcache_cooked_read_part): Likewise.
11237         (regcache_cooked_write_part): Likewise.
11238         (regcache_raw_supply): Likewise.
11239         (regcache_raw_collect): Likewise.
11240         (regcache_transfer_regset): Likewise.
11241         (regcache_supply_regset): Likewise.
11242         (regcache_collect_regset): Likewise.
11243         (regcache_debug_print_register): Likewise.
11244         (enum regcache_dump_what): Move it to regcache.h.
11245         (regcache_dump): Change it to method dump.
11246         * regcache.h (enum regcache_dump_what): New.
11247         (class regcache): New.
11248         * target.c (target_fetch_registers): Call method
11249         debug_print_register.
11250         (target_store_registers): Likewise.
11251
11252 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
11253
11254         * windows-nat.c (struct lm_info_windows): Initialize field.
11255         (windows_make_so): Allocate lm_info_windows with new.
11256         (windows_free_so): Free lm_info_windows with delete.
11257
11258 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
11259
11260         * solib-darwin.c (struct lm_info_darwin): Initialize field.
11261         (darwin_current_sos): Allocate lm_info_darwin with new, remove
11262         cleanup.
11263         (darwin_free_so): Free lm_info_darwin with delete.
11264
11265 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
11266
11267         * solib-svr4.h (struct lm_info_svr4): Initialize fields.
11268         <l_addr_p>: Change type to bool.
11269         * solib-svr4.c (lm_info_read): Allocate lm_info_svr4 with new.
11270         (svr4_free_so): Free lm_info_svr4 with delete.
11271         (svr4_copy_library_list): Replace memcpy with call to copy
11272         constructor.
11273         (library_list_start_library, svr4_default_sos): Allocate
11274         lm_info_svr4 with new.
11275
11276 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
11277
11278         * solib-target.c (struct lm_info_target): Add destructor,
11279         initialize fields.
11280         <name>: Change type to std::string.
11281         (library_list_start_library): Allocate lm_info_target with new.
11282         (solib_target_free_library_list): Free lm_info_target with
11283         delete.
11284         (solib_target_current_sos): Adapt to std::string.
11285         (solib_target_free_so): Free lm_info_target with delete.
11286
11287 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
11288
11289         * solib-frv.c (struct lm_info_frv): Add destructor, initialize
11290         fields.
11291         (frv_current_sos): Allocate lm_info_frv with new.
11292         (frv_relocate_main_executable): Free lm_info_frv with delete,
11293         allocate with new.
11294         (frv_clear_solib, frv_free_so): Free lm_info_frv with delete.
11295
11296 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
11297
11298         * solib-frv.c (struct lm_info_frv): Fix indentation.
11299
11300 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
11301
11302         * solib-dsbt.c (struct lm_info_dsbt): Add destructor, initialize
11303         map field.
11304         (dsbt_current_sos): Allocate lm_info_dsbt with new.
11305         (dsbt_relocate_main_executable): Free lm_info_dsbt with delete
11306         and allocate with new.
11307         (dsbt_clear_solib, dsbt_free_so): Free lm_info_dsbt with delete.
11308
11309 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
11310
11311         * solib-aix.c (struct lm_info_aix): Initialize fields in-class.
11312         <filename, member_name>: Change type to std::string.
11313         (solib_aix_new_lm_info, solib_aix_xfree_lm_info): Remove.
11314         (library_list_start_library): Allocate lm_info_aix with new.
11315         (solib_aix_free_library_list, solib_aix_free_so): Free with delete.
11316         (solib_aix_current_sos): Adapt to std::string, copy lm_info_aix
11317         with copy constructor.
11318
11319 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
11320
11321         * solist.h (struct lm_info): Remove.
11322         (struct lm_info_base): New class.
11323         (struct so_list) <lm_info>: Change type to lm_info_base *.
11324         * nto-tdep.c (struct lm_info): Remove.
11325         (lm_addr): Adjust.
11326         * solib-aix.c (struct lm_info): Rename to ...
11327         (struct lm_info_aix): ... this.  Extend lm_info_base.
11328         (lm_info_p): Rename to ...
11329         (lm_info_aix_p): ... this, and adjust.
11330         (solib_aix_new_lm_info, solib_aix_xfree_lm_info,
11331         solib_aix_parse_libraries, library_list_start_library,
11332         solib_aix_free_library_list, solib_aix_parse_libraries,
11333         solib_aix_get_library_list,
11334         solib_aix_relocate_section_addresses, solib_aix_free_so,
11335         solib_aix_get_section_offsets,
11336         solib_aix_solib_create_inferior_hook, solib_aix_current_sos):
11337         Adjust.
11338         (struct solib_aix_inferior_data) <library_list>: Adjust.
11339         * solib-darwin.c (struct lm_info): Rename to ...
11340         (struct lm_info_darwin): ... this.  Extend lm_info_base.
11341         (darwin_current_sos, darwin_relocate_section_addresses): Adjust.
11342         * solib-dsbt.c (struct lm_info): Rename to ...
11343         (struct lm_info_dsbt): ... this.  Extend lm_info_base.
11344         (struct dsbt_info) <main_executable_lm_info): Adjust.
11345         (dsbt_current_sos, dsbt_relocate_main_executable, dsbt_free_so,
11346         dsbt_relocate_section_addresses): Adjust.
11347         * solib-frv.c (struct lm_info): Rename to ...
11348         (struct lm_info_frv): ... this.  Extend lm_info_base.
11349         (main_executable_lm_info): Adjust.
11350         (frv_current_sos, frv_relocate_main_executable, frv_free_so,
11351         frv_relocate_section_addresses, frv_fdpic_find_global_pointer,
11352         find_canonical_descriptor_in_load_object,
11353         frv_fdpic_find_canonical_descriptor): Adjust.
11354         * solib-svr4.c (struct lm_info): Move to solib-svr4.h, renamed
11355         to lm_info_svr4.
11356         (lm_info_read, lm_addr_check, svr4_keep_data_in_core,
11357         svr4_clear_so, svr4_copy_library_list,
11358         library_list_start_library, svr4_default_sos, svr4_read_so_list,
11359         svr4_current_sos, svr4_fetch_objfile_link_map,
11360         solist_update_incremental): Adjust.
11361         * solib-svr4.h (struct lm_info_svr4): Move here from
11362         solib-svr4.c.
11363         * solib-target.c (struct lm_info): Rename to ...
11364         (struct lm_info_target): ... this.  Extend lm_info_base.
11365         (lm_info_p): Rename to ...
11366         (lm_info_target_p): ... this.
11367         (solib_target_parse_libraries, library_list_start_segment,
11368         library_list_start_section, library_list_start_library,
11369         library_list_end_library, solib_target_free_library_list,
11370         solib_target_current_sos, solib_target_free_so,
11371         solib_target_relocate_section_addresses): Adjust.
11372         * windows-nat.c (struct lm_info): Rename to ...
11373         (struct lm_info_windows): ... this.  Extend lm_info_base.
11374         (windows_make_so, handle_load_dll, handle_unload_dll,
11375         windows_xfer_shared_libraries): Adjust.
11376
11377 2017-04-28  Simon Marchi  <simon.marchi@ericsson.com>
11378
11379         * solib-darwin.c (struct darwin_so_list): Remove.
11380         (darwin_current_sos): Allocate an so_list object instead of a
11381         darwin_so_list, separately allocate an lm_info object.
11382         (darwin_free_so): Free lm_info.
11383
11384 2017-04-28  John Baldwin  <jhb@FreeBSD.org>
11385
11386         * mips-tdep.c (print_gp_register_row): Replace printf_filtered
11387         with fprintf_filtered.
11388
11389 2017-04-28  Yao Qi  <yao.qi@linaro.org>
11390
11391         * regcache.c (regcache::regcache): New function.
11392         (regcache::~regcache): New function.
11393         (regcache_xmalloc_1): Remove.
11394         (regcache_xmalloc): Call new regcache.
11395         (regcache_xfree): Call delete regcache.
11396         (get_thread_arch_aspace_regcache): Call new regcache.
11397
11398 2017-04-28  Yao Qi  <yao.qi@linaro.org>
11399
11400         * mips-linux-nat.c (mips_linux_new_thread): Use ptid method
11401         lwp instead of ptid_get_lwp.
11402
11403 2017-04-28  Yao Qi  <yao.qi@linaro.org>
11404
11405         * mips-linux-nat.c (mips_linux_new_thread): Get lwpid from
11406         lwp_info instead of getting from inferior_ptid.
11407
11408 2017-04-27  Keith Seitz  <keiths@redhat.com>
11409
11410         * gdbtypes.c (LVALUE_REFERENCE_TO_RVALUE_BINDING_BADNESS)
11411         DIFFERENT_REFERENCE_TYPE_BADNESS): Remove.
11412         (CV_CONVERSION_BADNESS): Define.
11413         (rank_one_type): Remove overly restrictive rvalue reference
11414         rank checks.
11415         Add cv-qualifier checks and subranks for type equality.
11416         * gdbtypes.h (REFERENCE_CONVERSION_RVALUE,
11417         REFERENCE_CONVERSION_CONST_LVALUE, CV_CONVERSION_BADNESS,
11418         CV_CONVERSION_CONST, CV_CONVERSION_VOLATILE): Declare.
11419
11420 2017-04-27  Simon Marchi  <simon.marchi@ericsson.com>
11421
11422         * python/py-inferior.c (inferior_to_inferior_object): Increment reference
11423         count when creating the object.
11424
11425 2017-04-27  Sangamesh Mallayya  <sangamesh.swamy@in.ibm.com>
11426             Ulrich Weigand  <uweigand@de.ibm.com>
11427
11428         * xcoffread.c (read_xcoff_symtab): Read correct function auxiliary
11429         entry if xlc -qfuncsect or gcc -ffunction-sections compiler option
11430         is used in AIX.
11431         (read_xcoff_symtab): Handle C_WEAKEXT storage class.
11432         (process_xcoff_symbol): Likewise.
11433         (scan_xcoff_symtab): Likewise.
11434
11435 2017-04-26  Alan Hayward  <alan.hayward@arm.com>
11436
11437         * ia64-tdep.c (examine_prologue): Use get_frame_register_unsigned.
11438         (ia64_sigtramp_frame_prev_register): Use read_memory_unsigned_integer.
11439         (ia64_access_reg): Use get_frame_register_unsigned.
11440         (ia64_access_rse_reg): Likewise.
11441         (ia64_libunwind_frame_prev_register): Likewise.
11442
11443 2017-04-26  Jiong Wang  <jiong.wang@arm.com>
11444
11445         * gdbarch.sh: New gdbarch method execute_dwarf_cfa_vendor_op.
11446         * gdbarch.c: Regenerated.
11447         * gdbarch.h: Regenerated.
11448         * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Made the
11449         visibility external.
11450         (execute_cfa_program): Call execute_dwarf_cfa_vendor_op for CFI
11451         between DW_CFA_lo_user and DW_CFA_high_user inclusive.
11452         (enum cfa_how_kind): Move to ...
11453         (struct dwarf2_frame_state_reg_info): Likewise.
11454         (struct dwarf2_frame_state): Likewise.
11455         * dwarf2-frame.h: ... here.
11456         (dwarf2_frame_state_alloc_regs): New declaration.
11457         * sparc-tdep.c (sparc_execute_dwarf_cfa_vendor_op): New function.
11458         (sparc32_gdbarch_init): Register execute_dwarf_cfa_vendor_op hook.
11459
11460 2017-04-26  Alan Hayward  <alan.hayward@arm.com>
11461
11462         * xtensa-tdep.c (xtensa_pseudo_register_read): Use
11463         regcache_raw_read_unsigned.
11464         (xtensa_pseudo_register_write): Likewise.
11465
11466 2017-04-26  Alan Hayward  <alan.hayward@arm.com>
11467
11468         * nds32-tdep.c (nds32_pseudo_register_read): Abort on errors.
11469         (nds32_pseudo_register_write): Likewise.
11470
11471 2017-04-25  Yao Qi  <yao.qi@linaro.org>
11472
11473         * regcache.c (struct regcache) <readonly_p>: Change its type
11474         to bool.
11475         (regcache_xmalloc_1): Update parameter type and callers update.
11476
11477 2017-04-25  Yao Qi  <yao.qi@linaro.org>
11478
11479         * aarch64-tdep.c (aarch64_gdbarch_init): Don't call
11480         set_gdbarch_wchar_bit.
11481         * arm-tdep.c (arm_gdbarch_init): Likewise.
11482
11483 2017-04-25  Pedro Alves  <palves@redhat.com>
11484
11485         * common/poison.h [!HAVE_IS_TRIVIALLY_COPYABLE] (IsRelocatable)
11486         (BothAreRelocatable, memcopy, memmove): Don't define.
11487         * common/traits.h (__has_feature, HAVE_IS_TRIVIALLY_COPYABLE): New
11488         macros.
11489
11490 2017-04-25  Pedro Alves  <palves@redhat.com>
11491
11492         * common/common-defs.h: Include "common/poison.h".
11493         * common/function-view.h: (Not, Or, Requires): Move to traits.h
11494         and adjust.
11495         * common/poison.h: New file.
11496         * common/traits.h: Include <type_traits>.
11497         (Not, Or, Requires): New, moved from common/function-view.h.
11498
11499 2017-04-25  Pedro Alves  <palves@redhat.com>
11500
11501         * breakpoint.h (struct breakpoint): In-class initialize all
11502         fields.  Make boolean fields "bool".
11503         * breakpoint.c (init_raw_breakpoint_without_location): Remove
11504         memset call and initializations no longer necessary.
11505
11506 2017-04-25  Pedro Alves  <palves@redhat.com>
11507
11508         * btrace.c (pt_btrace_insn_flags): Change parameter type to
11509         reference.
11510         (pt_btrace_insn): New function.
11511         (ftrace_add_pt): Remove memset call and use pt_btrace_insn.
11512
11513 2017-04-25  Pedro Alves  <palves@redhat.com>
11514
11515         * ada-lang.c (ada_catchpoint_location): Now a "class".  Remove
11516         "base" field and inherit from "bp_location" instead.  Add
11517         non-default ctor.
11518         (allocate_location_exception): Use new non-default ctor.
11519         * breakpoint.c (get_first_locp_gte_addr): Remove memset call.
11520         (init_bp_location): Convert to ...
11521         (bp_location::bp_location): ... this new ctor, and remove memset
11522         call.
11523         (base_breakpoint_allocate_location): Use the new non-default ctor.
11524         * breakpoint.h (bp_location): Now a class.  Declare default and
11525         non-default ctors.  In-class initialize all members.
11526         (init_bp_location): Remove declaration.
11527
11528 2017-04-25  Pedro Alves  <palves@redhat.com>
11529
11530         * common/enum-flags.h (enum_flags): Don't implement copy ctor and
11531         assignment operator.
11532
11533 2017-04-24  Yao Qi  <yao.qi@linaro.org>
11534
11535         * doublest.c (convert_doublest_to_floatformat): Call
11536         floatformat_totalsize_bytes.
11537
11538 2017-04-22  Tom Tromey  <tom@tromey.com>
11539
11540         * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries): Use
11541         ui_out_emit_list.
11542         * stack.c (print_frame): Use ui_out_emit_list.
11543         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
11544         ui_out_emit_list.
11545         * mi/mi-main.c (print_one_inferior)
11546         (mi_cmd_data_list_register_names)
11547         (mi_cmd_data_list_register_values, mi_cmd_list_features)
11548         (mi_cmd_list_target_features, mi_cmd_trace_frame_collected): Use
11549         ui_out_emit_list.
11550         * mi/mi-interp.c (mi_on_normal_stop_1): Use ui_out_emit_list.
11551         (mi_output_solib_attribs): Use ui_out_emit_list,
11552         ui_out_emit_tuple.
11553         * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_list.
11554         * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
11555         (mi_cmd_stack_list_args, list_args_or_locals): Use
11556         ui_out_emit_list.
11557         * disasm.c (do_assembly_only): Use ui_out_emit_list.
11558         * breakpoint.c (print_solib_event, output_thread_groups): Use
11559         ui_out_emit_list.
11560
11561 2017-04-22  Tom Tromey  <tom@tromey.com>
11562
11563         * mi/mi-main.c (print_variable_or_computed): Use ui_out_emit_tuple.
11564         * mi/mi-cmd-var.c (varobj_update_one): Use ui_out_emit_tuple.
11565         * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_out_emit_tuple.
11566
11567 2017-04-22  Tom Tromey  <tom@tromey.com>
11568
11569         * tracepoint.c (tvariables_info_1)
11570         (print_one_static_tracepoint_marker): Use ui_out_emit_tuple.
11571
11572 2017-04-22  Tom Tromey  <tom@tromey.com>
11573
11574         * stack.c (print_frame_arg): Use ui_out_emit_tuple,
11575         annotate_arg_emitter.
11576         * breakpoint.c (print_mention_watchpoint)
11577         (print_mention_masked_watchpoint): Use ui_out_emit_tuple.
11578         * annotate.h (struct annotate_arg_emitter): New.
11579
11580 2017-04-22  Tom Tromey  <tom@tromey.com>
11581
11582         * record-btrace.c (record_btrace_insn_history)
11583         (record_btrace_insn_history_range, record_btrace_call_history)
11584         (record_btrace_call_history_range): Use ui_out_emit_tuple.
11585         * thread.c (do_captured_list_thread_ids, print_thread_info_1): Use
11586         ui_out_emit_tuple.
11587         * stack.c (print_frame_info): Use ui_out_emit_tuple.
11588         * solib.c (info_sharedlibrary_command): Use ui_out_emit_tuple.
11589         * skip.c (skip_info): Use ui_out_emit_tuple.
11590         * remote.c (show_remote_cmd): Use ui_out_emit_tuple.
11591         * progspace.c (print_program_space): Use ui_out_emit_tuple.
11592         * probe.c (info_probes_for_ops): Use ui_out_emit_tuple.
11593         * osdata.c (info_osdata): Use ui_out_emit_tuple.
11594         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Use
11595         ui_out_emit_tuple.
11596         * mi/mi-main.c (print_one_inferior, list_available_thread_groups)
11597         (output_register, mi_cmd_data_read_memory)
11598         (mi_cmd_data_read_memory_bytes, mi_load_progress)
11599         (mi_cmd_trace_frame_collected): Use ui_out_emit_tuple.
11600         * mi/mi-cmd-var.c (mi_cmd_var_list_children, varobj_update_one):
11601         Use ui_out_emit_tuple.
11602         * mi/mi-cmd-stack.c (mi_cmd_stack_list_args): Use
11603         ui_out_emit_tuple.
11604         * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
11605         (mi_cmd_info_gdb_mi_command): Use ui_out_emit_tuple.
11606         * linux-thread-db.c (info_auto_load_libthread_db): Use
11607         ui_out_emit_tuple.
11608         * inferior.c (print_inferior): Use ui_out_emit_tuple.
11609         * gdb_bfd.c (print_one_bfd): Use ui_out_emit_tuple.
11610         * disasm.c (do_mixed_source_and_assembly_deprecated)
11611         (do_mixed_source_and_assembly): Use ui_out_emit_tuple.
11612         * cp-abi.c (list_cp_abis): Use ui_out_emit_tuple.
11613         * cli/cli-setshow.c (cmd_show_list): Use ui_out_emit_tuple.
11614         * breakpoint.c (print_one_breakpoint_location)
11615         (print_one_breakpoint): Use ui_out_emit_tuple.
11616         * auto-load.c (print_script, info_auto_load_cmd): Use
11617         ui_out_emit_tuple.
11618         * ada-tasks.c (print_ada_task_info): Use ui_out_emit_tuple.
11619
11620 2017-04-21  Simon Marchi  <simon.marchi@ericsson.com>
11621
11622         * thread.c (print_thread_info_1): Remove dead code.
11623
11624 2017-04-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
11625
11626         * aarch64-tdep.c (selftests::aarch64_process_record_test): Make it #if
11627         GDB_SELF_TEST.
11628         * arm-tdep.c (selftests::arm_record_test): Likewise.
11629
11630 2017-04-21  Yao Qi  <yao.qi@linaro.org>
11631
11632         * regcache.c (regcache_restore): Remove argument 2.  Replace
11633         argument 3 with regcache.  Get register status from
11634         src->register_status and get register contents from
11635         register_buffer (src, regnum).
11636         (regcache_cpy): Update.
11637
11638 2017-04-19  Pedro Alves  <palves@redhat.com>
11639
11640         * gdbthread.h (thread): Add missing closing parenthesis in
11641         comment.
11642
11643 2017-04-19  Pedro Alves  <palves@redhat.com>
11644
11645         * common/refcounted-object.h: New file.
11646         * gdbthread.h: Include "common/refcounted-object.h".
11647         (thread_info): Inherit from refcounted_object and add comments.
11648         (thread_info::incref, thread_info::decref)
11649         (thread_info::m_refcount): Delete.
11650         (thread_info::deletable): Use the refcounted_object::refcount()
11651         method.
11652         * inferior.c (current_inferior_): Add comment.
11653         (set_current_inferior): Increment/decrement refcounts.
11654         (prune_inferiors, remove_inferior_command): Skip inferiors marked
11655         not-deletable instead of comparing with the current inferior.
11656         (initialize_inferiors): Increment the initial inferior's refcount.
11657         * inferior.h (struct inferior): Forward declare.
11658         Include "common/refcounted-object.h".
11659         (current_inferior, set_current_inferior): Move declaration to
11660         before struct inferior's definition, and fix comment.
11661         (inferior): Inherit from refcounted_object.  Add comments.
11662         * thread.c (switch_to_thread_no_regs): Reference the thread's
11663         inferior pointer directly instead of doing a ptid lookup.
11664         (switch_to_no_thread): New function.
11665         (switch_to_thread(thread_info *)): New function, factored out
11666         from ...
11667         (switch_to_thread(ptid_t)): ... this.
11668         (restore_current_thread): Delete.
11669         (current_thread_cleanup): Remove 'inf_id' and 'was_removable'
11670         fields, and add 'inf' field.
11671         (do_restore_current_thread_cleanup): Check whether old->inf is
11672         alive instead of looking up an inferior by ptid.  Use
11673         switch_to_thread and switch_to_no_thread.
11674         (restore_current_thread_cleanup_dtor): Use old->inf directly
11675         instead of lookup up an inferior by id.  Decref the inferior.
11676         Don't restore 'removable'.
11677         (make_cleanup_restore_current_thread): Same the inferior pointer
11678         in old, instead of the inferior number.  Incref the inferior.
11679         Don't save/clear 'removable'.
11680
11681 2017-04-19  Pedro Alves  <palves@redhat.com>
11682
11683         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
11684         unittests/scoped_restore-selftests.c.
11685         (SUBDIR_UNITTESTS_OBS): Add scoped_restore-selftests.o.
11686         * common/scoped_restore.h (scoped_restore_base): Make "class".
11687         (scoped_restore_base::release): New public method.
11688         (scoped_restore_base::scoped_restore_base): New protected ctor.
11689         (scoped_restore_base::m_saved_var): New protected field.
11690         (scoped_restore_tmpl::scoped_restore_tmpl(T*)): Initialize the
11691         scoped_restore_base base class instead of m_saved_var directly.
11692         (scoped_restore_tmpl::scoped_restore_tmpl(T*, T2)): Likewise.
11693         (scoped_restore_tmpl::scoped_restore_tmpl(const
11694         scoped_restore_tmpl<T>&)): Likewise.
11695         (scoped_restore_tmpl::~scoped_restore_tmpl): Use the saved_var
11696         method.
11697         (scoped_restore_tmpl::saved_var): New method.
11698         (scoped_restore_tmpl::m_saved_var): Delete.
11699         * inferior.h (inferior::detaching): Now a bool.
11700         * infrun.c (prepare_for_detach): Use a scoped_restore instead of a
11701         cleanup.
11702         * unittests/scoped_restore-selftests.c: New file.
11703
11704 2017-04-19  Pedro Alves  <palves@redhat.com>
11705
11706         * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS):
11707         Re-sort in alphabetic order.
11708
11709 2017-04-18  Pedro Alves  <palves@redhat.com>
11710
11711         * xml-support.c (obstack_xml_printf): Delete.
11712         * xml-support.h (obstack_xml_printf): Delete.
11713
11714 2017-04-18  Pedro Alves  <palves@redhat.com>
11715
11716         * xml-support.c (gdb_xml_parser) <use_dtd, dtd_name, parse,
11717         vdebug, verror, body_text, start_element, end_element, name,
11718         user_data, set_is_xinclude, set_error, expat_parser>: New methods.
11719         <name, user_data, expat_parser, scopes, error, last_line, dtd_name,
11720         is_xinclude>: Make private and add m_ prefix.
11721         (gdb_xml_parser::body_text): New method, based on ...
11722         (gdb_xml_body_text): ... this.  Adjust.
11723         (gdb_xml_parser::vdebug): New method, based on ...
11724         (gdb_xml_debug): ... this.  Adjust.
11725         (gdb_xml_parser::verror): New method, based on ...
11726         (gdb_xml_error): ... this.  Adjust.
11727         (gdb_xml_parser::start_element): New method, based on ...
11728         (gdb_xml_start_element): ... this.  Adjust.
11729         (gdb_xml_start_element_wrapper): Defer to
11730         gdb_xml_parser::start_element and gdb_xml_parser::set_error.
11731         (gdb_xml_parser::end_element): New method, based on ...
11732         (gdb_xml_end_element_wrapper): ... this.  Adjust.
11733         (gdb_xml_parser::~gdb_xml_parser): Adjust.
11734         (gdb_xml_parser::gdb_xml_parser): Adjust to field renames.
11735         (gdb_xml_parser::use_dtd): New method, based on ...
11736         (gdb_xml_use_dtd): ... this.  Adjust.
11737         (gdb_xml_parser::parse): New method, based on ...
11738         (gdb_xml_parse): ... this.  Adjust.
11739         (gdb_xml_parse_quick): Adjust to call the parser's parse method.
11740         (xinclude_start_include): Adjust to call the parser's name method.
11741         (xml_xinclude_default, xml_xinclude_start_doctype)
11742         (xml_xinclude_end_doctype): Adjust to call the parser's user_data
11743         method.
11744         (xml_process_xincludes): Adjust to call parser methods.
11745         * xml-support.h (gdb_xml_use_dtd, gdb_xml_parse): Delete
11746         declarations.
11747
11748 2017-04-18  Pedro Alves  <palves@redhat.com>
11749
11750         * tracefile-tfile.c (tfile_write_tdesc): Adjust to use
11751         gdb::optional<std::string>.
11752         * xml-support.c: Include <string>.
11753         (scope_level::scope_level(scope_level &&))
11754         (scope_level::~scope_level): Delete.
11755         (scope_level::body): Now a std::string.
11756         (gdb_xml_body_text, gdb_xml_end_element): Adjust.
11757         (xinclude_parsing_data::xinclude_parsing_data): Add 'output'
11758         parameter.
11759         (xinclude_parsing_data::~xinclude_parsing_data): Delete.
11760         (xinclude_parsing_data::output): Now a std::string reference.
11761         (xinclude_start_include): Adjust.
11762         (xml_xinclude_default): Adjust.
11763         (xml_process_xincludes): Add 'output' parameter, and return bool.
11764         * xml-support.h (xml_process_xincludes): Add 'output' parameter,
11765         and return bool.
11766         * xml-tdesc.c: Include <unordered_map> and <string>.
11767         (tdesc_xml_cache): Delete.
11768         (tdesc_xml_cache_s): Delete.
11769         (xml_cache): Now an std::unordered_map.
11770         (tdesc_parse_xml): Adjust to use std::string and unordered_map.
11771         (target_fetch_description_xml): Change return type to
11772         gdb::optional<std::string>, and adjust.
11773         * xml-tdesc.h: Include "common/gdb_optional.h" and <string>.
11774         (target_fetch_description_xml): Change return type to
11775         gdb::optional<std::string>.
11776
11777 2017-04-18  Pedro Alves  <palves@redhat.com>
11778
11779         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
11780         unittests/optional-selftests.c.
11781         (SUBDIR_UNITTESTS_OBS): Add optional-selftests.o.
11782         * unittests/optional-selftests.c: New file.
11783         * unittests/optional/assignment/1.cc: New file.
11784         * unittests/optional/assignment/2.cc: New file.
11785         * unittests/optional/assignment/3.cc: New file.
11786         * unittests/optional/assignment/4.cc: New file.
11787         * unittests/optional/assignment/5.cc: New file.
11788         * unittests/optional/assignment/6.cc: New file.
11789         * unittests/optional/assignment/7.cc: New file.
11790         * unittests/optional/cons/copy.cc: New file.
11791         * unittests/optional/cons/default.cc: New file.
11792         * unittests/optional/cons/move.cc: New file.
11793         * unittests/optional/cons/value.cc: New file.
11794         * unittests/optional/in_place.cc: New file.
11795         * unittests/optional/observers/1.cc: New file.
11796         * unittests/optional/observers/2.cc: New file.
11797
11798 2017-04-18  Pedro Alves  <palves@redhat.com>
11799
11800         * common/gdb_optional.h: Include common/traits.h.
11801         (in_place_t): New type.
11802         (in_place): New constexpr variable.
11803         (optional::optional): Remove member initialization of
11804         m_instantiated.
11805         (optional::optional(in_place_t...)): New constructor.
11806         (optional::~optional): Use reset.
11807         (optional::optional(const optional&)): New.
11808         (optional::optional(const optional&&)): New.
11809         (optional::optional(T &)): New.
11810         (optional::optional(T &&)): New.
11811         (operator::operator=(const optional &)): New.
11812         (operator::operator=(optional &&)): New.
11813         (operator::operator= (const T &))
11814         (operator::operator= (T &&))
11815         (operator::emplace (Args &&... args)): Return a T&.  Use reset.
11816         (operator::reset): New.
11817         (operator::m_instantiated):: Add in-class initializer.
11818         * common/traits.h: Include <type_traits>.
11819         (struct And): New types.
11820
11821 2017-04-18  Pedro Alves  <palves@redhat.com>
11822
11823         * xml-support.c: Include <vector>.
11824         (scope_level::scope_level(const gdb_xml_element *))
11825         (scope_level::scope_level(scope_level&&)): New.
11826         (scope_level::~scope_level): New.
11827         (scope_level_s): Delete.
11828         (gdb_xml_parser::scopes): Now a std::vector.
11829         (gdb_xml_body_text, gdb_xml_start_element, gdb_xml_end_element):
11830         Use std::vector.
11831         (gdb_xml_parser::~gdb_xml_parser): Remove now unnecessary
11832         scope cleanup code.
11833         (gdb_xml_parser::gdb_xml_parser): Remove explicit initialization
11834         of the scopes member.  Use std::vector::emplace_back.
11835
11836 2017-04-18  Pedro Alves  <palves@redhat.com>
11837
11838         * xml-support.c (gdb_xml_parser): Add ctor/dtor.  Make is_xinclude
11839         a bool.
11840         (gdb_xml_end_element): Change type of first parameter.
11841         (gdb_xml_cleanup): Rename to ...
11842         (gdb_xml_parser::~gdb_xml_parser): ... this.
11843         (gdb_xml_create_parser_and_cleanup): Delete with ...
11844         (gdb_xml_parser::gdb_xml_parser): ... creation parts factored out
11845         to this new ctor.
11846         (gdb_xml_parse_quick): Create a local gdb_xml_parser instead of
11847         using gdb_xml_create_parser_and_cleanup.
11848         (xinclude_parsing_data): Add ctor/dtor.
11849         (xml_xinclude_cleanup): Delete.
11850         (xml_process_xincludes): Create a local xinclude_parsing_data
11851         instead of heap-allocating one.  Create a local gdb_xml_parser
11852         instead of heap-allocating one with
11853         gdb_xml_create_parser_and_cleanup.
11854
11855 2017-04-18  John Baldwin  <jhb@FreeBSD.org>
11856
11857         PR threads/20743
11858         * fbsd-nat.c (resume_one_thread_cb): Remove.
11859         (resume_all_threads_cb): Remove.
11860         (fbsd_resume): Use ALL_NON_EXITED_THREADS instead of
11861         iterate_over_threads.
11862
11863 2017-04-17  Joel Brobecker  <brobecker@adacore.com>
11864
11865         * NEWS: Create a new section for the next release branch.
11866         Rename the section of the current branch, now that it has
11867         been cut.
11868
11869 2017-04-17  Joel Brobecker  <brobecker@adacore.com>
11870
11871         GDB 8.0 branch created (725bf5cf125783c2a7ca4ab63d3768e220bab2db):
11872         * version.in: Bump version to 8.0.50.DATE-git.
11873
11874 2017-04-13  Sergio Durigan Junior  <sergiodj@redhat.com>
11875
11876         PR gdb/21385
11877         * windows-nat.c (windows_create_inferior): Declare 'allargs'
11878         independently of the host, and fix build breakage on Cygwin.
11879
11880 2017-04-13  Pedro Alves  <palves@redhat.com>
11881
11882         * inferior.c (free_inferior): Convert to ...
11883         (inferior::~inferior): ... this dtor.
11884         (inferior::inferior): New ctor, factored out from ...
11885         (add_inferior_silent): ... here.  Allocate the inferior with a new
11886         expression.
11887         (delete_inferior): Call delete instead of free_inferior.
11888         * inferior.h (gdb_environ, continuation): Forward declare.
11889         (inferior): Now a class.  Add in-class initialization to all
11890         members.  Make boolean fields bool, except 'detaching'.
11891         (inferior::inferior): New explicit ctor.
11892         (inferior::~inferior): New.
11893
11894 2017-04-13  Pedro Alves  <palves@redhat.com>
11895
11896         * inferior.c (init_inferior_list): Delete.
11897         * inferior.h (init_inferior_list): Delete.
11898
11899 2017-04-13  Pedro Alves  <palves@redhat.com>
11900
11901         PR threads/13217
11902         * gdb.threads/threadapply.exp (thr_apply_detach): New procedure.
11903         (top level): Call it twice, with different thread sets.
11904
11905 2017-04-13  Pedro Alves  <palves@redhat.com>
11906
11907         * thread.c: Include <algorithm>.
11908         (thread_array_cleanup): Delete.
11909         (scoped_inc_dec_ref): New class.
11910         (live_threads_count): New function.
11911         (set_thread_refcount): Delete.
11912         (tp_array_compar_ascending): Now a bool.
11913         (tp_array_compar): Convert to a std::sort comparison function.
11914         (thread_apply_all_command): Use std::vector and scoped_inc_dec_ref
11915         and live_threads_count.
11916
11917 2017-04-13  Pedro Alves  <palves@redhat.com>
11918
11919         * infrun.c (follow_fork_inferior): Also switch the current
11920         inferior.
11921
11922 2017-04-13  Pedro Alves  <palves@redhat.com>
11923
11924         * breakpoint.c (watch_command_1): Save watchpoint-frame info
11925         before calling create_internal_breakpoint.
11926
11927 2017-04-13  Pedro Alves  <palves@redhat.com>
11928
11929         * fork-child.c (execv_argv): New class.
11930         (breakup_args): Refactored as ...
11931         (execv_argv::init_for_no_shell): .. this method of execv_argv.
11932         Copy arguments to storage and replace separators with NULL
11933         terminators in place.
11934         (escape_bang_in_quoted_argument): Adjust to return bool.
11935         (execv_argv::execv_argv): New ctor.
11936         (execv_argv::init_for_shell): New method, factored out from
11937         fork_inferior.  Don't strdup strings into the vector.
11938         (fork_inferior): Eliminate "shell" local and use execv_argv.  Use
11939         Remove free_vector_argv call.
11940
11941 2017-04-13  Yao Qi  <yao.qi@linaro.org>
11942
11943         * rx-tdep.c (rx_fpsw_type): Check tdep->rx_fpsw_type instead of
11944         tdep->rx_psw_type.
11945
11946 2017-04-13  Yao Qi  <yao.qi@linaro.org>
11947
11948         * rl78-tdep.c (rl78_gdbarch_init): Use XCNEW instead of XNEW.
11949         * rx-tdep.c (rx_gdbarch_init): Likewise.
11950
11951 2017-04-13  Pedro Alves  <palves@redhat.com>
11952
11953         * breakpoint.h (struct breakpoint): Reindent.
11954
11955 2017-04-13  Pedro Alves  <palves@redhat.com>
11956
11957         * breakpoint.c (bp_location): Rename to ...
11958         (bp_locations): ... this.  All references updated.
11959         (bp_location_count): Rename to ...
11960         (bp_locations_count): ... this.  All references updated.
11961         (bp_location_placed_address_before_address_max): Rename to ...
11962         (bp_locations_placed_address_before_address_max): ... this.  All
11963         references updated.
11964         (bp_location_shadow_len_after_address_max): Rename to ...
11965         (bp_locations_shadow_len_after_address_max): ... this.  All
11966         references updated.
11967         (bp_location_compare_addrs): Rename to ...
11968         (bp_locations_compare_addrs): ... this.  All references updated.
11969         (bp_location_compare):Rename to ...
11970         (bp_locations_compare): ... this.  All references updated.
11971         (bp_location_target_extensions_update): Rename to ...
11972         (bp_locations_target_extensions_update): ... this.  All references
11973         updated.
11974
11975 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
11976
11977         * Makefile.in (HFILES_NO_SRCDIR): Add "common/gdb_termios.h".
11978         * common/common.m4: Check headers 'termios.h', 'termio.h' and
11979         'sgtty.h'.
11980         * common/gdb_termios.h: New file, with parts of "terminal.h".
11981         * inflow.c: Include "gdb_termios.h".
11982         * ser-unix.c: Include "gdb_termios.h".
11983         * terminal.h: Move terminal-related defines to
11984         "common/gdb_termios.h".
11985
11986 2017-04-12  Tom Tromey  <tom@tromey.com>
11987
11988         * probe.c (parse_probes): Update.
11989         * location.h (delete_event_location): Don't declare.
11990         (event_location_deleter::operator()): Update.
11991         * location.c (event_location_deleter::operator()): Rename from
11992         delete_event_location.
11993         * linespec.h (linespec_result) <location>: Change type to
11994         event_location_up.
11995         * linespec.c (canonicalize_linespec, event_location_to_sals)
11996         (decode_objc): Update.
11997         (linespec_result): Don't call delete_event_location.
11998         * breakpoint.c (create_breakpoints_sal)
11999         (bkpt_probe_create_sals_from_location)
12000         (strace_marker_create_sals_from_location): Update.
12001
12002 2017-04-12  Tom Tromey  <tom@tromey.com>
12003
12004         * linespec.h (struct linespec_result): Add constructor and
12005         destructor.
12006         (init_linespec_result, destroy_linespec_result)
12007         (make_cleanup_destroy_linespec_result): Don't declare.
12008         * linespec.c (init_linespec_result): Remove.
12009         (linespec_result::~linespec_result): Rename from
12010         destroy_linespec_result.  Update.
12011         (cleanup_linespec_result, make_cleanup_destroy_linespec_result):
12012         Remove.
12013         * breakpoint.c (create_breakpoint, break_range_command)
12014         (decode_location_default): Update.
12015         * ax-gdb.c (agent_command_1): Update.
12016
12017 2017-04-12  Tom Tromey  <tom@tromey.com>
12018
12019         * remote.c (remote_download_tracepoint): Update.
12020         * python/py-breakpoint.c (bppy_get_location): Update.
12021         * guile/scm-breakpoint.c (bpscm_print_breakpoint_smob)
12022         (gdbscm_breakpoint_location): Update.
12023         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Update.
12024         * breakpoint.h (struct breakpoint) <location, location_range_end>:
12025         Change type to event_location_up.
12026         * breakpoint.c (create_overlay_event_breakpoint)
12027         (create_longjmp_master_breakpoint)
12028         (create_std_terminate_master_breakpoint)
12029         (create_exception_master_breakpoint)
12030         (breakpoint_event_location_empty_p, print_breakpoint_location)
12031         (print_one_breakpoint_location, create_thread_event_breakpoint)
12032         (init_breakpoint_sal, create_breakpoint)
12033         (print_recreate_ranged_breakpoint, break_range_command)
12034         (init_ada_exception_breakpoint, say_where): Update.
12035         (base_breakpoint_dtor): Don't call delete_event_location.
12036         (bkpt_print_recreate, tracepoint_print_recreate)
12037         (dprintf_print_recreate, update_static_tracepoint)
12038         (breakpoint_re_set_default): Update.
12039
12040 2017-04-12  Tom Tromey  <tom@tromey.com>
12041
12042         * compile/compile-loc2c.c (compute_stack_depth_worker): Change
12043         type of "to_do".  Update.
12044         (compute_stack_depth): Use std::vector.
12045
12046 2017-04-12  Tom Tromey  <tom@tromey.com>
12047
12048         * printcmd.c (find_instruction_backward): Use std::vector.
12049
12050 2017-04-12  Tom Tromey  <tom@tromey.com>
12051
12052         * symfile.c (objfilep): Remove typedef.
12053         (reread_symbols): Use a std::vector.
12054
12055 2017-04-12  Tom Tromey  <tom@tromey.com>
12056
12057         * mi/mi-main.c (exec_direction_forward): Remove.
12058         (exec_reverse_continue, mi_execute_command): Use scoped_restore.
12059         * guile/scm-ports.c (ioscm_with_output_to_port_worker): Use
12060         scoped_restore.
12061         * guile/guile.c (guile_repl_command, guile_command)
12062         (gdbscm_execute_gdb_command): Use scoped_restore.
12063         * go-exp.y (go_parse): Use scoped_restore.
12064         * d-exp.y (d_parse): Use scoped_restore.
12065         * cli/cli-decode.c (cmd_func): Use scoped_restore.
12066         * c-exp.y (c_parse): Use scoped_restore.
12067
12068 2017-04-12  Tom Tromey  <tom@tromey.com>
12069
12070         * mi/mi-parse.h (struct mi_parse): Add constructor, destructor.
12071         (mi_parse): Update return type.
12072         (mi_parse_free): Remove.
12073         * mi/mi-parse.c (mi_parse::mi_parse): New constructor.
12074         (mi_parse::~mi_parse): Rename from mi_parse_free.
12075         (mi_parse_cleanup): Remove.
12076         (mi_parse): Return a unique_ptr.  Use new.
12077         * mi/mi-main.c (mi_execute_command): Update.
12078
12079 2017-04-12  Tom Tromey  <tom@tromey.com>
12080
12081         * location.c (explicit_location_lex_one): Return a
12082         unique_xmalloc_ptr.
12083         (string_to_explicit_location): Update.  Remove cleanups.
12084
12085 2017-04-12  Tom Tromey  <tom@tromey.com>
12086
12087         * gnu-v3-abi.c (value_and_voffset_p): Remove typedef.
12088         (compare_value_and_voffset): Change type.  Update.
12089         (compute_vtable_size): Change type of "offset_vec".
12090         (gnuv3_print_vtable): Use std::vector.  Remove cleanups.
12091         (gnuv3_get_typeid): Remove extraneous declaration.
12092
12093 2017-04-12  Tom Tromey  <tom@tromey.com>
12094
12095         * charset.h (wchar_iterator): Fix comment.
12096
12097 2017-04-12  Tom Tromey  <tom@tromey.com>
12098
12099         * charset.c (iconv_wrapper): New class.
12100         (cleanup_iconv): Remove.
12101         (convert_between_encodings): Use it.
12102
12103 2017-04-12  Tom Tromey  <tom@tromey.com>
12104
12105         * symfile.h (increment_reading_symtab): Update type.
12106         * symfile.c (decrement_reading_symtab): Remove.
12107         (increment_reading_symtab): Return a scoped_restore_tmpl<int>.
12108         * psymtab.c (psymtab_to_symtab): Update.
12109         * dwarf2read.c (dw2_instantiate_symtab): Update.
12110
12111 2017-04-12  Tom Tromey  <tom@tromey.com>
12112
12113         * jit.c (struct jit_reader): Declare separately.  Add constructor
12114         and destructor.  Change type of "handle".
12115         (loaded_jit_reader): Define separately.
12116         (jit_reader_load): Update.  New "new".
12117         (jit_reader_unload_command): Use "delete".
12118         * gdb-dlfcn.h (struct dlclose_deleter): New.
12119         (gdb_dlhandle_up): New typedef.
12120         (gdb_dlopen, gdb_dlsym): Update types.
12121         (gdb_dlclose): Remove.
12122         * gdb-dlfcn.c (gdb_dlopen): Return a gdb_dlhandle_up.
12123         (gdb_dlsym): Change type of "handle".
12124         (make_cleanup_dlclose): Remove.
12125         (dlclose_deleter::operator()): Rename from gdb_dlclose.
12126         * compile/compile-c-support.c (load_libcc): Update.
12127
12128 2017-04-12  Tom Tromey  <tom@tromey.com>
12129
12130         * symtab.h (find_pcs_for_symtab_line): Change return type.
12131         * symtab.c (find_pcs_for_symtab_line): Change return type.
12132         * python/py-linetable.c (build_line_table_tuple_from_pcs): Change
12133         type of "vec".  Update.
12134         (ltpy_get_pcs_for_line): Update.
12135         * linespec.c (decode_digits_ordinary): Update.
12136
12137 2017-04-12  Tom Tromey  <tom@tromey.com>
12138
12139         * tracepoint.c (actions_command): Update.
12140         * python/python.c (python_command, python_interactive_command):
12141         Update.
12142         * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
12143         * guile/guile.c (guile_command): Update.
12144         * defs.h (read_command_lines, read_command_lines_1): Return
12145         command_line_up.
12146         (command_lines_deleter): New struct.
12147         (command_line_up): New typedef.
12148         * compile/compile.c (compile_code_command)
12149         (compile_print_command): Update.
12150         * cli/cli-script.h (get_command_line, copy_command_lines): Return
12151         command_line_up.
12152         (make_cleanup_free_command_lines): Remove.
12153         * cli/cli-script.c (get_command_line, read_command_lines_1)
12154         (copy_command_lines): Return command_line_up.
12155         (while_command, if_command, read_command_lines, define_command)
12156         (document_command): Update.
12157         (do_free_command_lines_cleanup, make_cleanup_free_command_lines):
12158         Remove.
12159         * breakpoint.h (breakpoint_set_commands): Change type of
12160         "commands".
12161         * breakpoint.c (breakpoint_set_commands): Change type of
12162         "commands".  Update.
12163         (do_map_commands_command, update_dprintf_command_list)
12164         (create_tracepoint_from_upload): Update.
12165
12166 2017-04-12  Tom Tromey  <tom@tromey.com>
12167
12168         * tracepoint.c (scope_info): Update.
12169         * spu-tdep.c (spu_catch_start): Update.
12170         * python/python.c (gdbpy_decode_line): Update.
12171         * python/py-finishbreakpoint.c (bpfinishpy_init): Update.
12172         * python/py-breakpoint.c (bppy_init): Update.
12173         * probe.c (parse_probes): Update.
12174         * mi/mi-cmd-break.c (mi_cmd_break_insert_1): Update.
12175         * location.h (event_location_deleter): New struct.
12176         (event_location_up): New typedef.
12177         (new_linespec_location, new_address_location, new_probe_location)
12178         (new_explicit_location, copy_event_location)
12179         (string_to_event_location, string_to_event_location_basic)
12180         (string_to_explicit_location): Update return type.
12181         (make_cleanup_delete_event_location): Remove.
12182         * location.c (new_linespec_location, new_address_location)
12183         (new_probe_location, new_explicit_location, copy_event_location):
12184         Return event_location_up.
12185         (delete_event_location_cleanup)
12186         (make_cleanup_delete_event_location): Remove.
12187         (string_to_explicit_location, string_to_event_location_basic)
12188         (string_to_event_location): Return event_location_up.
12189         * linespec.c (canonicalize_linespec, event_location_to_sals)
12190         (decode_line_with_current_source)
12191         (decode_line_with_last_displayed, decode_objc): Update.
12192         * guile/scm-breakpoint.c (gdbscm_register_breakpoint_x): Update.
12193         * completer.c (location_completer): Update.
12194         * cli/cli-cmds.c (edit_command, list_command): Update.
12195         * breakpoint.c (create_overlay_event_breakpoint)
12196         (create_longjmp_master_breakpoint)
12197         (create_std_terminate_master_breakpoint)
12198         (create_exception_master_breakpoint)
12199         (create_thread_event_breakpoint): Update.
12200         (init_breakpoint_sal): Update.  Remove some dead code.
12201         (create_breakpoint_sal): Change type of "location".  Update.
12202         (create_breakpoints_sal, create_breakpoint, break_command_1)
12203         (dprintf_command, break_range_command, until_break_command)
12204         (init_ada_exception_breakpoint)
12205         (strace_marker_create_sals_from_location)
12206         (update_static_tracepoint, trace_command, ftrace_command)
12207         (strace_command, create_tracepoint_from_upload): Update.
12208         * break-catch-throw.c (re_set_exception_catchpoint): Update.
12209         * ax-gdb.c (agent_command_1): Update.
12210
12211 2017-04-12  Pedro Alves  <palves@redhat.com>
12212
12213         * Makefile.in (ALL_TARGET_OBS): Add i386-go32-tdep.o.
12214         * configure.tgt: Handle i[34567]86-*-go32* and
12215         i[34567]86-*-msdosdjgpp*.
12216         * i386-tdep.c (i386_svr4_reg_to_regnum):
12217         Make extern.
12218         (i386_go32_init_abi, i386_coff_osabi_sniffer): Moved to
12219         i386-go32-tdep.c.
12220         (_initialize_i386_tdep): DJGPP bits moved to i386-go32-tdep.c.
12221         * i386-go32-tdep.c: New file.
12222         * i386-tdep.h (tdesc_i386_mmx, i386_svr4_reg_to_regnum): New
12223         declarations.
12224
12225 2017-04-12  Simon Marchi  <simon.marchi@ericsson.com>
12226
12227         * aix-thread.c (pd_status2str): Change return type to const char *.
12228
12229 2017-04-12  Pedro Alves  <palves@redhat.com>
12230
12231         * i386-tdep.c (i386_elf_init_abi, i386_go32_init_abi): Remove
12232         calls to set_gdbarch_gnu_triplet_regexp.
12233
12234 2017-04-12  Pedro Alves  <palves@redhat.com>
12235
12236         PR gdb/21323
12237         * c-lang.c (cplus_primitive_types) <cplus_primitive_type_wchar_t>:
12238         New enum value.
12239         (cplus_language_arch_info): Register cplus_primitive_type_wchar_t.
12240         * gdbtypes.h (struct builtin_type) <builtin_wchar>: New field.
12241         * gdbtypes.c (gdbtypes_post_init): Create the "wchar_t" type.
12242         * gdbarch.sh (wchar_bit, wchar_signed): New per-arch values.
12243         * gdbarch.h, gdbarch.c: Regenerate.
12244         * aarch64-tdep.c (aarch64_gdbarch_init): Override
12245         gdbarch_wchar_bit and gdbarch_wchar_signed.
12246         * alpha-tdep.c (alpha_gdbarch_init): Likewise.
12247         * arm-tdep.c (arm_gdbarch_init): Likewise.
12248         * avr-tdep.c (avr_gdbarch_init): Likewise.
12249         * h8300-tdep.c (h8300_gdbarch_init): Likewise.
12250         * i386-nto-tdep.c (i386nto_init_abi): Likewise.
12251         * i386-tdep.c (i386_go32_init_abi): Likewise.
12252         * m32r-tdep.c (m32r_gdbarch_init): Likewise.
12253         * moxie-tdep.c (moxie_gdbarch_init): Likewise.
12254         * nds32-tdep.c (nds32_gdbarch_init): Likewise.
12255         * rs6000-aix-tdep.c (rs6000_aix_init_osabi): Likewise.
12256         * sh-tdep.c (sh_gdbarch_init): Likewise.
12257         * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
12258         * sparc64-tdep.c (sparc64_init_abi): Likewise.
12259         * windows-tdep.c (windows_init_abi): Likewise.
12260         * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
12261
12262 2017-04-12  Pedro Alves  <palves@redhat.com>
12263
12264         PR c++/21323
12265         * c-lang.c (cplus_primitive_types) <cplus_primitive_type_char16_t,
12266         cplus_primitive_type_char32_t>: New enum values.
12267         (cplus_language_arch_info): Register cplus_primitive_type_char16_t
12268         and cplus_primitive_type_char32_t.
12269         * dwarf2read.c (read_base_type) <DW_ATE_UTF>: If bit size is 16 or
12270         32, use the archtecture's built-in type for char16_t and char32_t,
12271         respectively.  Otherwise, fallback to init_integer_type as before,
12272         but make the type unsigned, and issue a complaint.
12273         * gdbtypes.c (gdbtypes_post_init): Make char16_t and char32_t unsigned.
12274
12275 2017-04-12  Alan Hayward  <alan.hayward@arm.com>
12276
12277         * m32r-tdep.c (M32R_ARG_REGISTER_SIZE): Added.
12278         (m32r_push_dummy_call): Use M32R_ARG_REGISTER_SIZE.
12279
12280 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
12281
12282         * windows-nat.c (windows_create_inferior): Declare 'toexec' as
12283         'const char *'.
12284
12285 2017-04-12  Sergio Durigan Junior  <sergiodj@redhat.com>
12286
12287         * common/common-utils.c (free_vector_argv): New function.
12288         * common/common-utils.h: Include <vector>.
12289         (free_vector_argv): New prototype.
12290         * darwin-nat.c (darwin_create_inferior): Rewrite function
12291         prototype in order to constify "exec_file" and accept a
12292         "std::string" for "allargs".
12293         * fork-child.c: Include <vector>.
12294         (breakup_args): Rewrite function, using C++.
12295         (fork_inferior): Rewrite function header, constify "exec_file_arg"
12296         and accept "std::string" for "allargs".  Update the code to
12297         calculate "argv" based on "allargs".  Update calls to "exec_fun"
12298         and "execvp".
12299         * gnu-nat.c (gnu_create_inferior): Rewrite function prototype in
12300         order to constify "exec_file" and accept a "std::string" for
12301         "allargs".
12302         * go32-nat.c (go32_create_inferior): Likewise.
12303         * inf-ptrace.c (inf_ptrace_create_inferior): Likewise.
12304         * infcmd.c (run_command_1): Constify "exec_file".  Use
12305         "std::string" for inferior arguments.
12306         * inferior.h (fork_inferior): Update prototype.
12307         * linux-nat.c (linux_nat_create_inferior): Rewrite function
12308         prototype in order to constify "exec_file" and accept a
12309         "std::string" for "allargs".
12310         * nto-procfs.c (procfs_create_inferior): Likewise.
12311         * procfs.c (procfs_create_inferior): Likewise.
12312         * remote-sim.c (gdbsim_create_inferior): Likewise.
12313         * remote.c (extended_remote_run): Update code to accept
12314         "std::string" as argument.
12315         (extended_remote_create_inferior): Rewrite function prototype in
12316         order to constify "exec_file" and accept a "std::string" for
12317         "allargs".
12318         * rs6000-nat.c (super_create_inferior): Likewise.
12319         (rs6000_create_inferior): Likewise.
12320         * target.h (struct target_ops) <to_create_inferior>: Likewise.
12321         * windows-nat.c (windows_create_inferior): Likewise.
12322
12323 2017-04-11  Pedro Alves  <palves@redhat.com>
12324
12325         * thread.c: Fix whitespace throughout.
12326
12327 2017-04-11  Philipp Rudo  <prudo@linux.vnet.ibm.com>
12328
12329         * linux-nat.c (linux_nat_detach): Remove delete_lwp call.
12330
12331 2017-04-11  Alan Hayward  <alan.hayward@arm.com>
12332
12333         * arm-tdep.c (arm_store_return_value): Use FP_REGISTER_SIZE
12334
12335 2017-04-10  Sergio Durigan Junior  <sergiodj@redhat.com>
12336
12337         PR gdb/21364
12338         * osdata.c (info_osdata): Check if 'type' is an empty string
12339         instead of NULL.
12340
12341 2017-04-10  Pedro Alves  <palves@redhat.com>
12342
12343         * thread.c (add_thread_silent, delete_thread_1, find_thread_ptid)
12344         (ptid_to_global_thread_id, in_thread_list)
12345         (do_captured_list_thread_ids, set_resumed, set_running)
12346         (set_executing, set_stop_requested, finish_thread_state)
12347         (validate_registers_access, can_access_registers_ptid)
12348         (print_thread_info_1, switch_to_thread)
12349         (do_restore_current_thread_cleanup)
12350         (make_cleanup_restore_current_thread, thread_command)
12351         (thread_name_command): Use operator== instead of ptid_equal.
12352
12353 2017-04-10  Pedro Alves  <palves@redhat.com>
12354
12355         * thread.c (struct current_thread_cleanup) <next>: Delete field.
12356         (current_thread_cleanup_chain): Delete.
12357         (restore_current_thread_cleanup_dtor)
12358         (make_cleanup_restore_current_thread): Remove references to
12359         current_thread_cleanup_chain.
12360
12361 2017-04-10  Alan Hayward  <alan.hayward@arm.com>
12362
12363         * msp430-tdep.c (msp430_pseudo_register_read): Never return
12364         REG_UNKNOWN.
12365
12366 2017-04-10  Yao Qi  <yao.qi@linaro.org>
12367
12368         PR gdb/19942
12369         * gdbthread.h (thread_info::deletable): New method.
12370         (thread_info::incref): New method.
12371         (thread_info::decref): New method.
12372         (thread_info::refcount): Move it to private.
12373         * infrun.c (save_stop_context): Call inc_refcount.
12374         (release_stop_context_cleanup): Likewise.
12375         * thread.c (set_thread_exited): New function.
12376         (init_thread_list): Delete "tp" only it is deletable, otherwise
12377         call set_thread_exited.
12378         (delete_thread_1): Call set_thread_exited.
12379         (current_thread_cleanup) <inferior_pid>: Remove.
12380         <thread>: New field.
12381         (restore_current_thread_ptid_changed): Removed.
12382         (do_restore_current_thread_cleanup): Adjust.
12383         (restore_current_thread_cleanup_dtor): Don't call
12384         find_thread_ptid.
12385         (set_thread_refcount): Use dec_refcount.
12386         (make_cleanup_restore_current_thread): Adjust.
12387         (thread_apply_all_command): Call inc_refcount.
12388         (_initialize_thread): Don't call
12389         observer_attach_thread_ptid_changed.
12390
12391 2017-04-10  Yao Qi  <yao.qi@linaro.org>
12392
12393         * thread.c (delete_thread_1): Hoist code on marking thread as
12394         exited.
12395
12396 2017-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12397
12398         * windows-nat.c (windows_detach): Initialize ptid with
12399         minus_one_ptid.
12400
12401 2017-04-07  Simon Marchi  <simon.marchi@ericsson.com>
12402
12403         * unittests/ptid-selftests.c: Fix erroneous assert messages.
12404
12405 2017-04-07  Alan Hayward  <alan.hayward@arm.com>
12406
12407         * bfin-tdep.c (BFIN_MAX_REGISTER_SIZE): Add.
12408         (bfin_pseudo_register_read): Use BFIN_MAX_REGISTER_SIZE.
12409         (bfin_pseudo_register_write): Likewise
12410
12411 2017-04-06  Simon Marchi  <simon.marchi@ericsson.com>
12412
12413         * common/ptid.h (struct ptid): Change to...
12414         (class ptid_t): ... this.
12415         <ptid_t>: New constructors.
12416         <pid, lwp_p, lwp, tid_p, tid, is_pid, operator==, operator!=,
12417         matches>: New methods.
12418         <make_null, make_minus_one>: New static methods.
12419         <pid>: Rename to...
12420         <m_pid>: ...this.
12421         <lwp>: Rename to...
12422         <m_lwp>: ...this.
12423         <tid>: Rename to...
12424         <m_tid>: ...this.
12425         (ptid_build, ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal,
12426         ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match): Take ptid arguments
12427         as references, move comment to class ptid_t.
12428         * common/ptid.c (null_ptid, minus_one_ptid): Initialize with
12429         ptid_t static methods.
12430         (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_tid,
12431         ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p, ptid_match):
12432         Take ptid arguments as references, implement using ptid_t methods.
12433         * unittests/ptid-selftests.c: New file.
12434         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
12435         unittests/ptid-selftests.c.
12436         (SUBDIR_UNITTESTS_OBS): Add unittests/ptid-selftests.o.
12437
12438 2017-04-06  Thomas Preud'homme  <thomas.preudhomme@arm.com>
12439
12440         * python/python.c (python_run_simple_file): Cast mode literal to
12441         non-const char pointer as expected by PyFile_FromString.
12442
12443 2017-04-05  Simon Marchi  <simon.marchi@ericsson.com>
12444
12445         * common/ptid.c (ptid_lwp_p, ptid_tid_p): Remove comparison with
12446         minus_one_ptid and null_ptid.
12447
12448 2017-04-05  Pedro Alves  <palves@redhat.com>
12449
12450         * warning.m4 (build_warnings): Remove -Wno-write-strings.
12451         * configure: Regenerate.
12452
12453 2017-04-05  Pedro Alves  <palves@redhat.com>
12454
12455         * ada-exp.y (yyerror): Constify.
12456         * ada-lang.c (bound_name, get_selections)
12457         (ada_variant_discrim_type)
12458         (ada_variant_discrim_name, ada_value_struct_elt)
12459         (ada_lookup_struct_elt_type, is_unchecked_variant)
12460         (ada_which_variant_applies, standard_exc, ada_get_next_arg)
12461         (catch_ada_exception_command_split)
12462         (catch_ada_assert_command_split, catch_assert_command)
12463         (ada_op_name): Constify.
12464         * ada-lang.h (ada_yyerror, get_selections)
12465         (ada_variant_discrim_name, ada_value_struct_elt): Constify.
12466         * arc-tdep.c (arc_print_frame_cache): Constify.
12467         * arm-tdep.c (arm_skip_stub): Constify.
12468         * ax-gdb.c (gen_binop, gen_struct_ref_recursive, gen_struct_ref)
12469         (gen_aggregate_elt_ref): Constify.
12470         * bcache.c (print_bcache_statistics): Constify.
12471         * bcache.h (print_bcache_statistics): Constify.
12472         * break-catch-throw.c (catch_exception_command_1):
12473         * breakpoint.c (struct ep_type_description::description):
12474         Constify.
12475         (add_solib_catchpoint): Constify.
12476         (catch_fork_command_1): Add cast.
12477         (add_catch_command): Constify.
12478         * breakpoint.h (add_catch_command, add_solib_catchpoint):
12479         Constify.
12480         * bsd-uthread.c (bsd_uthread_state): Constify.
12481         * buildsym.c (patch_subfile_names): Constify.
12482         * buildsym.h (next_symbol_text_func, patch_subfile_names):
12483         Constify.
12484         * c-exp.y (yyerror): Constify.
12485         (token::oper): Constify.
12486         * c-lang.h (c_yyerror, cp_print_class_member): Constify.
12487         * c-varobj.c (cplus_describe_child): Constify.
12488         * charset.c (find_charset_names): Add cast.
12489         (find_charset_names): Constify array and add const_cast.
12490         * cli/cli-cmds.c (complete_command, cd_command): Constify.
12491         (edit_command): Constify.
12492         * cli/cli-decode.c (lookup_cmd): Constify.
12493         * cli/cli-dump.c (dump_memory_command, dump_value_command):
12494         Constify.
12495         (struct dump_context): Constify.
12496         (add_dump_command, restore_command): Constify.
12497         * cli/cli-script.c (get_command_line): Constify.
12498         * cli/cli-script.h (get_command_line): Constify.
12499         * cli/cli-utils.c (check_for_argument): Constify.
12500         * cli/cli-utils.h (check_for_argument): Constify.
12501         * coff-pe-read.c (struct read_pe_section_data): Constify.
12502         * command.h (lookup_cmd): Constify.
12503         * common/print-utils.c (decimal2str): Constify.
12504         * completer.c (gdb_print_filename): Constify.
12505         * corefile.c (set_gnutarget): Constify.
12506         * cp-name-parser.y (yyerror): Constify.
12507         * cp-valprint.c (cp_print_class_member): Constify.
12508         * cris-tdep.c (cris_register_name, crisv32_register_name):
12509         Constify.
12510         * d-exp.y (yyerror): Constify.
12511         (struct token::oper): Constify.
12512         * d-lang.h (d_yyerror): Constify.
12513         * dbxread.c (struct header_file_location::name): Constify.
12514         (add_old_header_file, add_new_header_file, last_function_name)
12515         (dbx_next_symbol_text, add_bincl_to_list)
12516         (find_corresponding_bincl_psymtab, set_namestring)
12517         (find_stab_function_addr, read_dbx_symtab, start_psymtab)
12518         (dbx_end_psymtab, read_ofile_symtab, process_one_symbol):
12519         * defs.h (command_line_input, print_address_symbolic)
12520         (deprecated_readline_begin_hook): Constify.
12521         * dwarf2read.c (anonymous_struct_prefix, dwarf_bool_name):
12522         Constify.
12523         * event-top.c (handle_line_of_input): Constify and add cast.
12524         * exceptions.c (catch_errors): Constify.
12525         * exceptions.h (catch_errors): Constify.
12526         * expprint.c (print_subexp_standard, op_string, op_name)
12527         (op_name_standard, dump_raw_expression, dump_raw_expression):
12528         * expression.h (op_name, op_string, dump_raw_expression):
12529         Constify.
12530         * f-exp.y (yyerror): Constify.
12531         (struct token::oper): Constify.
12532         (struct f77_boolean_val::name): Constify.
12533         * f-lang.c (f_word_break_characters): Constify.
12534         * f-lang.h (f_yyerror): Constify.
12535         * fork-child.c (fork_inferior): Add cast.
12536         * frv-tdep.c (struct gdbarch_tdep::register_names): Constify.
12537         (new_variant): Constify.
12538         * gdbarch.sh (pstring_ptr, pstring_list): Constify.
12539         * gdbarch.c: Regenerate.
12540         * gdbcore.h (set_gnutarget): Constify.
12541         * go-exp.y (yyerror): Constify.
12542         (token::oper): Constify.
12543         * go-lang.h (go_yyerror): Constify.
12544         * go32-nat.c (go32_sysinfo): Constify.
12545         * guile/scm-breakpoint.c (gdbscm_breakpoint_expression): Constify.
12546         * guile/scm-cmd.c (cmdscm_function): Constify.
12547         * guile/scm-param.c (pascm_param_value): Constify.
12548         * h8300-tdep.c (h8300_register_name, h8300s_register_name)
12549         (h8300sx_register_name): Constify.
12550         * hppa-tdep.c (hppa32_register_name, hppa64_register_name):
12551         Constify.
12552         * ia64-tdep.c (ia64_register_names): Constify.
12553         * infcmd.c (construct_inferior_arguments): Constify.
12554         (path_command, attach_post_wait): Constify.
12555         * language.c (show_range_command, show_case_command)
12556         (unk_lang_error): Constify.
12557         * language.h (language_defn::la_error)
12558         (language_defn::la_name_of_this): Constify.
12559         * linespec.c (decode_line_2): Constify.
12560         * linux-thread-db.c (thread_db_err_str): Constify.
12561         * lm32-tdep.c (lm32_register_name): Constify.
12562         * m2-exp.y (yyerror): Constify.
12563         * m2-lang.h (m2_yyerror): Constify.
12564         * m32r-tdep.c (m32r_register_names): Constify and make static.
12565         * m68hc11-tdep.c (m68hc11_register_names): Constify.
12566         * m88k-tdep.c (m88k_register_name): Constify.
12567         * macroexp.c (appendmem): Constify.
12568         * mdebugread.c (fdr_name, add_data_symbol, parse_type)
12569         (upgrade_type, parse_external, parse_partial_symbols)
12570         (mdebug_next_symbol_text, cross_ref, mylookup_symbol, new_psymtab)
12571         (new_symbol): Constify.
12572         * memattr.c (mem_info_command): Constify.
12573         * mep-tdep.c (register_name_from_keyword): Constify.
12574         * mi/mi-cmd-env.c (mi_cmd_env_path, _initialize_mi_cmd_env):
12575         Constify.
12576         * mi/mi-cmd-stack.c (list_args_or_locals): Constify.
12577         * mi/mi-cmd-var.c (mi_cmd_var_show_attributes): Constify.
12578         * mi/mi-main.c (captured_mi_execute_command): Constify and add
12579         cast.
12580         (mi_execute_async_cli_command): Constify.
12581         * mips-tdep.c (mips_register_name): Constify.
12582         * mn10300-tdep.c (register_name, mn10300_generic_register_name)
12583         (am33_register_name, am33_2_register_name)
12584         * moxie-tdep.c (moxie_register_names): Constify.
12585         * nat/linux-osdata.c (osdata_type): Constify fields.
12586         * nto-tdep.c (nto_parse_redirection): Constify.
12587         * objc-lang.c (lookup_struct_typedef, lookup_objc_class)
12588         (lookup_child_selector): Constify.
12589         (objc_methcall::name): Constify.
12590         * objc-lang.h (lookup_objc_class, lookup_child_selector)
12591         (lookup_struct_typedef): Constify.
12592         * objfiles.c (pc_in_section): Constify.
12593         * objfiles.h (pc_in_section): Constify.
12594         * p-exp.y (struct token::oper): Constify.
12595         (yyerror): Constify.
12596         * p-lang.h (pascal_yyerror): Constify.
12597         * parser-defs.h (op_name_standard): Constify.
12598         (op_print::string): Constify.
12599         (exp_descriptor::op_name): Constify.
12600         * printcmd.c (print_address_symbolic): Constify.
12601         * psymtab.c (print_partial_symbols): Constify.
12602         * python/py-breakpoint.c (stop_func): Constify.
12603         (bppy_get_expression): Constify.
12604         * python/py-cmd.c (cmdpy_completer::name): Constify.
12605         (cmdpy_function): Constify.
12606         * python/py-event.c (evpy_add_attribute)
12607         (gdbpy_initialize_event_generic): Constify.
12608         * python/py-event.h (evpy_add_attribute)
12609         (gdbpy_initialize_event_generic): Constify.
12610         * python/py-evts.c (add_new_registry): Constify.
12611         * python/py-finishbreakpoint.c (outofscope_func): Constify.
12612         * python/py-framefilter.c (get_py_iter_from_func): Constify.
12613         * python/py-inferior.c (get_buffer): Add cast.
12614         * python/py-param.c (parm_constant::name): Constify.
12615         * python/py-unwind.c (fprint_frame_id): Constify.
12616         * python/python.c (gdbpy_parameter_value): Constify.
12617         * remote-fileio.c (remote_fio_func_map): Make 'name' const.
12618         * remote.c (memory_packet_config::name): Constify.
12619         (show_packet_config_cmd, remote_write_bytes)
12620         (remote_buffer_add_string):
12621         * reverse.c (exec_reverse_once): Constify.
12622         * rs6000-tdep.c (variant::name, variant::description): Constify.
12623         * rust-exp.y (rustyyerror): Constify.
12624         * rust-lang.c (rust_op_name): Constify.
12625         * rust-lang.h (rustyyerror): Constify.
12626         * serial.h (serial_ops::name): Constify.
12627         * sh-tdep.c (sh_sh_register_name, sh_sh3_register_name)
12628         (sh_sh3e_register_name, sh_sh2e_register_name)
12629         (sh_sh2a_register_name, sh_sh2a_nofpu_register_name)
12630         (sh_sh_dsp_register_name, sh_sh3_dsp_register_name)
12631         (sh_sh4_register_name, sh_sh4_nofpu_register_name)
12632         (sh_sh4al_dsp_register_name): Constify.
12633         * sh64-tdep.c (sh64_register_name): Constify.
12634         * solib-darwin.c (lookup_symbol_from_bfd): Constify.
12635         * spu-tdep.c (spu_register_name, info_spu_dma_cmdlist): Constify.
12636         * stabsread.c (patch_block_stabs, read_type_number)
12637         (ref_map::stabs, ref_add, process_reference)
12638         (symbol_reference_defined, define_symbol, define_symbol)
12639         (error_type, read_type, read_member_functions, read_cpp_abbrev)
12640         (read_one_struct_field, read_struct_fields, read_baseclasses)
12641         (read_tilde_fields, read_struct_type, read_array_type)
12642         (read_enum_type, read_sun_builtin_type, read_sun_floating_type)
12643         (read_huge_number, read_range_type, read_args, common_block_start)
12644         (find_name_end): Constify.
12645         * stabsread.h (common_block_start, define_symbol)
12646         (process_one_symbol, symbol_reference_defined, ref_add):
12647         * symfile.c (get_section_index, add_symbol_file_command):
12648         * symfile.h (get_section_index): Constify.
12649         * target-descriptions.c (tdesc_type::name): Constify.
12650         (tdesc_free_type): Add cast.
12651         * target.c (find_default_run_target):
12652         (add_deprecated_target_alias, find_default_run_target)
12653         (target_announce_detach): Constify.
12654         (do_option): Constify.
12655         * target.h (add_deprecated_target_alias): Constify.
12656         * thread.c (print_thread_info_1): Constify.
12657         * top.c (deprecated_readline_begin_hook, command_line_input):
12658         Constify.
12659         (init_main): Add casts.
12660         * top.h (handle_line_of_input): Constify.
12661         * tracefile-tfile.c (tfile_write_uploaded_tsv): Constify.
12662         * tracepoint.c (tvariables_info_1, trace_status_mi): Constify.
12663         (tfind_command): Rename to ...
12664         (tfind_command_1): ... this and constify.
12665         (tfind_command): New function.
12666         (tfind_end_command, tfind_start_command): Adjust.
12667         (encode_source_string): Constify.
12668         * tracepoint.h (encode_source_string): Constify.
12669         * tui/tui-data.c (tui_partial_win_by_name): Constify.
12670         * tui/tui-data.h (tui_partial_win_by_name): Constify.
12671         * tui/tui-source.c (tui_set_source_content_nil): Constify.
12672         * tui/tui-source.h (tui_set_source_content_nil): Constify.
12673         * tui/tui-win.c (parse_scrolling_args): Constify.
12674         * tui/tui-windata.c (tui_erase_data_content): Constify.
12675         * tui/tui-windata.h (tui_erase_data_content): Constify.
12676         * tui/tui-winsource.c (tui_erase_source_content): Constify.
12677         * tui/tui.c (tui_enable): Add cast.
12678         * utils.c (defaulted_query): Constify.
12679         (init_page_info): Add cast.
12680         (puts_debug, subset_compare): Constify.
12681         * utils.h (subset_compare): Constify.
12682         * varobj.c (varobj_format_string): Constify.
12683         * varobj.h (varobj_format_string): Constify.
12684         * vax-tdep.c (vax_register_name): Constify.
12685         * windows-nat.c (windows_detach): Constify.
12686         * xcoffread.c (process_linenos, xcoff_next_symbol_text): Constify.
12687         * xml-support.c (gdb_xml_end_element): Constify.
12688         * xml-tdesc.c (tdesc_start_reg): Constify.
12689         * xstormy16-tdep.c (xstormy16_register_name): Constify.
12690         * xtensa-tdep.c (xtensa_find_register_by_name): Constify.
12691         * xtensa-tdep.h (xtensa_register_t::name): Constify.
12692
12693 2017-04-05  Pedro Alves  <palves@redhat.com>
12694
12695         * proc-api.c (struct trans): Constify.
12696         (procfs_note): Constify.
12697         * proc-events.c (struct trans, syscall_table):
12698         * proc-flags.c (struct trans): Constify.
12699         * proc-utils.h (procfs_note): Constify.
12700         * proc-why.c (struct trans): Constify.
12701         * procfs.c (dead_procinfo, find_syscall, proc_warn, proc_error)
12702         (procfs_detach): Constify.
12703         * sol-thread.c (struct string_map): Constify.
12704         (td_err_string, td_state_string): Constify.
12705
12706 2017-04-05  Pedro Alves  <palves@redhat.com>
12707
12708         * proc-api.c (procfs_filename): Don't initialize
12709         procfs_filename.
12710         (prepare_to_trace): Assume procfs_filename is non-NULL.
12711         (_initialize_proc_api): Give procfs_filename a default value here.
12712
12713 2017-04-05  Pedro Alves  <palves@redhat.com>
12714
12715         * break-catch-throw.c (handle_gnu_v3_exceptions): Constify
12716         'cond_string' parameter.
12717         (extract_exception_regexp): Constify 'string' parameter.
12718         (catch_exception_command_1): Constify.
12719         * breakpoint.c (init_catchpoint)
12720         (create_fork_vfork_event_catchpoint): Constify 'cond_string'
12721         parameter.
12722         (ep_parse_optional_if_clause, catch_fork_command_1)
12723         (catch_exec_command_1): Constify.
12724         * breakpoint.h (init_catchpoint): Constify 'cond_string'
12725         parameter.
12726         (ep_parse_optional_if_clause): Constify.
12727         * cli/cli-utils.c (remove_trailing_whitespace)
12728         (check_for_argument): Constify.
12729         * cli/cli-utils.h (remove_trailing_whitespace): Constify and add
12730         non-const overload.
12731         (check_for_argument): Likewise.
12732
12733 2017-04-05  Pedro Alves  <palves@redhat.com>
12734
12735         * event-top.c (command_line_handler): Add cast to execute_command
12736         call.
12737         * record-btrace.c (cmd_record_btrace_bts_start)
12738         (cmd_record_btrace_pt_start, cmd_record_btrace_start)
12739         (cmd_record_btrace_start): Add cast to execute_command call.
12740         * record-full.c (record_full_goto_insn):
12741         * record.c (record_start, record_stop): Add cast to
12742         execute_command_to_string calls.
12743         (cmd_record_start): Add cast to execute_command calls.
12744
12745 2017-04-05  Pedro Alves  <palves@redhat.com>
12746
12747         * python/python-internal.h (gdb_PyArg_ParseTupleAndKeywords): New
12748         static inline function.
12749         * python/py-arch.c (archpy_disassemble): Constify 'keywords'
12750         array and use gdb_PyArg_ParseTupleAndKeywords.
12751         * python/py-cmd.c (cmdpy_init): Likewise.
12752         * python/py-finishbreakpoint.c (bpfinishpy_init): Likewise.
12753         * python/py-inferior.c (infpy_read_memory, infpy_write_memory)
12754         (infpy_search_memory): Likewise.
12755         * python/py-objfile.c (objfpy_add_separate_debug_file)
12756         (gdbpy_lookup_objfile): Likewise.
12757         * python/py-symbol.c (gdbpy_lookup_symbol)
12758         (gdbpy_lookup_global_symbol): Likewise.
12759         * python/py-type.c (gdbpy_lookup_type): Likewise.
12760         * python/py-value.c (valpy_lazy_string, valpy_string): Likewise.
12761         * python/python.c (execute_gdb_command, gdbpy_write, gdbpy_flush):
12762         Likewise.
12763
12764 2017-04-05  Pedro Alves  <palves@redhat.com>
12765
12766         * python/python-internal.h (gdb_PyGetSetDef): New type.
12767         * python/py-block.c (block_object_getset)
12768         (breakpoint_object_getset): Now a gdb_PyGetSetDef array.
12769         * python/py-event.c (event_object_getset)
12770         (finish_breakpoint_object_getset): Likewise.
12771         * python/py-inferior.c (inferior_object_getset): Likewise.
12772         * python/py-infthread.c (thread_object_getset): Likewise.
12773         * python/py-lazy-string.c (lazy_string_object_getset): Likewise.
12774         * python/py-linetable.c (linetable_entry_object_getset): Likewise.
12775         * python/py-objfile.c (objfile_getset): Likewise.
12776         * python/py-progspace.c (pspace_getset): Likewise.
12777         * python/py-record-btrace.c (btpy_insn_getset, btpy_call_getset):
12778         Likewise.
12779         * python/py-record.c (recpy_record_getset): Likewise.
12780         * python/py-symbol.c (symbol_object_getset): Likewise.
12781         * python/py-symtab.c (symtab_object_getset, sal_object_getset):
12782         Likewise.
12783         * python/py-type.c (type_object_getset, field_object_getset):
12784         Likewise.
12785         * python/py-value.c (value_object_getset): Likewise.
12786
12787 2017-04-05  Pedro Alves  <palves@redhat.com>
12788
12789         * python/python-internal.h (gdb_PyObject_CallMethod)
12790         (gdb_PyErr_NewException, gdb_PySys_GetObject, gdb_PySys_SetPath):
12791         New functions.
12792         (GDB_PYSYS_SETPATH_CHAR, PyObject_CallMethod, PyErr_NewException)
12793         (PySys_GetObject, PySys_SetPath): New macros.
12794
12795 2017-04-05  Pedro Alves  <palves@redhat.com>
12796
12797         * mi/mi-cmd-info.c (mi_cmd_info_os): Call info_osdata instead of
12798         info_osdata_command.
12799         * osdata.c (info_osdata_command): Rename to ...
12800         (info_osdata): ... this.  Constify 'type' parameter, and remove
12801         the 'from_tty' parameter.  Accept NULL TYPE.
12802         (info_osdata_command): New function.
12803         * osdata.h (info_osdata_command): Remove declaration.
12804         (info_osdata): New declaration.
12805
12806 2017-04-05  Pedro Alves  <palves@redhat.com>
12807
12808         * mi/mi-cmd-break.c (mi_cmd_break_insert_1, mi_cmd_break_insert)
12809         (mi_cmd_dprintf_insert, mi_cmd_break_passcount)
12810         (mi_cmd_break_watch, mi_cmd_break_commands): Constify 'command'
12811         parameter.
12812         * mi/mi-cmd-catch.c (mi_cmd_catch_assert, mi_cmd_catch_exception)
12813         (mi_cmd_catch_load, mi_cmd_catch_unload): Constify cmd' parameter.
12814         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Constify 'command'
12815         parameter.
12816         * mi/mi-cmd-env.c (mi_cmd_env_pwd, mi_cmd_env_cd, mi_cmd_env_path)
12817         (mi_cmd_env_dir, mi_cmd_inferior_tty_set, _cmd_inferior_tty_show)
12818         * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
12819         (mi_cmd_file_list_exec_source_files)
12820         (mi_cmd_file_list_shared_libraries): Constify 'command' parameter.
12821         * mi/mi-cmd-info.c (mi_cmd_info_ada_exceptions)
12822         (mi_cmd_info_gdb_mi_command, mi_cmd_info_os): Constify 'command'
12823         parameter.
12824         * mi/mi-cmd-stack.c (mi_cmd_enable_frame_filters)
12825         (mi_cmd_stack_list_frames, mi_cmd_stack_info_depth)
12826         (mi_cmd_stack_list_locals, mi_cmd_stack_list_args)
12827         (mi_cmd_stack_list_variables, mi_cmd_stack_select_frame)
12828         (mi_cmd_stack_info_frame): Constify 'command' parameter.
12829         * mi/mi-cmd-target.c (mi_cmd_target_file_get)
12830         (mi_cmd_target_file_put, mi_cmd_target_file_delete): Constify
12831         'command' parameter.
12832         * mi/mi-cmd-var.c (mi_cmd_var_create, mi_cmd_var_delete)
12833         (mi_cmd_var_set_format, mi_cmd_var_set_visualizer)
12834         (mi_cmd_var_set_frozen, mi_cmd_var_show_format)
12835         (mi_cmd_var_info_num_children, mi_cmd_var_list_children)
12836         (mi_cmd_var_info_type, mi_cmd_var_info_path_expression)
12837         (mi_cmd_var_info_expression, mi_cmd_var_show_attributes)
12838         (mi_cmd_var_evaluate_expression, mi_cmd_var_assign)
12839         (mi_cmd_var_update, mi_cmd_enable_pretty_printing)
12840         (mi_cmd_var_set_update_range): Constify 'command' parameter.
12841         * mi/mi-cmds.h (mi_cmd_argv_ftype): Constify 'command' parameter.
12842         * mi/mi-interp.c (mi_cmd_interpreter_exec): Constify 'command'
12843         parameter.
12844         * mi/mi-main.c (mi_cmd_gdb_exit, mi_cmd_exec_next)
12845         (mi_cmd_exec_next_instruction, mi_cmd_exec_step)
12846         (mi_cmd_exec_step_instruction, mi_cmd_exec_finish)
12847         (mi_cmd_exec_return ,mi_cmd_exec_jump, mi_cmd_exec_continue)
12848         (mi_cmd_exec_interrupt, mi_cmd_exec_run, mi_cmd_target_detach)
12849         (mi_cmd_target_flash_erase, mi_cmd_thread_select)
12850         (mi_cmd_thread_list_ids, mi_cmd_thread_info)
12851         (mi_cmd_list_thread_groups, mi_cmd_data_list_register_names)
12852         (mi_cmd_data_list_changed_registers)
12853         (mi_cmd_data_write_register_values)
12854         (mi_cmd_data_evaluate_expression, mi_cmd_data_read_memory)
12855         (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory)
12856         (mi_cmd_data_write_memory_bytes, mi_cmd_enable_timings)
12857         (mi_cmd_list_features, mi_cmd_list_target_features)
12858         (mi_cmd_add_inferior, mi_cmd_remove_inferior)
12859         (mi_cmd_trace_define_variable, mi_cmd_trace_list_variables)
12860         (mi_cmd_trace_find, mi_cmd_trace_save, mi_cmd_trace_start)
12861         (mi_cmd_trace_status, mi_cmd_trace_stop, mi_cmd_ada_task_info)
12862         (mi_cmd_trace_frame_collected): Constify 'command'
12863         parameter.
12864         * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Constify
12865         'command' parameter.
12866
12867 2017-04-05  Pedro Alves  <palves@redhat.com>
12868
12869         * ada-lang.c (ada_completer_word_break_characters): Now a const
12870         array.
12871         (ada_get_gdb_completer_word_break_characters): Constify.
12872         * completer.c (gdb_completer_command_word_break_characters)
12873         (gdb_completer_file_name_break_characters)
12874         (gdb_completer_quote_characters): Now const arrays.
12875         (get_gdb_completer_quote_characters): Constify.
12876         (set_rl_completer_word_break_characters): New function.
12877         (set_gdb_completion_word_break_characters)
12878         (complete_line_internal): Use it.
12879         * completer.h (get_gdb_completer_quote_characters): Constify.
12880         (set_rl_completer_word_break_characters): Declare.
12881         * f-lang.c (f_word_break_characters): Constify.
12882         * language.c (default_word_break_characters): Constify.
12883         * language.h (language_defn::la_word_break_characters): Constify.
12884         (default_word_break_characters): Constify.
12885         * top.c (init_main): Use set_rl_completer_word_break_characters.
12886
12887 2017-04-05  Pedro Alves  <palves@redhat.com>
12888
12889         * aix-thread.c (aix_thread_pid_to_str)
12890         (aix_thread_extra_thread_info): Constify.
12891         * bsd-kvm.c (bsd_kvm_pid_to_str): Constify.
12892         * bsd-uthread.c (bsd_uthread_extra_thread_info)
12893         (bsd_uthread_pid_to_str): Constify.
12894         * corelow.c (core_pid_to_str): Constify.
12895         * darwin-nat.c (darwin_pid_to_str): Constify.
12896         * fbsd-nat.c (fbsd_pid_to_str): Constify.
12897         * fbsd-tdep.c (fbsd_core_pid_to_str, gdbarch_core_pid_to_str):
12898         Constify.
12899         * gnu-nat.c (gnu_pid_to_str): Constify.
12900         * go32-nat.c (go32_pid_to_str): Constify.
12901         * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): Constify.
12902         * inf-ptrace.c (inf_ptrace_pid_to_str): Constify.
12903         * inferior.c (inferior_pid_to_str): Constify.
12904         * linux-nat.c (linux_nat_pid_to_str): Constify.
12905         * linux-tdep.c (linux_core_pid_to_str): Constify.
12906         * linux-thread-db.c (thread_db_pid_to_str)
12907         (thread_db_extra_thread_info): Constify.
12908         * nto-tdep.c (nto_extra_thread_info): Constify.
12909         * nto-tdep.h (nto_extra_thread_info): Constify.
12910         * obsd-nat.c (obsd_pid_to_str): Constify.
12911         * procfs.c (procfs_pid_to_str): Constify.
12912         * ravenscar-thread.c (ravenscar_extra_thread_info)
12913         (ravenscar_pid_to_str): Constify.
12914         * remote-sim.c (gdbsim_pid_to_str): Constify.
12915         * remote.c (remote_threads_extra_info, remote_pid_to_str):
12916         Constify.
12917         * sol-thread.c (solaris_pid_to_str): Constify.
12918         * sol2-tdep.c (sol2_core_pid_to_str): Constify.
12919         * sol2-tdep.h (sol2_core_pid_to_str): Constify.
12920         * target.c (default_pid_to_str, target_pid_to_str)
12921         (normal_pid_to_str, default_pid_to_str): Constify.
12922         * target.h (target_ops::to_pid_to_str)
12923         (target_ops::to_extra_thread_info): Constify.
12924         (target_pid_to_str, normal_pid_to_str): Constify.
12925         * windows-nat.c (windows_pid_to_str): Constify.
12926         * gdbarch.sh (core_pid_to_str): Constify.
12927         * target-delegates.c: Regenerate.
12928         * gdbarch.h, gdbarch.c: Regenerate.
12929
12930 2017-04-05  Pedro Alves  <palves@redhat.com>
12931
12932         * main.c (captured_main_1): Use gdb::unique_xmalloc_ptr to manage
12933         the memory of the temporary warning_pre_print override.
12934         * utils.c (warning_pre_print): Constify.
12935         * utils.h (warning_pre_print): Constify.
12936
12937 2017-04-05  Pedro Alves  <palves@redhat.com>
12938
12939         * cli/cli-cmds.c (shell_escape): Constify 'arg' parameter.
12940         (shell_command): New function.
12941         (make_command): Use std::string.
12942         (init_cli_cmds): Register shell_command instead of shell_escape.
12943
12944 2017-04-05  Pedro Alves  <palves@redhat.com>
12945
12946         * breakpoint.c (dprintf_function, dprintf_channel): Don't initialize.
12947         * tracepoint.c (default_collect): Don't initialize.
12948
12949 2017-04-05  Pedro Alves  <palves@redhat.com>
12950
12951         * macroexp.c (macro_buffer::shared): Now a bool.
12952         (init_buffer): Update.
12953         (init_shared_buffer): Constify 'addr' parameter.
12954         (substitute_args, expand, macro_expand, macro_expand_next): Remove
12955         casts.
12956
12957 2017-04-05  Pedro Alves  <palves@redhat.com>
12958
12959         * arm-tdep.c (show_disassembly_style_sfunc): Constify local.
12960         * disasm.c (set_disassembler_options): Constify local.
12961         * i386-tdep.c (i386_print_insn): Remove cast and FIXME comment.
12962
12963 2017-04-05  Sergio Durigan Junior  <sergiodj@redhat.com>
12964
12965         PR gdb/21352
12966         * tracefile.c (tsave_command): Fix argument parsing for '-r'
12967         option.
12968
12969 2017-04-05  Yao Qi  <yao.qi@linaro.org>
12970
12971         * frame.c (frame_unwind_register_unsigned): Call
12972         frame_unwind_register_value.
12973
12974 2017-04-05  Yao Qi  <yao.qi@linaro.org>
12975
12976         * gdb.threads/thread-specific-bp.exp (check_thread_specific_breakpoint):
12977         Use gdb_test_multiple, and don't match anchor.
12978
12979 2017-04-05  Pedro Alves  <palves@redhat.com>
12980
12981         * MAINTAINERS (Global Maintainers): Add Simon Marchi.
12982         (Write After Approval): Remove Simon Marchi.
12983
12984 2017-04-05  Pedro Alves  <palves@redhat.com>
12985
12986         * common/gdb_optional.h (optional::optional): Make constexpr and
12987         initialize m_dummy.
12988
12989 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
12990
12991         * amd64-fbsd-tdep.c: Remove "bsd-uthread.h" include.
12992         (amd64fbsd_jmp_buf_reg_offset): Remove.
12993         (amd64fbsd_supply_uthread): Remove function.
12994         (amd64fbsd_collect_uthread): Remove function.
12995         (amd64fbsd_init_abi): Don't set bsd-uthread callbacks.
12996         * configure.tgt (i[34567]86-*-freebsd*): Remove bsd-uthread.o.
12997         (x86_64-*-freebsd*): Remove bsd-uthread.o.
12998         (fbsd-nat.c): Update comment.
12999         * i386-fbsd-tdep.c: Remove "bsd-uthread.h" include.
13000         (i386fbsd_jmp_buf_reg_offset): Remove.
13001         (i386fbsd_supply_uthread): Remove function.
13002         (i386fbsd_collect_uthread): Remove function.
13003         (i386fbsd_init_abi): Don't set bsd-uthread callbacks.
13004
13005 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
13006
13007         * Makefile.in (ALL_64_TARGET_OBS): Remove alpha-fbsd-tdep.o.
13008         (ALLDEPFILES): Remove alpha-fbsd-tdep.c
13009         * NEWS: Mention that support for FreeBSD/alpha was removed.
13010         * alpha-fbsd-tdep.c: Delete file.
13011         * config/alpha/fbsd.mh: Delete file.
13012         * configure.host: Delete alpha*-*-freebsd* and
13013         alpha*-*-kfreebsd*-gnu.
13014         * configure.tgt: Delete alpha*-*-freebsd* and
13015         alpha*-*-kfreebsd*-gnu.
13016
13017 2017-04-04  John Baldwin  <jhb@FreeBSD.org>
13018
13019         * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers,
13020         amd64bsd_store_inferior_registers): Use ptid from regcache.
13021
13022 2017-04-04  Pedro Alves  <palves@redhat.com>
13023
13024         * dwarf2read.c (lnp_state_machine): Now a class.  Initialize all
13025         data fields, make them private and add "m_" prefixes.
13026         (lnp_state_machine::lnp_state_machine): New ctor.
13027         (record_line, check_line_address, handle_set_discriminator)
13028         (handle_set_address, handle_advance_pc, handle_special_opcode)
13029         (handle_advance_line, handle_set_file, handle_negate_stmt)
13030         (handle_const_add_pc, handle_fixed_advance_pc, handle_copy)
13031         (end_sequence, advance_line): New methods.
13032         (m_gdbarch, m_record_lines_p): New fields.
13033         (lnp_reader_state): Delete.
13034         (dwarf_record_line): Rename to ...
13035         (lnp_state_machine::record_line): ... adjust.
13036         (init_lnp_state_machine): Delete.
13037         (lnp_state_machine::lnp_state_machine): New.
13038         (check_line_address): Rename to ...
13039         (lnp_state_machine::check_line_address): This.
13040         (dwarf_decode_lines_1): Remove reference to "reader_state".
13041         Adjust lnp_state_machine having a non-default ctor.  Use bool.
13042         State machine internal state manipulation moved to
13043         lnp_state_machine methods.
13044
13045 2017-04-04  Pedro Alves  <palves@redhat.com>
13046
13047         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
13048         unittests/offset-type-selftests.c.
13049         (SUBDIR_UNITTESTS_OBS): Add offset-type-selftests.o.
13050         * common/offset-type.h: New file.
13051         * common/preprocessor.h: New file.
13052         * common/traits.h: New file.
13053         * common/valid-expr.h: New file.
13054         * dwarf2expr.c: Include "common/underlying.h".  Adjust to use
13055         sect_offset and cu_offset strong typedefs throughout.
13056         * dwarf2expr.h: Adjust to use sect_offset and cu_offset strong
13057         typedefs throughout.
13058         * dwarf2loc.c: Include "common/underlying.h".  Adjust to use
13059         sect_offset and cu_offset strong typedefs throughout.
13060         * dwarf2read.c: Adjust to use sect_offset and cu_offset strong
13061         typedefs throughout.
13062         * gdbtypes.h: Include "common/offset-type.h".
13063         (cu_offset): Now an offset type (strong typedef) instead of a
13064         struct.
13065         (sect_offset): Likewise.
13066         (union call_site_parameter_u): Rename "param_offset" field to
13067         "param_cu_off".
13068         * unittests/offset-type-selftests.c: New file.
13069
13070 2017-04-04  Pedro Alves  <palves@redhat.com>
13071
13072         * common/underlying.h: New file.
13073         * dwarf2read.c: Include "common/gdb_optional.h" and
13074         "common/underlying.h".
13075         (dir_index, file_name_index): New types.
13076         (file_entry): Use them.
13077         (file_entry::include): Use to_underlying.
13078         (line_header::add_file_name): Use dir_index.
13079         (read_formatted_entries): Use gdb::optional.  Read form before
13080         writting to file_entry.
13081         (dwarf_decode_line_header): Use dir_index.
13082         (lnp_state_machine::current_file): Use to_underlying.
13083         (lnp_state_machine::file): Change type to file_name_index.
13084         (dwarf_record_line): Use to_underlying.
13085         (init_lnp_state_machine): Use file_name_index.
13086         (dwarf_decode_lines_1): Use dir_index and file_name_index.
13087
13088 2017-04-04  Pedro Alves  <palves@redhat.com>
13089
13090         * common/gdb_optional.h (gdb::optiona): Add operator->, operator*,
13091         operator bool, has_value and get methods.
13092
13093 2017-04-04  Pedro Alves  <palves@redhat.com>
13094
13095         * dwarf2read.c (struct file_entry): Add ctors, and initialize all
13096         fields.
13097         (line_header): Initialize all data fields.  Change type of
13098         standard_opcode_lengths to std::unique_ptr<unsigned char[]>.
13099         Change type of include_dirs to std::vector<const char *>.  Remove
13100         num_include_dirs, include_dirs_size.  Change type of file_names to
13101         std::vector<file_entry>.  Remove num_file_names, file_names_size.
13102         (line_header::line_header): New.
13103         (line_header::add_include_dir, line_header::add_file_name): New
13104         methods.
13105         (line_header::include_dir_at): Remove NULL check.
13106         (line_header::file_name_at): Add const overload.
13107         (line_header_up): New unique_ptr typedef.
13108         (dw2_get_file_names_reader): Use line_header_up.  Adjust to use
13109         std::vector.  Remove free_line_header call.
13110         (dwarf2_build_include_psymtabs): Use line_header_up.  Remove
13111         free_line_header call.
13112         (free_cu_line_header): Delete.
13113         (handle_DW_AT_stmt_list, handle_DW_AT_stmt_list)
13114         (setup_type_unit_groups): Use line_header_up instead of cleanups.
13115         Adjust to use std::vector.
13116         (free_line_header): Delete.
13117         (free_line_header_voidp): Use delete.
13118         (add_include_dir): Replace with ...
13119         (line_header::add_include_dir): ... this method.  Use std::vector.
13120         (add_file_name): Replace with ...
13121         (line_header::add_file_name): ... this method.  Use std::vector.
13122         (add_include_dir_stub): Delete.
13123         (read_formatted_entries): Remove memset.
13124         (dwarf_decode_line_header): Return a line_header_up instead of a
13125         raw pointer.  Remove cleanup handling.  Pass lambdas to
13126         read_formatted_entries.  Adjust to use line_header methods.
13127         (dwarf_decode_lines_1): Adjust to use line_header methods.
13128         (dwarf_decode_lines, file_file_name, file_full_name): Adjust to
13129         use std::vector.
13130
13131 2017-04-04  Simon Marchi  <simon.marchi@polymtl.ca>
13132
13133         * remote.c (set_general_thread, set_continue_thread): Use ptid_t
13134         instead of struct ptid.
13135
13136 2017-05-04  Alan Hayward  <alan.hayward@arm.com>
13137
13138         * frame.c (get_frame_register_bytes): Unwind using value.
13139         (put_frame_register_bytes): Likewise.
13140
13141 2017-03-30  Iain Buclaw  <ibuclaw@gdcproject.org>
13142
13143         * d-exp.y (type_aggregate_p): Treat TYPE_CODE_MODULE as being
13144         aggregate-like.
13145
13146 2017-03-29  Jan Kratochvil  <jan.kratochvil@redhat.com>
13147
13148         * auto-load.c (auto_load_section_scripts): Check SEC_HAS_CONTENTS.
13149
13150 2017-03-29  Yao Qi  <yao.qi@linaro.org>
13151
13152         * gdbthread.h (struct thread_info): Declare constructor and
13153         destructor.  Add some in-class member initializers.
13154         * thread.c (free_thread): Remove.
13155         (init_thread_list): Call delete instead of free_thread.
13156         (new_thread): Call thread_info constructor.
13157         (thread_info::thread_info): New function.
13158         (thread_info::~thread_info): New function.
13159         (delete_thread_1): Call delete instead of free_thread.
13160         (make_cleanup_restore_current_thread): Move tp and frame to
13161         inner block.
13162
13163 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
13164
13165         * arc-tdep.c (arc_frame_cache): Add support for prologue analysis.
13166         (arc_skip_prologue): Likewise.
13167         (arc_make_frame_cache): Likewise.
13168         (arc_pv_get_operand): New function.
13169         (arc_is_in_prologue): Likewise.
13170         (arc_analyze_prologue): Likewise.
13171         (arc_print_frame_cache): Likewise.
13172         (MAX_PROLOGUE_LENGTH): New constant.
13173
13174 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
13175
13176         * configure.tgt: Add arc-insn.o.
13177         * arc-tdep.c (arc_delayed_print_insn): Make non-static.
13178         (dump_arc_instruction_command): New function.
13179         (arc_fprintf_disasm): Likewise.
13180         (arc_disassemble_info): Likewise.
13181         (arc_insn_get_operand_value): Likewise.
13182         (arc_insn_get_operand_value_signed): Likewise.
13183         (arc_insn_get_memory_base_reg): Likewise.
13184         (arc_insn_get_memory_offset): Likewise.
13185         (arc_insn_get_branch_target): Likewise.
13186         (arc_insn_dump): Likewise.
13187         (arc_insn_get_linear_next_pc): Likewise.
13188         * arc-tdep.h (arc_delayed_print_insn): Add function declaration.
13189         (arc_disassemble_info): Likewise.
13190         (arc_insn_get_branch_target): Likewise.
13191         (arc_insn_get_linear_next_pc): Likewise.
13192         * NEWS: Mention new "maint print arc arc-instruction".
13193
13194 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
13195
13196         * arc-tdep (maintenance_print_arc_list): New variable.
13197         (maintenance_print_arc_command): New function.
13198
13199 2017-03-28  Anton Kolesov  <anton.kolesov@synopsys.com>
13200
13201         * arc-tdep.c (core_v2_register_names, core_arcompact_register_names)
13202         Add "limm" and "reserved".
13203         (arc_cannot_fetch_register, arc_cannot_store_register): Add
13204         ARC_RESERVED_REGNUM and ARC_LIMM_REGNUM.
13205         * arc-tdep.h (arc_regnum): Likewise.
13206
13207 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
13208
13209         * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
13210         for THREADPTR register.
13211         (supply_gregset_reg): Call regcache_raw_supply for THREADPTR
13212         register.
13213         * xtensa-tdep.c (XTENSA_DBREGN_UREG): New definition.
13214         (xtensa_derive_tdep): Initialize tdep->threadptr_regnum.
13215         * xtensa-tdep.h (gdbarch_tdep::threadptr_regnum): New field.
13216
13217 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
13218
13219         * xtensa-tdep.c (xtensa_pseudo_register_read): Treat all
13220         registers above gdbarch_num_regs (gdbarch) as privileged in
13221         call0 ABI.
13222
13223 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
13224
13225         * xtensa-linux-nat.c (fill_gregset): Call regcache_raw_collect
13226         for a single specified register or for all registers in
13227         a0_base..a0_base + C0_NREGS range.
13228         (supply_gregset_reg): Call regcache_raw_supply for a single
13229         specified register or for all registers in a0_base..a0_base +
13230         C0_NREGS range.
13231
13232 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
13233
13234         * arch/xtensa.h (C0_NREGS): Add definition.
13235         * xtensa-tdep.c (C0_NREGS): Remove definition.
13236
13237 2017-03-27  Max Filippov  <jcmvbkbc@gmail.com>
13238
13239         * xtensa-tdep.c (xtensa_scan_prologue, call0_analyze_prologue):
13240         Drop xtensa_default_isa initialization.
13241         (xtensa_gdbarch_init): Initialize xtensa_default_isa.
13242
13243 2017-03-27  Pedro Alves  <palves@redhat.com>
13244
13245         * dwarf2read.c (file_entry) <dir_index>: Add comment.
13246         (file_entry::include_dir): New method.
13247         (line_header::include_dir_at, line_header::file_name_at): New
13248         methods.
13249         (setup_type_unit_groups, setup_type_unit_groups)
13250         (psymtab_include_file_name): Simplify using the new methods.
13251         (lnp_state_machine) <the_line_header>: New field.
13252         <file>: Add comment.
13253         (lnp_state_machine::current_file): New method.
13254         (dwarf_record_line): Simplify using the new methods.
13255         (init_lnp_state_machine): Initialize the "the_line_header" field.
13256         (dwarf_decode_lines_1, dwarf_decode_lines, file_file_name):
13257         Simplify using the new methods.
13258
13259 2017-03-27  Pedro Alves  <palves@redhat.com>
13260
13261         * cp-name-parser.y (make_empty): Delete.
13262         (demangler_special, nested_name, ptr_operator, array_indicator)
13263         (direct_declarator, declarator_1): Use fill_comp instead of
13264         make_empty.
13265
13266 2017-03-27  Pedro Alves  <palves@redhat.com>
13267
13268         * xml-support.h (gdb_xml_debug): Pass a "first-to-check" argument
13269         to ATTRIBUTE_PRINTF.
13270         * solib-target.c (library_list_start_list): Print "string" not
13271         "version".
13272         * xml-tdesc.c (tdesc_start_field): Pass "field_name" to
13273         gdb_xml_error call.
13274
13275 2017-03-27  Pedro Alves  <palves@redhat.com>
13276
13277         * dwarf2read.c (struct file_and_directory): New.
13278         (dwarf2_get_dwz_file): Adjust to use std::string.
13279         (dw2_get_file_names_reader): Adjust to use file_and_directory.
13280         (find_file_and_directory): Adjust to return a file_and_directory
13281         object.
13282         (read_file_scope): Adjust to use file_and_directory.  Remove
13283         make_cleanup/do_cleanups calls.
13284         (open_and_init_dwp_file): Adjust to use std::string.  Remove
13285         make_cleanup/do_cleanups calls.
13286         * python/python.c (do_start_initialization): Adjust to ldirname
13287         returning a std::string.
13288         * utils.c (ldirname): Now returns a std::string.
13289         * utils.h (ldirname): Change return type to std::string.
13290         * xml-syscall.c (xml_init_syscalls_info): Adjust to ldirname
13291         returning a std::string.
13292         * xml-tdesc.c (file_read_description_xml): Likewise.
13293
13294 2017-03-24  Alan Hayward  <alan.hayward@arm.com>
13295
13296         * regcache.c (regcache_debug_print_register): New function.
13297         * regcache.h (regcache_debug_print_register): New declaration.
13298         * target.c (debug_print_register): Remove.
13299         (target_fetch_registers): Call regcache_debug_print_register.
13300         (target_store_registers): Likewise.
13301
13302 2017-03-24  Pádraig Brady  <pbrady@fb.com>
13303
13304         * dwarf2read.c (setup_type_unit_groups): Ensure dir_index doesn't
13305         reference beyond the 'lh->include_dirs' array before accessing to
13306         it.
13307         (psymtab_include_file_name): Likewise.
13308         (dwarf_decode_lines_1): Likewise.
13309         (dwarf_decode_lines): Likewise.
13310         (file_file_name): Likewise.
13311
13312 2017-03-23  Simon Marchi  <simon.marchi@ericsson.com>
13313
13314         * fbsd-tdep.c (fbsd_corefile_thread): Don't set/restore
13315         inferior_ptid.
13316         * proc-service.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
13317         ps_lsetfpregs): Likewise.
13318         * regcache.c (regcache_raw_update, regcache_raw_write): Likewise.
13319         * sol-thread.c (ps_lgetregs, ps_lsetregs, ps_lgetfpregs,
13320         ps_lsetfpregs): Likewise.
13321         * target.c (target_fetch_registers, target_store_registers):
13322         Remove asserts.
13323
13324 2017-03-23  Alan Hayward  <alan.hayward@arm.com>
13325
13326         * sol-thread.c (sol_thread_store_registers): Remove regcache calls.
13327
13328 2017-03-23  Yao Qi  <yao.qi@linaro.org>
13329
13330         * aarch64-tdep.c (aarch64_process_record_test): Declare.
13331         (_initialize_aarch64_tdep): Register it.
13332         (aarch64_record_load_store): Handle PRFM instruction.
13333         (aarch64_process_record_test): New function.
13334
13335 2017-03-23  Yao Qi  <yao.qi@linaro.org>
13336
13337         * aarch64-tdep.c (aarch64_record_load_store): Fix code
13338         indentation.
13339
13340 2017-03-23  Yao Qi  <yao.qi@linaro.org>
13341
13342         * aarch64-tdep.c: Remove AARCH64_RECORD_FAILURE.
13343
13344 2017-03-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
13345
13346         python/python.c (do_start_initialization): Fix memory leak.
13347
13348 2017-03-22  Simon Marchi  <simon.marchi@polymtl.ca>
13349
13350         * inf-ptrace.c (inf_ptrace_xfer_partial): Get pid from ptid
13351         using get_ptrace_pid.
13352         * linux-nat.c (linux_nat_xfer_partial): Don't set/restore
13353         inferior_ptid.
13354         (linux_proc_xfer_partial, linux_proc_xfer_spu): Use lwp of
13355         inferior_ptid instead of pid.
13356
13357 2017-03-22  Yao Qi  <yao.qi@linaro.org>
13358
13359         * aarch64-tdep.c: Wrap locally used classes in anonymous
13360         namespace.
13361         * arm-tdep.c: Likewise.
13362         * linespec.c: Likewise.
13363         * ui-out.c: Likewise.
13364
13365 2017-03-22  Jonah Graham  <jonah@kichwacoders.com>
13366
13367         PR gdb/19637
13368         * python/lib/gdb/printer/bound_registers.py: Import sys.
13369
13370 2017-03-21  Simon Marchi  <simon.marchi@ericsson.com>
13371
13372         * windows-nat.c (do_windows_fetch_inferior_registers): Add
13373         windows_thread_info parameter and use it instead of
13374         current_thread.
13375         (windows_fetch_inferior_registers): Don't set current_thread,
13376         pass the thread to do_windows_fetch_inferior_registers.  Use
13377         ptid from regcache instead of inferior_ptid.
13378         (do_windows_store_inferior_registers): Add windows_thread_info
13379         parameter and use it instead of current_thread.
13380         (windows_store_inferior_registers): Don't set current_thread,
13381         pass the thread to do_windows_store_inferior_registers.  Use
13382         ptid from regcache instead of inferior_ptid.
13383
13384 2017-03-21  Simon Marchi  <simon.marchi@ericsson.com>
13385
13386         * ser-mingw.c (ser_windows_raw): Remove reference to
13387         struct serial::current_timeout.
13388
13389 2017-03-21  Ivo Raisr  <ivo.raisr@oracle.com>
13390
13391         PR tdep/20928
13392         * gdb/sparc-tdep.h (gdbarch_tdep) <sparc64_ccr_type>: New field.
13393         * gdb/sparc64-tdep.c (sparc64_ccr_type): New function.
13394         (sparc64_fsr_type): Fix %fsr decoding.
13395
13396 2017-03-21  Tim Wiederhake  <tim.wiederhake@intel.com>
13397
13398         * python/py-record-btrace.c (btpy_insn_data): Change return type
13399         for Python 2.
13400
13401 2017-03-20  Simon Marchi  <simon.marchi@polymtl.ca>
13402
13403         * spu-linux-nat.c (spu_fetch_inferior_registers,
13404         spu_store_inferior_registers): Use ptid from regcache, set and
13405         restore inferior_ptid.
13406         * spu-multiarch.c (spu_fetch_registers, spu_store_registers):
13407         Likewise.
13408
13409 2017-03-20  Simon Marchi  <simon.marchi@polymtl.ca>
13410
13411         * i386-linux-nat.c (fetch_register, store_register,
13412         i386_linux_fetch_inferior_registers,
13413         i386_linux_store_inferior_registers): Use ptid from regcache.
13414         * ia64-linux-nat.c (ia64_linux_fetch_register,
13415         ia64_linux_store_register): Likewise.
13416         * inf-ptrace.c (inf_ptrace_fetch_register,
13417         inf_ptrace_store_register): Likewise.
13418         * m32r-linux-nat.c (m32r_linux_fetch_inferior_registers,
13419         m32r_linux_store_inferior_registers): Likewise.
13420         * m68k-bsd-nat.c (m68kbsd_fetch_inferior_registers,
13421         m68kbsd_store_inferior_registers): Likewise.
13422         * m68k-linux-nat.c (fetch_register, store_register,
13423         m68k_linux_fetch_inferior_registers,
13424         m68k_linux_store_inferior_registers): Likewise.
13425         * m88k-bsd-nat.c (m88kbsd_fetch_inferior_registers,
13426         m88kbsd_store_inferior_registers): Likewise.
13427         * mips-fbsd-nat.c (mips_fbsd_fetch_inferior_registers,
13428         mips_fbsd_store_inferior_registers): Likewise.
13429         * mips-linux-nat.c (mips64_linux_regsets_fetch_registers,
13430         mips64_linux_regsets_store_registers): Likewise.
13431         * mips-nbsd-nat.c (mipsnbsd_fetch_inferior_registers,
13432         mipsnbsd_store_inferior_registers): Likewise.
13433         * mips-obsd-nat.c (mips64obsd_fetch_inferior_registers,
13434         mips64obsd_store_inferior_registers): Likewise.
13435         * nto-procfs.c (procfs_fetch_registers, procfs_store_registers):
13436         Likewise.
13437         * ppc-fbsd-nat.c (ppcfbsd_fetch_inferior_registers,
13438         ppcfbsd_store_inferior_registers): Likewise.
13439         * ppc-linux-nat.c (ppc_linux_fetch_inferior_registers,
13440         ppc_linux_store_inferior_registers): Likewise.
13441         * ppc-nbsd-nat.c (ppcnbsd_fetch_inferior_registers,
13442         ppcnbsd_store_inferior_registers): Likewise.
13443         * ppc-obsd-nat.c (ppcobsd_fetch_registers,
13444         ppcobsd_store_registers): Likewise.
13445         * procfs.c (procfs_fetch_registers, procfs_store_registers):
13446         Likewise.
13447         * ravenscar-thread.c (ravenscar_fetch_registers,
13448         ravenscar_store_registers, ravenscar_prepare_to_store):
13449         Likewise.
13450         * record-btrace.c (record_btrace_fetch_registers,
13451         record_btrace_store_registers, record_btrace_prepare_to_store):
13452         Likewise.
13453         * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register):
13454         Lookup inferior using ptid from regcache, instead of
13455         current_inferior.
13456         * remote.c (remote_fetch_registers, remote_store_registers): Use
13457         ptid from regcache.
13458         * rs6000-nat.c (fetch_register, store_register): Likewise.
13459         * s390-linux-nat.c (s390_linux_fetch_inferior_registers,
13460         s390_linux_store_inferior_registers): Likewise.
13461         * sh-nbsd-nat.c (shnbsd_fetch_inferior_registers,
13462         shnbsd_store_inferior_registers): Likewise.
13463         * sol-thread.c (sol_thread_fetch_registers,
13464         sol_thread_store_registers): Likewise.
13465         * sparc-nat.c (sparc_fetch_inferior_registers,
13466         sparc_store_inferior_registers): Likewise.
13467         * tilegx-linux-nat.c (fetch_inferior_registers,
13468         store_inferior_registers): Likewise.
13469         * vax-bsd-nat.c (vaxbsd_fetch_inferior_registers,
13470         vaxbsd_store_inferior_registers): Likewise.
13471         * xtensa-linux-nat.c (fetch_gregs, store_gregs, fetch_xtregs,
13472         store_xtregs): Likewise.
13473
13474 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13475
13476         PR gdb/14441
13477         * NEWS: Mention support for rvalue references in GDB and python.
13478         * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB
13479         supports both lvalue and rvalue references.
13480
13481 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13482
13483         PR gdb/14441
13484         * gdbtypes.c (rank_one_type): Implement overloading
13485         resolution rules regarding rvalue references.
13486
13487 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13488
13489         PR gdb/14441
13490         * aarch64-tdep.c (aarch64_type_align)
13491         (aarch64_extract_return_value, aarch64_store_return_value): Change
13492         lvalue reference type checks to general reference type checks.
13493         * amd64-tdep.c (amd64_classify): Likewise.
13494         * amd64-windows-tdep.c (amd64_windows_passed_by_integer_register):
13495         Likewise.
13496         * arm-tdep.c (arm_type_align, arm_extract_return_value)
13497         (arm_store_return_value): Likewise.
13498         * ax-gdb.c (gen_fetch, gen_cast): Likewise.
13499         * c-typeprint.c (c_print_type): Likewise.
13500         * c-varobj.c (adjust_value_for_child_access, c_value_of_variable)
13501         (cplus_number_of_children, cplus_describe_child): Likewise.
13502         * compile/compile-c-symbols.c (generate_vla_size): Likewise.
13503         * completer.c (expression_completer): Likewise.
13504         * cp-support.c (make_symbol_overload_list_adl_namespace):
13505         Likewise.
13506         * darwin-nat-info.c (info_mach_region_command): Likewise.
13507         * dwarf2loc.c (entry_data_value_coerce_ref)
13508         (value_of_dwarf_reg_entry): Likewise.
13509         * eval.c (ptrmath_type_p, evaluate_subexp_standard)
13510         (evaluate_subexp_for_address, evaluate_subexp_for_sizeof):
13511         Likewise.
13512         * findvar.c (extract_typed_address, store_typed_address):
13513         Likewise.
13514         * gdbtypes.c (rank_one_type): Likewise.
13515         * hppa-tdep.c (hppa64_integral_or_pointer_p): Likewise.
13516         * infcall.c (value_arg_coerce): Likewise.
13517         * language.c (pointer_type): Likewise.
13518         * m32c-tdep.c (m32c_reg_arg_type, m32c_m16c_address_to_pointer):
13519         Likewise.
13520         * m88k-tdep.c (m88k_integral_or_pointer_p): Likewise.
13521         * mn10300-tdep.c (mn10300_type_align): Likewise.
13522         * msp430-tdep.c (msp430_push_dummy_call): Likewise.
13523         * ppc-sysv-tdep.c (do_ppc_sysv_return_value)
13524         (ppc64_sysv_abi_push_param, ppc64_sysv_abi_return_value):
13525         Likewise.
13526         * printcmd.c (print_formatted, x_command): Likewise.
13527         * python/py-type.c (typy_get_composite, typy_template_argument):
13528         Likewise.
13529         * python/py-value.c (valpy_referenced_value)
13530         (valpy_get_dynamic_type, value_has_field): Likewise.
13531         * s390-linux-tdep.c (s390_function_arg_integer): Likewise.
13532         * sparc-tdep.c (sparc_integral_or_pointer_p): Likewise.
13533         * sparc64-tdep.c (sparc64_integral_or_pointer_p): Likewise.
13534         * spu-tdep.c (spu_scalar_value_p): Likewise.
13535         * symtab.c (lookup_symbol_aux): Likewise.
13536         * typeprint.c (whatis_exp, print_type_scalar): Likewise.
13537         * valarith.c (binop_types_user_defined_p, unop_user_defined_p):
13538         Likewise.
13539         * valops.c (value_cast_pointers, value_cast)
13540         (value_reinterpret_cast, value_dynamic_cast, value_addr, typecmp)
13541         (value_struct_elt, value_struct_elt_bitpos)
13542         (value_find_oload_method_list, find_overload_match)
13543         (value_rtti_indirect_type): Likewise.
13544         * valprint.c (val_print_scalar_type_p, generic_val_print):
13545         Likewise.
13546         * value.c (value_actual_type, value_as_address, unpack_long)
13547         (pack_long, pack_unsigned_long, coerce_ref_if_computed)
13548         (coerce_ref): Likewise.
13549         * varobj.c (varobj_get_value_type): Likewise.
13550
13551 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13552
13553         PR gdb/14441
13554         * doc/python.texi (Types in Python): Add TYPE_CODE_RVALUE_REF to
13555         table of constants.
13556         * python/lib/gdb/command/explore.py: Support exploring values
13557         of rvalue reference types.
13558         * python/lib/gdb/types.py: Implement get_basic_type() for
13559         rvalue reference types.
13560         * python/py-type.c (pyty_codes) <TYPE_CODE_RVALUE_REF>: New
13561         constant.
13562         * python/py-value.c (valpy_getitem): Add an rvalue reference
13563         check.
13564         (valpy_reference_value): Add new parameter "refcode".
13565         (valpy_lvalue_reference_value, valpy_rvalue_reference_value):
13566         New wrappers for valpy_reference_value().
13567         * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
13568         (gdbpy_invoke_xmethod): Likewise.
13569
13570 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13571
13572         PR gdb/14441
13573         * dwarf2read.c (process_die, read_type_die_1): Handle the
13574         DW_TAG_rvalue_reference_type DIE.
13575         (read_tag_reference_type): Add new parameter "refcode".
13576
13577 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13578
13579         PR gdb/14441
13580         * c-typeprint.c (c_print_type, c_type_print_varspec_prefix)
13581         (c_type_print_modifier, c_type_print_varspec_suffix)
13582         (c_type_print_base): Support printing rvalue reference types.
13583         * c-valprint.c (c_val_print, c_value_print): Support printing
13584         rvalue reference values.
13585
13586 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13587
13588         PR gdb/14441
13589         * cp-name-parser.y (ptr_operator): Handle the '&&' token in
13590         typename.
13591         * cp-support.c (replace_typedefs): Handle
13592         DEMANGLE_COMPONENT_RVALUE_REFERENCE.
13593         * python/py-type.c (typy_lookup_type): Likewise.
13594
13595 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13596
13597         PR gdb/14441
13598         * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
13599         * parse.c (insert_type): Change assert statement.
13600         (follow_types): Handle rvalue reference types.
13601         * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
13602         constant.
13603
13604 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13605
13606         PR gdb/14441
13607         * ada-lang.c (ada_evaluate_subexp): Adhere to the new
13608         value_ref() interface.
13609         * c-valprint.c (c_value_print): Likewise.
13610         * infcall.c (value_arg_coerce): Likewise.
13611         * python/py-value.c (valpy_reference_value): Likewise.
13612         * valops.c (value_cast, value_reinterpret_cast)
13613         (value_dynamic_cast, typecmp): Likewise.
13614         (value_ref): Parameterize by kind of return value reference type.
13615         * value.h (value_ref): Add new parameter "refcode".
13616
13617 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13618
13619         PR gdb/14441
13620         * dwarf2read.c (read_tag_reference_type): Use
13621         lookup_lvalue_reference_type() instead of lookup_reference_type().
13622         * eval.c (evaluate_subexp_standard): Likewise.
13623         * f-exp.y: Likewise.
13624         * gdbtypes.c (make_reference_type, lookup_reference_type):
13625         Generalize with rvalue reference types.
13626         (lookup_lvalue_reference_type, lookup_rvalue_reference_type): New
13627         convenience wrappers for lookup_reference_type().
13628         * gdbtypes.h (make_reference_type, lookup_reference_type): Add a
13629         reference kind parameter.
13630         (lookup_lvalue_reference_type, lookup_rvalue_reference_type): Add
13631         wrappers for lookup_reference_type().
13632         * guile/scm-type.c (gdbscm_type_reference): Use
13633         lookup_lvalue_reference_type() instead of lookup_reference_type().
13634         * guile/scm-value.c (gdbscm_value_dynamic_type): Likewise.
13635         * parse.c (follow_types): Likewise.
13636         * python/py-type.c (typy_reference, typy_lookup_type): Likewise.
13637         * python/py-value.c (valpy_get_dynamic_type, valpy_getitem):
13638         Likewise.
13639         * python/py-xmethods.c (gdbpy_get_xmethod_result_type)
13640         (gdbpy_invoke_xmethod): Likewise.
13641         * stabsread.c: Provide extra argument to make_reference_type()
13642         call.
13643         * valops.c (value_ref, value_rtti_indirect_type): Use
13644         lookup_lvalue_reference_type() instead of lookup_reference_type().
13645
13646 2017-03-20  Artemiy Volkov  <artemiyv@acm.org>
13647
13648         PR gdb/14441
13649         * gdbtypes.h (enum type_code) <TYPE_CODE_RVALUE_REF>: New constant.
13650         (TYPE_IS_REFERENCE): New macro.
13651         (struct type): Add rvalue_reference_type field.
13652         (TYPE_RVALUE_REFERENCE_TYPE): New macro.
13653
13654 2017-03-20  Marc-Andre Laperle  <marc-andre.laperle@ericsson.com>
13655
13656         * NEWS: Add an entry about new '-file-list-shared-libraries' command.
13657         * mi/mi-cmd-file.c (mi_cmd_file_list_shared_libraries):
13658         New function definition.
13659         * mi/mi-cmds.c (mi_cmds): Add -file-list-shared-libraries command.
13660         * mi/mi-cmds.h (mi_cmd_file_list_shared_libraries):
13661         New function declaration.
13662         * mi/mi-interp.c (mi_output_solib_attribs): New Function.
13663         * mi/mi-interp.h: New file.
13664         * solib.c (info_sharedlibrary_command): Replace for loop with
13665         ALL_SO_LIBS macro
13666         * solib.h (update_solib_list): New function declaration.
13667         (so_list_head): Move macro.
13668         * solist.h (ALL_SO_LIBS): New macro.
13669
13670 2017-03-20  Marc-Andre Laperle  <marc-andre.laperle@ericsson.com>
13671
13672         * infcmd.c (post_create_inferior): Remove unused argument in
13673         call to solib_add.
13674         * remote.c (remote_start_remote): Likewise.
13675         * solib-frv.c (frv_fetch_objfile_link_map): Likewise.
13676         * solib-svr4.c: (svr4_fetch_objfile_link_map): Likewise.
13677         (enable_break): Likewise.
13678         * solib.c (update_solib_list): Remove unused target argument
13679         and its documentation.
13680         (solib_add): Remove unused target argument.  Remove unused
13681         argument in call to update_solib_list.
13682         (info_sharedlibrary_command): Remove unused argument in call
13683         to update_solib_list.
13684         (sharedlibrary_command): Remove unused argument in call to
13685         solib_add.
13686         (handle_solib_event): Likewise.
13687         (reload_shared_libraries): Likewise.
13688         * solib.h (solib_add): Remove unused target argument.
13689
13690 2017-03-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
13691
13692         * s390-linux-tdep.c (is_rsi, is_rie): Remove functions.
13693         (s390_displaced_step_fixup): Cover relative branches with the
13694         default fixup handling.  This fixes lack of support for some
13695         relative branch instructions.
13696
13697 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
13698
13699         * i386-gnu-nat.c (gnu_fetch_registers, gnu_store_registers): Use
13700         ptid from regcache.
13701
13702 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
13703
13704         * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
13705         i386_darwin_store_inferior_registers): Use ptid from regcache.
13706
13707 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
13708
13709         * i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
13710         i386bsd_store_inferior_registers): Use ptid from regcache.
13711
13712 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
13713
13714         * hppa-obsd-nat.c (hppaobsd_fetch_registers,
13715         hppaobsd_store_registers): Use ptid from regcache.
13716
13717 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
13718
13719         * hppa-nbsd-nat.c (hppanbsd_fetch_registers,
13720         hppanbsd_store_registers): Use ptid from regcache.
13721
13722 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
13723
13724         * hppa-linux-nat.c (fetch_register, store_register): Use ptid
13725         from regcache.  Use get_ptrace_pid.
13726
13727 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
13728
13729         * corelow.c (get_core_register_section): Use ptid from regcache,
13730         update doc.
13731
13732 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
13733
13734         * bsd-uthread.c (bsd_uthread_fetch_registers,
13735         bsd_uthread_store_registers): Use ptid from regcache, set and
13736         restore inferior_ptid.
13737
13738 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
13739
13740         * arm-nbsd-nat.c (fetch_register, fetch_regs, fetch_fp_register,
13741         fetch_fp_regs, store_register, store_regs, store_fp_register,
13742         store_fp_regs): Use ptid from regcache.
13743
13744 2017-03-17  Simon Marchi  <simon.marchi@polymtl.ca>
13745
13746         * arm-linux-nat.c (fetch_fpregs, store_fpregs, fetch_regs,
13747         store_regs, fetch_wmmx_regs, store_wmmx_regs, fetch_vfp_regs,
13748         store_vfp_regs): Use ptid from regcache.
13749
13750 2017-03-17  Pedro Alves  <palves@redhat.com>
13751
13752         PR remote/21188
13753         * ser-base.c (ser_base_wait_for): Add comment.
13754         (do_ser_base_readchar): Improve comment based on the ser-unix.c's
13755         version.
13756         * ser-unix.c (hardwire_raw): Remove reference to
13757         scb->current_timeout.
13758         (wait_for, do_hardwire_readchar, hardwire_readchar): Delete.
13759         (hardwire_ops): Install ser_base_readchar instead of
13760         hardwire_readchar.
13761         * serial.h (struct serial) <current_timeout, timeout_remaining>:
13762         Remove fields.
13763
13764 2017-03-17  Jonah Graham  <jonah@kichwacoders.com>
13765
13766         PR gdb/19637
13767         * python/lib/gdb/printer/bound_registers.py: Add support for
13768         Python 3.
13769
13770 2017-03-16  Andreas Arnez  <arnez@linux.vnet.ibm.com>
13771
13772         * dwarf2loc.c (indirect_synthetic_pointer): Get data type of
13773         pointed-to DIE and pass it to dwarf2_evaluate_loc_desc_full.
13774         (dwarf2_evaluate_loc_desc_full): New parameter subobj_type; rename
13775         byte_offset to subobj_byte_offset.  Fix the handling of
13776         DWARF_VALUE_STACK on big-endian targets when coming via an
13777         implicit pointer.
13778         (dwarf2_evaluate_loc_desc): Adjust call to
13779         dwarf2_evaluate_loc_desc_full.
13780         * dwarf2loc.h (dwarf2_fetch_die_type_sect_off): New declaration.
13781         * dwarf2read.c (dwarf2_fetch_die_type_sect_off): New function.
13782
13783 2017-03-16  Yao Qi  <yao.qi@linaro.org>
13784
13785         * arm-tdep.c (thumb_record_misc): Decode CBNZ, CBZ, REV16,
13786         and REVSH instructions.
13787
13788 2017-03-16  Yao Qi  <yao.qi@linaro.org>
13789
13790         * arm-tdep.c [GDB_SELF_TEST]: include "selftests.h".
13791         (arm_record_test): Declare.
13792         (_initialize_arm_tdep) [GDB_SELF_TEST]: call register_self_test.
13793         (thumb_record_ld_st_reg_offset): Rewrite the opcode matching to
13794         align with the manual.
13795         (thumb_record_misc): Adjust the code order to align with the
13796         manual.
13797         (thumb2_record_decode_insn_handler): Fix instruction matching.
13798         (instruction_reader_thumb): New class.
13799         (arm_record_test): New function.
13800
13801 2017-03-16  Yao Qi  <yao.qi@linaro.org>
13802
13803         * arm-tdep.c (abstract_memory_reader): New class.
13804         (instruction_reader): New class.
13805         (extract_arm_insn): Add argument 'reader'.  Callers updated.
13806         (decode_insn): Likewise.
13807
13808 2017-03-16  Doug Evans  <dje@google.com>
13809
13810         * guile/scm-lazy-string.c (lazy_string_smob): Clarify use of LENGTH
13811         member.  Change type of TYPE member to SCM.  All uses updated.
13812         (lsscm_make_lazy_string_smob): Add assert.
13813         (lsscm_make_lazy_string): Flag bad length values.
13814         (lsscm_elt_type): New function.
13815         (gdbscm_lazy_string_to_value): Rewrite to use
13816         lsscm_safe_lazy_string_to_value.
13817         (lsscm_safe_lazy_string_to_value): Fix handling of TYPE_CODE_PTR.
13818         * guile/scm-value.c (gdbscm_value_to_lazy_string): Flag bad length
13819         values.  Fix TYPE_CODE_PTR.  Handle TYPE_CODE_ARRAY.  Handle typedefs
13820         in incoming type.
13821         * guile/guile-internal.h (tyscm_scm_to_type): Declare.
13822         * guile/scm-type.c (tyscm_scm_to_type): New function.
13823
13824 2017-03-15  Doug Evans  <dje@google.com>
13825
13826         PR python/17728, python/18439, python/18779
13827         * python/py-lazy-string.c (lazy_string_object): Clarify use of LENGTH
13828         member.  Change type of TYPE member to PyObject *.  All uses updated.
13829         (stpy_convert_to_value): Fix handling of TYPE_CODE_PTR.
13830         (gdbpy_create_lazy_string_object): Flag bad length values.
13831         Handle TYPE_CODE_ARRAY with possibly different user-provided length.
13832         Handle typedefs in incoming type.
13833         (stpy_lazy_string_elt_type): New function.
13834         (gdbpy_extract_lazy_string): Call it.
13835         * python/py-value.c (valpy_lazy_string): Flag bad length values.
13836         Fix handling of TYPE_CODE_PTR.  Handle TYPE_CODE_ARRAY.  Handle
13837         typedefs in incoming type.
13838
13839 2017-03-16  Doug Evans  <dje@google.com>
13840
13841         * guile/guile-internal.h (tyscm_scm_to_type): Declare.
13842         * guile/scm-type.c (tyscm_scm_to_type): New function.
13843
13844 2017-03-16  Jiong Wang  <jiong.wang@arm.com>
13845
13846         * inf-ptrace.c (inf_ptrace_peek_poke): Change the type to
13847         "ULONGEST" for "skip".
13848
13849 2017-03-14  Andreas Arnez  <arnez@linux.vnet.ibm.com>
13850
13851         PR gdb/21220
13852         * inf-ptrace.c (inf_ptrace_xfer_partial): In "case
13853         TARGET_OBJECT_MEMORY", extract the logic for ptrace peek/poke...
13854         (inf_ptrace_peek_poke): ...here.  New function.  Now also loop
13855         over ptrace peek/poke until end of buffer or error.
13856
13857 2017-03-14  Simon Marchi  <simon.marchi@ericsson.com>
13858
13859         * parse.c (length_of_subexp): Make static.
13860         * parser-defs.h (length_of_subexp): Remove.
13861
13862 2017-03-14  Andreas Arnez  <arnez@linux.vnet.ibm.com>
13863
13864         * linux-nat.c (linux_proc_xfer_partial): Handle write operations
13865         as well.
13866
13867 2017-03-14  Pedro Alves  <palves@redhat.com>
13868
13869         * cp-name-parser.y (cp_demangled_name_to_comp): Update comment.
13870         (main): Use std::unique_ptr.  Remove calls to
13871         cp_demangled_name_parse_free.
13872
13873 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
13874
13875         * alpha-bsd-nat.c (alphabsd_fetch_inferior_registers,
13876         alphabsd_store_inferior_registers): Use regcache->ptid instead
13877         of inferior_ptid.
13878
13879 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
13880
13881         * aix-thread.c (aix_thread_fetch_registers,
13882         aix_thread_store_registers): Use regcache->ptid instead of
13883         inferior_ptid.
13884
13885 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
13886
13887         * aarch64-linux-nat.c (fetch_gregs_from_thread,
13888         store_gregs_to_thread, fetch_fpregs_from_thread,
13889         store_fpregs_to_thread): Use regcache->ptid instead of
13890         inferior_ptid.
13891
13892 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
13893
13894         * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers,
13895         amd64_linux_fetch_inferior_registers): Use regcache->ptid
13896         instead of inferior_ptid.
13897
13898 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
13899
13900         * target.c (target_fetch_registers, target_store_registers): Add
13901         assert.
13902
13903 2017-03-13  Simon Marchi  <simon.marchi@polymtl.ca>
13904
13905         * regcache.h (regcache_get_ptid): New function.
13906         * regcache.c (regcache_get_ptid): New function.
13907
13908 2017-03-13  Mark Wielaard  <mark@klomp.org>
13909
13910         * cp-name-parser.y (make_empty): Initialize d_printing to zero.
13911
13912 2017-03-10  Keith Seitz  <keiths@redhat.com>
13913
13914         PR c++/8218
13915         * c-typeprint.c (cp_type_print_method_args): Skip artificial arguments.
13916
13917 2017-03-08  Pedro Alves  <palves@redhat.com>
13918
13919         PR gdb/18360
13920         * infrun.c (start_step_over, do_target_resume, resume)
13921         (restart_threads): Assert we're not resuming a thread that is
13922         meant to be stopped.
13923         (infrun_thread_stop_requested_callback): Delete.
13924         (infrun_thread_stop_requested): If the thread is internally
13925         stopped, queue a pending stop event and clear the thread's
13926         inline-frame state.
13927         (handle_stop_requested): New function.
13928         (handle_syscall_event, handle_inferior_event_1): Use
13929         handle_stop_requested.
13930         (handle_stop_requested): New function.
13931         (handle_signal_stop): Set the thread's stop_signal here instead of
13932         at caller.
13933         (finish_step_over): Clear step over info unconditionally.
13934         (handle_signal_stop): If the user had interrupted the event
13935         thread, consider the stop a random signal.
13936         (handle_signal_stop) <signal arrived while stepping over
13937         breakpoint>: Don't restart threads here.
13938         (stop_waiting): Don't clear step-over info here.
13939
13940 2017-03-08  Pedro Alves  <palves@redhat.com>
13941
13942         PR 21206
13943         * common/gdb_unlinker.h (unlinker::unlinker): Attribute nonnull
13944         goes to argument 2, not 1.
13945
13946 2017-03-08  Pedro Alves  <palves@redhat.com>
13947
13948         PR cli/21218
13949         * top.c (gdb_readline_wrapper): Avoid passing NULL to
13950         display_gdb_prompt.
13951         (command_line_input): Add comment.
13952
13953 2017-03-08  Pedro Alves  <palves@redhat.com>
13954
13955         PR tui/21216
13956         * tui/tui-file.c (tui_file::write): New.
13957         * tui/tui-file.h (tui_file): Override "write".
13958         * tui/tui-io.c (do_tui_putc, update_start_line): New functions,
13959         factored out from ...
13960         (tui_puts): ... here.
13961         (tui_putc): Use them.
13962         (tui_write): New function.
13963         * tui/tui-io.h (tui_write): Declare.
13964
13965 2017-03-07  Sergio Durigan Junior  <sergiodj@redhat.com>
13966
13967         * Makefile.in (SFILES): Replace "environ.c" with
13968         "common/environ.c".
13969         (HFILES_NO_SRCDIR): Likewise, for "environ.h".
13970         * environ.c: Include "common-defs.h" instead of "defs.h.  Moved
13971         to...
13972         * common/environ.c: ... here.
13973         * environ.h: Moved to...
13974         * common/environ.h: ... here.
13975
13976 2017-03-07  Peter Bergner  <bergner@vnet.ibm.com>
13977
13978         * gdbarch.sh (pstring_ptr): New static function.
13979         (gdbarch_disassembler_options): Use it.
13980         (gdbarch_verify_disassembler_options): Print valid_disassembler_options,
13981         not valid_disassembler_option->name.
13982         * gdbarch.c: Regenerate.
13983
13984 2017-03-07  Peter Bergner  <bergner@vnet.ibm.com>
13985
13986         * config/powerpc/ppc64-linux.mh (MH_CFLAGS): Delete.
13987
13988 2017-03-07  Pedro Alves  <palves@redhat.com>
13989
13990         * tui/tui-regs.c (tui_restore_gdbout): Don't delete gdb_stdout.
13991
13992 2017-03-07  Walfred Tedeschi  <walfred.tedeschi@intel.com>
13993
13994         * i387-tdep.h (i387_reset_bnd_regs): Add function definition.
13995         * i387-tdep.c (i387_reset_bnd_regs): Add function implementation.
13996         * i386-tdep.c (i386_push_dummy_call): Call i387_reset_bnd_regs.
13997         * amd64-tdep.c (amd64_push_dummy_call): Call i387_reset_bnd_regs.
13998
13999 2017-03-06  Simon Marchi  <simon.marchi@ericsson.com>
14000
14001         * xtensa-linux-nat.c (fetch_gregs): Remove const.
14002
14003 2017-03-03  Simon Marchi  <simon.marchi@ericsson.com>
14004
14005         * remote.c (remote_add_target_side_commands): Use range-based
14006         for loop.
14007
14008 2017-03-03  Yao Qi  <yao.qi@linaro.org>
14009
14010         PR gdb/21165
14011         * ada-valprint.c (ada_val_print_ref): Call value_fetch_lazy if
14012         value is lazy.
14013         * valprint.c (common_val_print): Likewise.
14014
14015 2017-02-28  Peter Bergner  <bergner@vnet.ibm.com>
14016
14017         * NEWS: Mention new set/show disassembler-options commands.
14018         * doc/gdb.texinfo: Document new set/show disassembler-options commands.
14019         * disasm.c: Include "arch-utils.h", "gdbcmd.h" and "safe-ctype.h".
14020         (prospective_options): New static variable.
14021         (gdb_disassembler::gdb_disassembler): Initialize
14022         m_di.disassembler_options.
14023         (gdb_buffered_insn_length_init_dis): Initilize di->disassembler_options.
14024         (get_disassembler_options): New function.
14025         (set_disassembler_options): Likewise.
14026         (set_disassembler_options_sfunc): Likewise.
14027         (show_disassembler_options_sfunc): Likewise.
14028         (disassembler_options_completer): Likewise.
14029         (_initialize_disasm): Likewise.
14030         * disasm.h (get_disassembler_options): New prototype.
14031         (set_disassembler_options): Likewise.
14032         * gdbarch.sh (gdbarch_disassembler_options): New variable.
14033         (gdbarch_verify_disassembler_options): Likewise.
14034         * gdbarch.c: Regenerate.
14035         * gdbarch.h: Likewise.
14036         * arm-tdep.c (num_disassembly_options): Delete.
14037         (set_disassembly_style): Likewise.
14038         (arm_disassembler_options): New static variable.
14039         (set_disassembly_style_sfunc): Convert short style name into long
14040         option name.  Call set_disassembler_options.
14041         (show_disassembly_style_sfunc): New function.
14042         (arm_gdbarch_init): Call set_gdbarch_disassembler_options and
14043         set_gdbarch_verify_disassembler_options.
14044         (_initialize_arm_tdep): Delete regnames variable and update callers.
14045         (arm_disassembler_options): Initialize.
14046         (disasm_options): New variable.
14047         (num_disassembly_options): Rename from this...
14048         (num_disassembly_styles): ...to this.  Compute by scanning through
14049         disasm_options.
14050         (valid_disassembly_styles): Initialize using disasm_options.
14051         Remove calls to parse_arm_disassembler_option, get_arm_regnames and
14052         set_arm_regname_option.
14053         Pass show_disassembly_style_sfunc to the "disassembler" setshow command.
14054         * rs6000-tdep.c (powerpc_disassembler_options): New static variable.
14055         (rs6000_gdbarch_init): Call set_gdbarch_disassembler_options and
14056         set_gdbarch_verify_disassembler_options.
14057         * s390-tdep.c (s390_disassembler_options): New static variable.
14058         (s390_gdbarch_init):all set_gdbarch_disassembler_options and
14059         set_gdbarch_verify_disassembler_options.
14060
14061 2017-02-27  Simon Marchi  <simon.marchi@ericsson.com>
14062
14063         * remote.c (remote_add_target_side_condition): Remove "struct"
14064         keyword from range-based for loop.
14065
14066 2017-02-27  Simon Marchi  <simon.marchi@ericsson.com>
14067
14068         * remote.c (remote_add_target_side_condition): Use range-based
14069         for loop.  Update comment.
14070
14071 2017-02-27  Yao Qi  <yao.qi@linaro.org>
14072
14073         * f-typeprint.c (f_print_type): Check "varstring" is empty first.
14074
14075 2017-02-26  Alan Hayward  <alan.hayward@arm.com>
14076
14077         * regcache.c (regcache_raw_update): New function.
14078         (regcache_raw_read): Move code to regcache_raw_update.
14079         * regcache.h (regcache_raw_update): New declaration.
14080         * remote.c (remote_prepare_to_store): Call regcache_raw_update.
14081
14082 2017-02-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
14083
14084         * dwarf2read.c (create_debug_type_hash_table): Initialize
14085         header.signature and header.type_offset_in_tu.
14086
14087 2017-02-24  Pedro Alves  <palves@redhat.com>
14088
14089         * symtab.c (make_file_symbol_completion_list_1): Use
14090         add_symtab_completions.
14091
14092 2017-02-24  Alan Hayward  <alan.hayward@arm.com>
14093
14094         * stack.c (frame_info): Use frame_unwind_register_value to avoid buf.
14095
14096 2017-02-24  Alan Hayward  <alan.hayward@arm.com>
14097
14098         * i386-tdep.c (i386_pseudo_register_read_into_value): Use
14099         I386_MAX_REGISTER_SIZE.
14100         (i386_pseudo_register_write): Likewise.
14101         (i386_process_record): Likewise.
14102         * i387-tdep.c (i387_supply_xsave): Likewise.
14103         * m68k-linux-nat.c (fetch_register): Use M68K_MAX_REGISTER_SIZE.
14104         (store_register): Likewise.
14105
14106 2017-02-23  Pedro Alves  <palves@redhat.com>
14107
14108         * ada-lang.c: Include "common/function-view.h".
14109         (ada_iterate_over_symbols): Adjust to use function_view as
14110         callback type.
14111         (struct add_partial_datum, ada_complete_symbol_matcher): Delete.
14112         (ada_make_symbol_completion_list): Use a lambda.
14113         (ada_exc_search_name_matches): Delete.
14114         (name_matches_regex): New.
14115         (ada_add_global_exceptions): Use a lambda and name_matches_regex.
14116         * compile/compile-c-support.c: Include "common/function-view.h".
14117         (print_one_macro): Change prototype to accept a ui_file pointer.
14118         (write_macro_definitions): Use a lambda.
14119         * dwarf2read.c: Include "common/function-view.h".
14120         (dw2_map_expand_apply, dw2_map_symtabs_matching_filename)
14121         (dw2_expand_symtabs_matching): Adjust to use function_view as
14122         callback type.
14123         * language.h: Include "common/function-view.h".
14124         (struct language_defn) <la_iterate_over_symbols>: Adjust to use
14125         function_view as callback type.
14126         (LA_ITERATE_OVER_SYMBOLS): Remove DATA parameter.
14127         * linespec.c: Include "common/function-view.h".
14128         (collect_info::add_symbol): New method.
14129         (struct symbol_and_data_callback, iterate_inline_only, struct
14130         symbol_matcher_data, iterate_name_matcher): Delete.
14131         (iterate_over_all_matching_symtabs): Adjust to use function_view
14132         as callback type and lambdas.
14133         (iterate_over_file_blocks): Adjust to use function_view as
14134         callback type.
14135         (decode_compound_collector): Now a class with private fields.
14136         (decode_compound_collector::release_symbols): New method.
14137         (collect_one_symbol): Rename to...
14138         (decode_compound_collector::operator()): ... this and adjust.
14139         (lookup_prefix_sym): decode_compound_collector construction bits
14140         move to decode_compound_collector ctor.  Pass the
14141         decode_compound_collector object directly as callback.  Remove
14142         cleanups and use decode_compound_collector::release_symbols
14143         instead.
14144         (symtab_collector): Now a class with private fields.
14145         (symtab_collector::release_symtabs): New method.
14146         (add_symtabs_to_list): Rename to...
14147         (symtab_collector::operator()): ... this and adjust.
14148         (collect_symtabs_from_filename): symtab_collector construction
14149         bits move to symtab_collector ctor.  Pass the symtab_collector
14150         object directly as callback.  Remove cleanups and use
14151         symtab_collector::release_symtabs instead.
14152         (collect_symbols): Delete.
14153         (add_matching_symbols_to_info): Use lambdas.
14154         * macrocmd.c (print_macro_callback): Delete.
14155         (info_macro_command): Use a lambda.
14156         (info_macros_command): Pass print_macro_definition as callable
14157         directly.
14158         (print_one_macro): Remove 'ignore' parameter.
14159         (macro_list_command): Adjust.
14160         * macrotab.c (macro_for_each_data::fn): Now a function_view.
14161         (macro_for_each_data::user_data): Delete field.
14162         (foreach_macro): Adjust to call the function_view.
14163         (macro_for_each): Adjust to use function_view as callback type.
14164         (foreach_macro_in_scope): Adjust to call the function_view.
14165         (macro_for_each_in_scope): Adjust to use function_view as callback
14166         type.
14167         * macrotab.h: Include "common/function-view.h".
14168         (macro_callback_fn): Declare a prototype instead of a pointer.
14169         Remove "user_data" parameter.
14170         (macro_for_each, macro_for_each_in_scope): Adjust to use
14171         function_view as callback type.
14172         * psymtab.c (partial_map_expand_apply)
14173         (psym_map_symtabs_matching_filename, recursively_search_psymtabs):
14174         Adjust to use function_view as callback type and to return bool.
14175         (psym_expand_symtabs_matching): Adjust to use function_view as
14176         callback types.
14177         * symfile-debug.c (debug_qf_map_symtabs_matching_filename): Adjust
14178         to use function_view as callback type and to return bool.
14179         (debug_qf_expand_symtabs_matching): Adjust to use function_view as
14180         callback types.
14181         * symfile.c (expand_symtabs_matching): Adjust to use function_view
14182         as callback types.
14183         * symfile.h: Include "common/function-view.h".
14184         (expand_symtabs_file_matcher_ftype)
14185         (expand_symtabs_symbol_matcher_ftype)
14186         (expand_symtabs_exp_notify_ftype): Remove "data" parameter and
14187         return bool.
14188         (quick_symbol_functions::map_symtabs_matching_filename)
14189         (quick_symbol_functions::expand_symtabs_matching): Adjust to use
14190         function_view as callback type and return bool.
14191         (expand_symtabs_matching): Adjust to use function_view as callback
14192         type.
14193         (maintenance_expand_name_matcher)
14194         (maintenance_expand_file_matcher): Delete.
14195         (maintenance_expand_symtabs): Use lambdas.
14196         * symtab.c (iterate_over_some_symtabs): Adjust to use
14197         function_view as callback types and return bool.
14198         (iterate_over_symtabs): Likewise.  Use unique_xmalloc_ptr instead
14199         of a cleanup.
14200         (lookup_symtab_callback): Delete.
14201         (lookup_symtab): Use a lambda.
14202         (iterate_over_symbols): Adjust to use function_view as callback
14203         type.
14204         (struct search_symbols_data, search_symbols_file_matches)
14205         (search_symbols_name_matches): Delete.
14206         (search_symbols): Use a pair of lambdas.
14207         (struct add_name_data, add_macro_name, symbol_completion_matcher)
14208         (symtab_expansion_callback): Delete.
14209         (default_make_symbol_completion_list_break_on_1): Use lambdas.
14210         * symtab.h: Include "common/function-view.h".
14211         (iterate_over_some_symtabs): Adjust to use function_view as
14212         callback type and return bool.
14213         (iterate_over_symtabs): Adjust to use function_view as callback
14214         type.
14215         (symbol_found_callback_ftype): Remove 'data' parameter and return
14216         bool.
14217         (iterate_over_symbols): Adjust to use function_view as callback
14218         type.
14219
14220 2017-02-23  Pedro Alves  <palves@redhat.com>
14221
14222         * Makefile.in (SUBDIR_UNITTESTS_SRCS, SUBDIR_UNITTESTS_OBS): New.
14223         (%.o) <unittests/%.c>: New pattern.
14224         * configure.ac ($development): Add $(SUBDIR_UNITTESTS_OBS) to
14225         CONFIG_OBS, and $(SUBDIR_UNITTESTS_SRCS) to CONFIG_SRCS.
14226         * common/function-view.h: New file.
14227         * unittests/function-view-selftests.c: New file.
14228         * configure: Regenerate.
14229
14230 2017-02-23  Simon Marchi  <simon.marchi@ericsson.com>
14231
14232         * bsd-uthread.c (bsd_uthread_thread_alive): Use ptid instead of
14233         inferior_ptid.
14234         * go32-nat.c (go32_thread_alive): Likewise.
14235
14236 2017-02-23  Yao Qi  <yao.qi@linaro.org>
14237
14238         * varobj-iter.h (varobj_iter_delete): Call xfree instead of
14239         delete.
14240
14241 2017-02-23  Yao Qi  <yao.qi@linaro.org>
14242
14243         * varobj.c (varobj_clear_saved_item): Use delete instead of
14244         xfree.
14245         (update_dynamic_varobj_children): Likewise.
14246
14247 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
14248
14249         * dwarf2read.c (dwarf2_record_block_ranges): Add forgotten BASEADDR.
14250
14251 2017-02-21  Simon Marchi  <simon.marchi@ericsson.com>
14252
14253         * common/enum-flags.h (enum_flags::enum_flags): Initialize
14254         m_enum_value to 0 in default constructor.
14255
14256 2017-02-21  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
14257
14258         * rs6000-tdep.c (LOAD_AND_RESERVE_MASK): Rename from LWARX_MASK.
14259         (STORE_CONDITIONAL_MASK): Rename from STWCX_MASK.
14260         (LBARX_INSTRUCTION, LHARX_INSTRUCTION, LQARX_INSTRUCTION,
14261         STBCX_INSTRUCTION, STHCX_INSTRUCTION, STQCX_INSTRUCTION): New defines.
14262         (IS_LOAD_AND_RESERVE_INSN, IS_STORE_CONDITIONAL_INSN): New macros.
14263         (ppc_displaced_step_copy_insn): Use IS_LOAD_AND_RESERVE_INSN.
14264         (ppc_deal_with_atomic_sequence): Use IS_LOAD_AND_RESERVE_INSN and
14265         IS_STORE_CONDITIONAL_INSN.
14266
14267 2017-02-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
14268
14269         * dwarf2_rnglists_process: Initialize range_beginning and range_end.
14270
14271 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
14272
14273         * NEWS (Changes since GDB 7.12): Add DWARF-5.
14274
14275 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
14276
14277         * dwarf2read.c (skip_one_die, read_attribute_value)
14278         (dwarf2_const_value_attr, dump_die_shallow)
14279         (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
14280         (skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.
14281
14282 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
14283
14284         * dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
14285         (dwarf_parse_macro_header): Accept DWARF version 5.
14286         (dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.
14287
14288 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
14289
14290         * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
14291         DW_AT_GNU_*.
14292         * common/common-exceptions.h (enum errors): Likewise.
14293         * dwarf2-frame.c (class dwarf_expr_executor): Likewise.
14294         * dwarf2expr.c (dwarf_block_to_dwarf_reg)
14295         (dwarf_expr_context::execute_stack_op): Likewise.
14296         * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
14297         Likewise.
14298         * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
14299         (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
14300         (show_entry_values_debug, call_site_to_target_addr)
14301         (func_addr_to_tail_call_list, func_verify_no_selftailcall)
14302         (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
14303         (entry_data_value_free_closure, value_of_dwarf_reg_entry)
14304         (value_of_dwarf_block_entry, indirect_pieced_value)
14305         (symbol_needs_eval_context::push_dwarf_reg_entry_value):
14306         (disassemble_dwarf_expression): Likewise.
14307         * dwarf2read.c (process_die, inherit_abstract_dies)
14308         (read_call_site_scope): Likewise.
14309         * gdbtypes.h (struct func_type, struct call_site_parameter)
14310         (struct call_site): Likewise.
14311         * stack.c (read_frame_arg): Likewise.
14312         * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.
14313
14314 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
14315
14316         * defs.h (read_unsigned_leb128): New declaration.
14317         * dwarf2loc.c (decode_debug_loclists_addresses): New function.
14318         (decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
14319         (dwarf2_find_location_expression): Call also
14320         decode_debug_loclists_addresses.  Handle DWARF-5 ULEB128 length.
14321         * dwarf2loc.h (dwarf2_version): New declaration.
14322         * dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
14323         rnglists.
14324         (dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
14325         .debug_rnglists.
14326         (struct dwop_section_names): Add loclists_dwo.
14327         (dwop_section_names): Add .debug_loclists.dwo.
14328         (struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
14329         (struct dwarf2_per_cu_data): Add dwarf_version.
14330         (struct dwo_sections): Add loclists.
14331         (struct attr_abbrev): Add implicit_const.
14332         (read_indirect_line_string): New declaration.
14333         (read_unsigned_leb128): Delete declaration.
14334         (rcuh_kind): New definition.
14335         (read_and_check_comp_unit_head): Change parameter
14336         is_debug_types_section to section_kind.
14337         (dwarf2_locate_sections): Handle loclists, line_str and rnglists.
14338         (read_comp_unit_head): Change parameter abfd to section, add parameter
14339         section_kind.  Handle DWARF-5.
14340         (error_check_comp_unit_head): Accept also DWARF version 5.
14341         (read_and_check_comp_unit_head): Change parameter
14342         is_debug_types_section to section_kind.
14343         (read_and_check_type_unit_head): Delete function.
14344         (read_abbrev_offset): Handle DWARF-5.
14345         (create_debug_type_hash_table): Add parameter section_kind.  Process
14346         only DW_UT_type.  Use signature and type_offset_in_tu from struct
14347         comp_unit_head.
14348         (create_debug_types_hash_table): Update create_debug_type_hash_table
14349         caller.
14350         (create_all_type_units): Call create_debug_type_hash_table.
14351         (read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
14352         read_and_check_type_unit_head caller to read_and_check_comp_unit_head
14353         caller.
14354         (skip_one_die): Handle DW_FORM_implicit_const.
14355         (dwarf2_rnglists_process): New function.
14356         (dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
14357         (abbrev_table_read_table): Handle DW_FORM_implicit_const.
14358         (read_attribute_value): Handle DW_FORM_implicit_const,
14359         DW_FORM_line_strp.
14360         (read_attribute): Handle DW_FORM_implicit_const.
14361         (read_indirect_string_at_offset_from): New function from
14362         read_indirect_string_at_offset.
14363         (read_indirect_string_at_offset): Call
14364         read_indirect_string_at_offset_from.
14365         (read_indirect_line_string_at_offset): New function.
14366         (read_indirect_string): New function comment.
14367         (read_indirect_line_string): New function.
14368         (read_unsigned_leb128): Make it global.
14369         (dwarf2_string_attr): Handle DWARF-5.
14370         (add_include_dir_stub, read_formatted_entries): New functions.
14371         (dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
14372         Handle DWARF-5.
14373         (per_cu_header_read_in): Update read_comp_unit_head caller.
14374         (dwarf2_version): New function.
14375         * symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
14376         rnglists.
14377         * xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
14378         fields.
14379
14380 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
14381
14382         * dwarf2read.c (abbrev_table_read_table): Read the data only once.
14383
14384 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
14385
14386         * dwarf2read.c (dwarf2_ranges_process): New function from
14387         dwarf2_ranges_read.
14388         (dwarf2_ranges_read, dwarf2_record_block_ranges): Use
14389         dwarf2_ranges_process.
14390
14391 2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>
14392
14393         * dwarf2read.c (create_debug_type_hash_table): New function from
14394         create_debug_types_hash_table.
14395         (create_debug_types_hash_table): Call create_debug_type_hash_table.
14396         (create_all_type_units, open_and_init_dwo_file): Update
14397         create_debug_types_hash_table callers.
14398
14399 2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
14400
14401         PR gdb/16188
14402         * fork-child.c (trace_start_error): Fix thinko.  va_end should
14403         refer to 'ap', not 'args'.
14404
14405 2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
14406             Pedro Alves  <palves@redhat.com>
14407
14408         PR gdb/16188
14409         * darwin-nat.c (darwin_ptrace_me): Check if calls to system
14410         calls succeeded.
14411         * fork-child.c (trace_start_error): New function.
14412         (trace_start_error_with_name): Likewise.
14413         * gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
14414         * inf-ptrace.c (inf_ptrace_me): Likewise.
14415         * inferior.h (trace_start_error): New prototype.
14416         (trace_start_error_with_name): Likewise.
14417
14418 2017-02-15  Sergio Durigan Junior  <sergiodj@redhat.com>
14419
14420         PR gdb/21164
14421         * psymtab.c (maintenance_print_psymbols): Verify if 'argv' is not
14422         NULL before using it.
14423         * symmisc.c (maintenance_print_symbols): Likewise.
14424         (maintenance_print_msymbols): Likewise.
14425
14426 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
14427
14428         * NEWS: Add record Python bindings entry.
14429
14430 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
14431
14432         * Makefile.in (SUBDIR_PYTHON_OBS): Add py-record-btrace.o,
14433         py-record-full.o.
14434         (SUBDIR_PYTHON_SRCS): Add py-record-btrace.c, py-record-full.c.
14435         * python/py-record-btrace.c, python/py-record-btrace.h,
14436         python/py-record-full.c, python/py-record-full.h: New file.
14437         * python/py-record.c: Add include for py-record-btrace.h and
14438         py-record-full.h.
14439         (recpy_method, recpy_format, recpy_goto, recpy_replay_position,
14440         recpy_instruction_history, recpy_function_call_history, recpy_begin,
14441         recpy_end): Use functions from py-record-btrace.c and py-record-full.c.
14442         * python/python-internal.h (PyInt_FromSsize_t, PyInt_AsSsize_t):
14443         New definition.
14444         (gdbpy_initialize_btrace): New export.
14445         * python/python.c (_initialize_python): Add gdbpy_initialize_btrace.
14446
14447 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
14448
14449         * Makefile.in (SUBDIR_PYTHON_OBS): Add python/py-record.o.
14450         (SUBDIR_PYTHON_SRCS): Add python/py-record.c.
14451         * python/py-record.c: New file.
14452         * python/python-internal.h (gdbpy_start_recording,
14453         gdbpy_current_recording, gdpy_stop_recording,
14454         gdbpy_initialize_record): New export.
14455         * python/python.c (_initialize_python): Add gdbpy_initialize_record.
14456         (python_GdbMethods): Add gdbpy_start_recording,
14457         gdbpy_current_recording and gdbpy_stop_recording.
14458
14459 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
14460
14461         * record-btrace.c (record_btrace_record_method): New function.
14462         (init_record_btrace_ops): Initialize to_record_method.
14463         * record-full.c (record_full_record_method): New function.
14464         (init_record_full_ops, init_record_full_core_ops): Add
14465         record_full_record_method.
14466         * record.h (enum record_method): New enum.
14467         * target-debug.h (target_debug_print_enum_record_method: New define.
14468         * target-delegates.c: Regenerate.
14469         * target.c (target_record_method): New function.
14470         * target.h: Include record.h.
14471         (struct target_ops) <to_record_method>: New field.
14472         (target_record_method): New export.
14473
14474 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
14475
14476         * record.h (record_start, record_stop): New export.
14477         * record.c (record_start, record_stop): New function.
14478
14479 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
14480
14481         * btrace.c (btrace_fetch): Copy function call segments pointer
14482         into a vector.
14483         (btrace_clear): Clear the vector.
14484         (btrace_find_insn_by_number): Use binary search to find the correct
14485         function call segment.
14486         * btrace.h (brace_fun_p): New typedef.
14487         (struct btrace_thread_info) <functions>: New field.
14488
14489 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
14490
14491         * record-btrace.c (btrace_ui_out_decode_error): Move most of it ...
14492         * btrace.c (btrace_decode_error): ... here.  New function.
14493         * btrace.h (btrace_decode_error): New export.
14494
14495 2017-02-14  Tim Wiederhake  <tim.wiederhake@intel.com>
14496
14497         * btrace.c (ftrace_call_num_insn, btrace_insn_get_error): New function.
14498         (ftrace_new_function, btrace_insn_number, btrace_insn_cmp,
14499         btrace_find_insn_by_number): Remove special case for gaps.
14500         * btrace.h (btrace_insn_get_error): New export.
14501         (btrace_insn_number, btrace_find_insn_by_number): Adjust comment.
14502         * record-btrace.c (btrace_insn_history): Print number for gaps.
14503         (record_btrace_info, record_btrace_goto): Handle gaps.
14504
14505 2017-02-14  Tom Tromey  <tom@tromey.com>
14506
14507         PR python/13598:
14508         * python/python.c (gdbpy_before_prompt_hook): Emit before_prompt
14509         event.
14510         * python/py-evts.c (gdbpy_initialize_py_events): Add
14511         before_prompt registry.
14512         * python/py-events.h (events_object) <before_prompt>: New field.
14513
14514 2017-02-14  Markus Metzger  <markus.t.metzger@intel.com>
14515
14516         * btrace.c (ftrace_new_switch): Preserve up link and flags.
14517
14518 2017-02-13  Luis Machado  <lgustavo@codesourcery.com>
14519
14520         * symfile (_initialize_symfile): Add usage text to the load command's
14521         help text.
14522
14523 2017-02-10  Simon Marchi  <simon.marchi@ericsson.com>
14524
14525         * utils.c (defaulted_query): Don't query on secondary UIs.
14526
14527 2017-02-10  Tom Tromey  <tom@tromey.com>
14528
14529         * rust-lang.c (rust_get_disr_info): Remove unused variable.
14530
14531 2017-02-10  Tom Tromey  <tom@tromey.com>
14532
14533         * python/py-value.c (valpy_richcompare_throw): Remove unnecessary
14534         "cleanup" local.
14535         * python/py-type.c (typy_legacy_template_argument): Remove
14536         unnecessary "cleanup" local.
14537
14538 2017-02-10  Tom Tromey  <tom@tromey.com>
14539
14540         * python/python.c (do_start_initialization): New function, from
14541         _initialize_python.
14542         (_initialize_python): Call do_start_initialization.
14543         * python/py-linetable.c (ltpy_iternext): Use explicit returns, not
14544         goto.
14545
14546 2017-02-10  Tom Tromey  <tom@tromey.com>
14547
14548         * python/py-prettyprint.c (pretty_print_one_value): Use
14549         gdbpy_ref.
14550
14551 2017-02-10  Tom Tromey  <tom@tromey.com>
14552
14553         * python/py-cmd.c (cmdpy_destroyer): Use gdbpy_ref.
14554         * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Use
14555         gdbpy_ref.
14556         * python/py-type.c (field_new): Use gdbpy_ref.
14557         * python/py-symtab.c (symtab_and_line_to_sal_object): Use
14558         gdbpy_ref.
14559         * python/py-progspace.c (pspy_new): Use gdbpy_ref.
14560         (py_free_pspace): Likewise.
14561         (pspace_to_pspace_object): Likewise.
14562         * python/py-objfile.c (objfpy_new): Use gdbpy_ref.
14563         (py_free_objfile): Likewise.
14564         (objfile_to_objfile_object): Likewise.
14565         * python/py-inferior.c (delete_thread_object): Use
14566         gdbpy_ref.
14567         (infpy_read_memory): Likewise.
14568         (py_free_inferior): Likewise.
14569         * python/py-evtregistry.c (create_eventregistry_object): Use
14570         gdbpy_ref.
14571         * python/py-event.c (create_event_object): Use gdbpy_ref.
14572
14573 2017-02-10  Tom Tromey  <tom@tromey.com>
14574
14575         * python/py-ref.h (gdbpy_ref_policy): Now a template.
14576         (gdbpy_ref): Now a template; allow subclasses of PyObject to be
14577         used.
14578         * python/py-arch.c, python/py-bpevent.c, python/py-breakpoint.c,
14579         python/py-cmd.c, python/py-continueevent.c, python/py-event.c,
14580         python/py-exitedevent.c, python/py-finishbreakpoint.c,
14581         python/py-framefilter.c, python/py-function.c,
14582         python/py-inferior.c, python/py-infevents.c,
14583         python/py-linetable.c, python/py-newobjfileevent.c,
14584         python/py-param.c, python/py-prettyprint.c, python/py-ref.h,
14585         python/py-signalevent.c, python/py-stopevent.c,
14586         python/py-symbol.c, python/py-threadevent.c, python/py-type.c,
14587         python/py-unwind.c, python/py-utils.c, python/py-value.c,
14588         python/py-varobj.c, python/py-xmethods.c, python/python.c,
14589         varobj.c: Change gdbpy_ref to gdbpy_ref<>.
14590
14591 2017-02-10  Tom Tromey  <tom@tromey.com>
14592
14593         * ui-out.h (ui_out_emit_type): New class.
14594         (ui_out_emit_tuple, ui_out_emit_list): New typedefs.
14595         * python/py-framefilter.c (py_print_single_arg): Use gdb::optional
14596         and ui_out_emit_tuple.
14597         (enumerate_locals): Likewise.
14598         (py_mi_print_variables, py_print_locals, py_print_args): Use
14599         ui_out_emit_list.
14600         (py_print_frame): Use gdb::optional, ui_out_emit_tuple,
14601         ui_out_emit_list.
14602         * common/gdb_optional.h: New file.
14603
14604 2017-02-10  Martin Galvan  <martingalvan@sourceware.org>
14605
14606         * MAINTAINERS (Write After Approval): Update my e-mail address.
14607
14608 2017-02-10  Martin Galvan  <martingalvan@sourceware.org>
14609
14610         PR gdb/21122
14611         * breakpoint.c (_initialize_breakpoint): Update the help description
14612         of the 'commands' command to indicate that it takes a list argument.
14613
14614 2017-02-09  Simon Marchi  <simon.marchi@ericsson.com>
14615
14616         * interps.c (current_interp_set_logging): Remove "return".
14617
14618 2017-02-09  Gary Benson  <gbenson@redhat.com>
14619
14620         * symtab.c (add_symtab_completions): Prevent NULL pointer
14621         dereference.
14622
14623 2017-02-08  Pedro Alves  <palves@redhat.com>
14624
14625         * interps.c (interp::interp): Remove reference to quiet_p.
14626         (interp_set): Make static.  Remove dead "Switching to" output
14627         code.
14628         (interp_quiet_p, interp_set_quiet): Delete.
14629         (interpreter_exec_cmd): Don't set the interpreter quiet.
14630         * interps.h (interp_quiet_p): Make static.
14631         (class interp) <quiet_p>: Remove field
14632
14633 2017-02-08  Jerome Guitton  <guitton@adacore.com>
14634
14635         * cli/cli-decode.c (find_command_name_length): Make it extern.
14636         * cli/cli-decode.h (find_command_name_length): Declare.
14637         * cli/cli-script.c (command_name_equals, line_first_arg):
14638         New functions.
14639         (process_next_line): Use cli-decode to parse command names.
14640         (build_command_line): Make args a constant pointer.
14641
14642 2017-02-08  Jerome Guitton  <guitton@adacore.com>
14643
14644         * cli-decode.c (lookup_cmd_1, lookup_cmd_composition):
14645         Remove case-insensitive search.
14646
14647 2017-02-07  Jose E. Marchesi  <jose.marchesi@oracle.com>
14648
14649         * sparc-tdep.c (sparc32_gdbarch_init): Do not place a + operator
14650         at the end of the line.  Avoids an ARI warning.
14651
14652 2017-02-06  Luis Machado  <lgustavo@codesourcery.com>
14653
14654         * NEWS: Mention support for record/replay of Intel 64 rdrand and
14655         rdseed instructions.
14656         i386-tdep.c (i386_process_record): Handle Intel 64 rdrand and rseed.
14657
14658 2017-02-06  Ivo Raisr  <ivo.raisr@oracle.com>
14659
14660         PR tdep/20936
14661         Provide and use sparc32 and sparc64 target description XML files.
14662         * features/sparc/sparc32-cp0.xml, features/sparc/sparc32-cpu.xml,
14663         features/sparc/sparc32-fpu.xml: New files for sparc 32-bit.
14664         * features/sparc/sparc64-cp0.xml, features/sparc/sparc64-cpu.xml,
14665         features/sparc/sparc64-fpu.xml: New files for sparc 64-bit.
14666         * features/sparc/sparc32-solaris.xml: New file.
14667         * features/sparc/sparc64-solaris.xml: New file.
14668         * features/sparc/sparc32-solaris.c: Generated.
14669         * features/sparc/sparc64-solaris.c: Generated.
14670         * sparc-tdep.h: Account for differences in target descriptions.
14671         * sparc-tdep.c (sparc32_register_name): Use target provided registers.
14672         (sparc32_register_type): Use target provided registers.
14673         (validate_tdesc_registers): New function.
14674         (sparc32_gdbarch_init): Use tdesc_has_registers.
14675         Set pseudoregister functions.
14676         * sparc64-tdep.c (sparc64_register_name): Use target provided registers.
14677         (sparc64_register_type): Use target provided registers.
14678         (sparc64_init_abi): Set pseudoregister functions.
14679
14680 2017-02-03  Tom Tromey  <tom@tromey.com>
14681
14682         PR rust/21097:
14683         * rust-lang.c (rust_print_type) <TYPE_CODE_UNION>: Handle enums
14684         with a single member.
14685
14686 2017-02-03  Pedro Alves  <palves@redhat.com>
14687
14688         * cli/cli-interp.c (cli_interp_base::cli_interp_base)
14689         (cli_interp_base::~cli_interp_base): New.
14690         (cli_interp): New struct.
14691         (as_cli_interp): Cast the interp itself to cli_interp.
14692         (cli_interpreter_pre_command_loop): Rename to ...
14693         (cli_interp_base::pre_command_loop): ... this.  Remove 'self'
14694         parameter.
14695         (cli_interpreter_init): Rename to ...
14696         (cli_interp::init): ... this.  Remove 'self' parameter.  Use
14697         boolean.  Make extern.
14698         (cli_interpreter_resume): Rename to ...
14699         (cli_interp::resume): ... this.  Remove 'data' parameter.  Make
14700         extern.
14701         (cli_interpreter_suspend): Rename to ...
14702         (cli_interp::suspend): ... this.  Remove 'data' parameter.  Make
14703         extern.
14704         (cli_interpreter_exec): Rename to ...
14705         (cli_interp::exec): ... this.  Remove 'data' parameter.  Make
14706         extern.
14707         (cli_interpreter_supports_command_editing): Rename to ...
14708         (cli_interp_base::supports_command_editing): ... this.  Remove
14709         'interp' parameter.  Make extern.
14710         (cli_ui_out): Rename to ...
14711         (cli_interp::interp_ui_out): ... this.  Remove 'interp' parameter.
14712         Make extern.
14713         (cli_set_logging): Rename to ...
14714         (cli_interp_base::set_logging): ... this.  Remove 'interp'
14715         parameter.  Make extern.
14716         (cli_interp_procs): Delete.
14717         (cli_interp_factory): Adjust to use "new".
14718         * cli/cli-interp.h: Include "interps.h".
14719         (struct cli_interp_base): New struct.
14720         * interps.c (struct interp): Delete.  Fields moved to interps.h.
14721         (interp_new): Delete.
14722         (interp::interp, interp::~interp): New.
14723         (interp_set): Use bool, and return void.  Assume the interpreter
14724         has suspend, init and resume methods, and that the all return
14725         void.
14726         (set_top_level_interpreter): interp_set returns void.
14727         (interp_ui_out): Adapt.
14728         (current_interp_set_logging): Adapt.
14729         (interp_data): Delete.
14730         (interp_pre_command_loop, interp_supports_command_editing): Adapt.
14731         (interp_exec): Adapt.
14732         (top_level_interpreter_data): Delete.
14733         * interps.h (interp_init_ftype, interp_resume_ftype)
14734         (interp_suspend_ftype, interp_exec_ftype)
14735         (interp_pre_command_loop_ftype, interp_ui_out_ftype): Delete.
14736         (class interp): New.
14737         (interp_new): Delete.
14738         (interp_set): Now returns void.  Use bool.
14739         (interp_data, top_level_interpreter_data): Delete.
14740         * mi/mi-common.h: Include interps.h.
14741         (class mi_interp): Inherit from interp.  Define a ctor.  Declare
14742         init, resume, suspect, exec, interp_ui_out, set_logging and
14743         pre_command_loop methods.
14744         * mi/mi-interp.c (as_mi_interp): Cast the interp itself.
14745         (mi_interpreter_init): Rename to ...
14746         (mi_interp::init): ... this.  Remove the 'interp' parameter, use
14747         bool, return void and make extern.  Adjust.
14748         (mi_interpreter_resume): ... Rename to ...
14749         (mi_interp::resume): ... this.  Remove the 'data' parameter,
14750         return void and make extern.  Adjust.
14751         (mi_interpreter_suspend): ... Rename to ...
14752         (mi_interp::suspend): ... this.  Remove the 'data' parameter,
14753         return void and make extern.  Adjust.
14754         (mi_interpreter_exec): ... Rename to ...
14755         (mi_interp::exec): ... this.  Remove the 'data' parameter and make
14756         extern.  Adjust.
14757         (mi_interpreter_pre_command_loop): ... Rename to ...
14758         (mi_interp::pre_command_loop): ... this.  Remove the 'self'
14759         parameter and make extern.
14760         (mi_on_normal_stop_1): Adjust.
14761         (mi_ui_out): Rename to ...
14762         (mi_interp::interp_ui_out): ... this.  Remove the 'interp'
14763         parameter and make extern.  Adjust.
14764         (mi_set_logging): Rename to ...
14765         (mi_interp::set_logging): ... this.  Remove the 'interp'
14766         parameter and make extern.  Adjust.
14767         (mi_interp_procs): Delete.
14768         (mi_interp_factory): Adjust to use 'new'.
14769         * mi/mi-main.c (mi_cmd_gdb_exit, captured_mi_execute_command)
14770         (mi_print_exception, mi_execute_command, mi_load_progress):
14771         Adjust.
14772         * tui/tui-interp.c (tui_interp): New class.
14773         (as_tui_interp): Return a tui_interp pointer.
14774         (tui_on_normal_stop, tui_on_signal_received)
14775         (tui_on_end_stepping_range, tui_on_signal_exited, tui_on_exited)
14776         (tui_on_no_history, tui_on_user_selected_context_changed): Adjust
14777         to use interp::interp_ui_out.
14778         (tui_init): Rename to ...
14779         (tui_interp::init): ... this.  Remove the 'self' parameter, use
14780         bool, return void and make extern.  Adjust.
14781         (tui_resume): Rename to ...
14782         (tui_interp::resume): ... this.  Remove the 'data' parameter,
14783         return void and make extern.  Adjust.
14784         (tui_suspend): Rename to ...
14785         (tui_interp::suspend): ... this.  Remove the 'data' parameter,
14786         return void and make extern.  Adjust.
14787         (tui_ui_out): Rename to ...
14788         (tui_interp::interp_ui_out): ... this.  Remove the 'self'
14789         parameter, and make extern.  Adjust.
14790         (tui_exec): Rename to ...
14791         (tui_interp::exec): ... this.  Remove the 'data' parameter and
14792         make extern.
14793         (tui_interp_procs): Delete.
14794         (tui_interp_factory): Use "new".
14795
14796 2017-02-02  Tom Tromey  <tom@tromey.com>
14797
14798         * rust-exp.y (ends_raw_string, space_then_number)
14799         (rust_identifier_start_p): Return bool.
14800         * rust-lang.c (rust_tuple_type_p, rust_underscore_fields)
14801         (rust_tuple_struct_type_p, rust_tuple_variant_type_p)
14802         (rust_slice_type_p, rust_range_type_p, rust_u8_type_p)
14803         (rust_chartype_p): Return bool.
14804         (val_print_struct, rust_print_struct_def, rust_print_type):
14805         Update.
14806         * rust-lang.h (rust_tuple_type_p, rust_tuple_struct_type_p):
14807         Return bool.
14808
14809 2017-02-02  Tom Tromey  <tom@tromey.com>
14810
14811         * rust-lang.c: Reindent.
14812
14813 2017-02-02  Tom Tromey  <tom@tromey.com>
14814
14815         * rust-lang.h (rust_crate_for_block): Update.
14816         * rust-lang.c (rust_crate_for_block): Return std::string.
14817         (rust_get_disr_info): Use std:;string, not
14818         gdb::unique_xmalloc_ptr.
14819         * rust-exp.y (crate_name): Update.
14820
14821 2017-02-02  Pedro Alves  <palves@redhat.com>
14822
14823         * disasm-selftests.c (print_one_insn_test): Move the "verbose"
14824         field out of gdb_disassembler_test and make it static.
14825
14826 2017-02-02  Pedro Alves  <palves@redhat.com>
14827
14828         * mi/mi-common.h (struct mi_interp): Delete the mi2_interp,
14829         mi1_interp and mi_interp fields.
14830
14831 2017-02-02  Pedro Alves  <palves@redhat.com>
14832
14833         * cli/cli-interp.c (struct saved_output_files, saved_output):
14834         Moved from cli/cli-logging.c.
14835         (cli_set_logging): New function.
14836         (cli_interp_procs): Install cli_set_logging.
14837         * cli/cli-interp.h (make_logging_output, cli_set_logging):
14838         Declare.
14839         * cli/cli-logging.c (struct saved_output_files, saved_output):
14840         Moved to cli/cli-interp.c.
14841         (pop_output_files): Don't save outputs here.
14842         (make_logging_output): New function.
14843         (handle_redirections): Don't build tee nor save previous outputs
14844         here.
14845         * interps.c (current_interp_set_logging): Change prototype.
14846         Assume there's always a set_logging_proc method installed.
14847         * interps.h (interp_set_logging_ftype): Change prototype.
14848         (current_interp_set_logging): Change prototype and adjust comment.
14849         * mi/mi-interp.c (mi_set_logging): Change protototype.  Adjust to
14850         use make_logging_output.
14851         * tui/tui-interp.c (tui_interp_procs): Install cli_set_logging.
14852 2017-02-02  Pedro Alves  <palves@redhat.com>
14853
14854         * cli/cli-logging.c (maybe_warn_already_logging): New factored out
14855         from ...
14856         (set_logging_overwrite): ... here.
14857         (logging_no_redirect_file): Delete.
14858         (set_logging_redirect): Don't handle redirection on the fly.
14859         Instead warn that "logging off" / "logging on" is necessary.
14860         (pop_output_files): Delete references to logging_no_redirect_file.
14861         (show_logging_command): Always speak in terms of what will happen
14862         once logging is reenabled.
14863
14864 2017-02-02  Pedro Alves  <palves@redhat.com>
14865
14866         * disasm.h (gdb_pretty_print_disassembler): Tweak intro comment.
14867
14868 2017-02-02  Pedro Alves  <palves@redhat.com>
14869
14870         * disasm.c (gdb_pretty_print_insn): Rename to ...
14871         (gdb_pretty_print_disassembler::pretty_print_insn): ... this.
14872         Remove gdbarch parameter.  Adapt to clear the object's buffers
14873         instead of allocating new buffers, and to print using the object's
14874         gdb_disassembler instead of calling gdb_print_insn.
14875         (dump_insns): Use gdb_pretty_print_disassembler.
14876         * disasm.h (gdb_pretty_print_insn): Delete declaration.
14877         (gdb_pretty_print_disassembler): New class.
14878         * record-btrace.c (btrace_insn_history): Use
14879         gdb_pretty_print_disassembler.
14880
14881 2017-02-02  Pedro Alves  <palves@redhat.com>
14882
14883         * ada-lang.c (type_as_string): Use string_file.
14884         * ada-valprint.c (ada_print_floating): Use string_file.
14885         * ada-varobj.c (ada_varobj_scalar_image)
14886         (ada_varobj_get_value_image): Use string_file.
14887         * aix-thread.c (aix_thread_extra_thread_info): Use string_file.
14888         * arm-tdep.c (_initialize_arm_tdep): Use string_printf.
14889         * breakpoint.c (update_inserted_breakpoint_locations)
14890         (insert_breakpoint_locations, reattach_breakpoints)
14891         (print_breakpoint_location, print_one_detail_ranged_breakpoint)
14892         (print_it_watchpoint): Use string_file.
14893         (save_breakpoints): Use stdio_file.
14894         * c-exp.y (oper): Use string_file.
14895         * cli/cli-logging.c (set_logging_redirect): Use ui_file_up and
14896         tee_file.
14897         (pop_output_files): Use delete.
14898         (handle_redirections): Use stdio_file and tee_file.
14899         * cli/cli-setshow.c (do_show_command): Use string_file.
14900         * compile/compile-c-support.c (c_compute_program): Use
14901         string_file.
14902         * compile/compile-c-symbols.c (generate_vla_size): Take a
14903         'string_file &' instead of a 'ui_file *'.
14904         (generate_c_for_for_one_variable): Take a 'string_file &' instead
14905         of a 'ui_file *'.  Use string_file.
14906         (generate_c_for_variable_locations): Take a 'string_file &'
14907         instead of a 'ui_file *'.
14908         * compile/compile-internal.h (generate_c_for_for_one_variable):
14909         Take a 'string_file &' instead of a 'ui_file *'.
14910         * compile/compile-loc2c.c (push, pushf, unary, binary)
14911         (print_label, pushf_register_address, pushf_register)
14912         (do_compile_dwarf_expr_to_c): Take a 'string_file &' instead of a
14913         'ui_file *'.  Adjust.
14914         * compile/compile.c (compile_to_object): Use string_file.
14915         * compile/compile.h (compile_dwarf_expr_to_c)
14916         (compile_dwarf_bounds_to_c): Take a 'string_file &' instead of a
14917         'ui_file *'.
14918         * cp-support.c (inspect_type): Use string_file and obstack_copy0.
14919         (replace_typedefs_qualified_name): Use string_file and
14920         obstack_copy0.
14921         * disasm.c (gdb_pretty_print_insn): Use string_file.
14922         (gdb_disassembly): Adjust reference the null_stream global.
14923         (do_ui_file_delete): Delete.
14924         (gdb_insn_length): Use null_stream.
14925         * dummy-frame.c (maintenance_print_dummy_frames): Use stdio_file.
14926         * dwarf2loc.c (dwarf2_compile_property_to_c)
14927         (locexpr_generate_c_location, loclist_generate_c_location): Take a
14928         'string_file &' instead of a 'ui_file *'.
14929         * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise.
14930         * dwarf2read.c (do_ui_file_peek_last): Delete.
14931         (dwarf2_compute_name): Use string_file.
14932         * event-top.c (gdb_setup_readline): Use stdio_file.
14933         * gdbarch.sh (verify_gdbarch): Use string_file.
14934         * gdbtypes.c (safe_parse_type): Use null_stream.
14935         * guile/scm-breakpoint.c (gdbscm_breakpoint_commands): Use
14936         string_file.
14937         * guile/scm-disasm.c (gdbscm_print_insn_from_port): Take a
14938         'string_file *' instead of a 'ui_file *'.
14939         (gdbscm_arch_disassemble): Use string_file.
14940         * guile/scm-frame.c (frscm_print_frame_smob): Use string_file.
14941         * guile/scm-ports.c (class ioscm_file_port): Now a class that
14942         inherits from ui_file.
14943         (ioscm_file_port_delete, ioscm_file_port_rewind)
14944         (ioscm_file_port_put): Delete.
14945         (ioscm_file_port_write): Rename to ...
14946         (ioscm_file_port::write): ... this.  Remove file_port_magic
14947         checks.
14948         (ioscm_file_port_new): Delete.
14949         (ioscm_with_output_to_port_worker): Use ioscm_file_port and
14950         ui_file_up.
14951         * guile/scm-type.c (tyscm_type_name): Use string_file.
14952         * guile/scm-value.c (vlscm_print_value_smob, gdbscm_value_print):
14953         Use string_file.
14954         * infcmd.c (print_return_value_1): Use string_file.
14955         * infrun.c (print_target_wait_results): Use string_file.
14956         * language.c (add_language): Use string_file.
14957         * location.c (explicit_to_string_internal): Use string_file.
14958         * main.c (captured_main_1): Use null_file.
14959         * maint.c (maintenance_print_architecture): Use stdio_file.
14960         * mi/mi-cmd-stack.c (list_arg_or_local): Use string_file.
14961         * mi/mi-common.h (struct mi_interp) <out, err, log, targ,
14962         event_channel>: Change type to mi_console_file pointer.
14963         * mi/mi-console.c (mi_console_file_fputs, mi_console_file_flush)
14964         (mi_console_file_delete): Delete.
14965         (struct mi_console_file): Delete.
14966         (mi_console_file_magic): Delete.
14967         (mi_console_file_new): Delete.
14968         (mi_console_file::mi_console_file): New.
14969         (mi_console_file_delete): Delete.
14970         (mi_console_file_fputs): Delete.
14971         (mi_console_file::write): New.
14972         (mi_console_raw_packet): Delete.
14973         (mi_console_file::flush): New.
14974         (mi_console_file_flush): Delete.
14975         (mi_console_set_raw): Rename to ...
14976         (mi_console_file::set_raw): ... this.
14977         * mi/mi-console.h (class mi_console_file): New class.
14978         (mi_console_file_new, mi_console_set_raw): Delete.
14979         * mi/mi-interp.c (mi_interpreter_init): Use mi_console_file.
14980         (mi_set_logging): Use delete and tee_file.  Adjust.
14981         * mi/mi-main.c (output_register): Use string_file.
14982         (mi_cmd_data_evaluate_expression): Use string_file.
14983         (mi_cmd_data_read_memory): Use string_file.
14984         (mi_cmd_execute, print_variable_or_computed): Use string_file.
14985         * mi/mi-out.c (mi_ui_out::main_stream): New.
14986         (mi_ui_out::rewind): Use main_stream and
14987         string_file.
14988         (mi_ui_out::put): Use main_stream and string_file.
14989         (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
14990         Allocate a 'string_file' instead.
14991         (mi_out_new): Don't allocate a mem_fileopen stream here.
14992         * mi/mi-out.h (mi_ui_out::mi_ui_out): Remove 'stream' parameter.
14993         (mi_ui_out::main_stream): Declare method.
14994         * printcmd.c (eval_command): Use string_file.
14995         * psymtab.c (maintenance_print_psymbols): Use stdio_file.
14996         * python/py-arch.c (archpy_disassemble): Use string_file.
14997         * python/py-breakpoint.c (bppy_get_commands): Use string_file.
14998         * python/py-frame.c (frapy_str): Use string_file.
14999         * python/py-framefilter.c (py_print_type, py_print_single_arg):
15000         Use string_file.
15001         * python/py-type.c (typy_str): Use string_file.
15002         * python/py-unwind.c (unwind_infopy_str): Use string_file.
15003         * python/py-value.c (valpy_str): Use string_file.
15004         * record-btrace.c (btrace_insn_history): Use string_file.
15005         * regcache.c (regcache_print): Use stdio_file.
15006         * reggroups.c (maintenance_print_reggroups): Use stdio_file.
15007         * remote.c (escape_buffer): Use string_file.
15008         * rust-lang.c (rust_get_disr_info): Use string_file.
15009         * serial.c (serial_open_ops_1): Use stdio_file.
15010         (do_serial_close): Use delete.
15011         * stack.c (print_frame_arg): Use string_file.
15012         (print_frame_args): Remove local mem_fileopen stream, not used.
15013         (print_frame): Use string_file.
15014         * symmisc.c (maintenance_print_symbols): Use stdio_file.
15015         * symtab.h (struct symbol_computed_ops) <generate_c_location>:
15016         Take a 'string_file *' instead of a 'ui_file *'.
15017         * top.c (new_ui): Use stdio_file and stderr_file.
15018         (free_ui): Use delete.
15019         (execute_command_to_string): Use string_file.
15020         (quit_confirm): Use string_file.
15021         * tracepoint.c (collection_list::append_exp): Use string_file.
15022         * tui/tui-disasm.c (tui_disassemble): Use string_file.
15023         * tui/tui-file.c: Don't include "ui-file.h".
15024         (enum streamtype, struct tui_stream): Delete.
15025         (tui_file_new, tui_file_delete, tui_fileopen, tui_sfileopen)
15026         (tui_file_isatty, tui_file_rewind, tui_file_put): Delete.
15027         (tui_file::tui_file): New method.
15028         (tui_file_fputs): Delete.
15029         (tui_file_get_strbuf): Delete.
15030         (tui_file::puts): New method.
15031         (tui_file_adjust_strbuf): Delete.
15032         (tui_file_flush): Delete.
15033         (tui_file::flush): New method.
15034         * tui/tui-file.h: Tweak intro comment.
15035         Include ui-file.h.
15036         (tui_fileopen, tui_sfileopen, tui_file_get_strbuf)
15037         (tui_file_adjust_strbuf): Delete declarations.
15038         (class tui_file): New class.
15039         * tui/tui-io.c (tui_initialize_io): Use tui_file.
15040         * tui/tui-regs.c (tui_restore_gdbout): Use delete.
15041         (tui_register_format): Use string_stream.
15042         * tui/tui-stack.c (tui_make_status_line): Use string_file.
15043         (tui_get_function_from_frame): Use string_file.
15044         * typeprint.c (type_to_string): Use string_file.
15045         * ui-file.c (struct ui_file, ui_file_magic, ui_file_new): Delete.
15046         (null_stream): New global.
15047         (ui_file_delete): Delete.
15048         (ui_file::ui_file): New.
15049         (null_file_isatty): Delete.
15050         (ui_file::~ui_file): New.
15051         (null_file_rewind): Delete.
15052         (ui_file::printf): New.
15053         (null_file_put): Delete.
15054         (null_file_flush): Delete.
15055         (ui_file::putstr): New.
15056         (null_file_write): Delete.
15057         (ui_file::putstrn): New.
15058         (null_file_read): Delete.
15059         (ui_file::putc): New.
15060         (null_file_fputs): Delete.
15061         (null_file_write_async_safe): Delete.
15062         (ui_file::vprintf): New.
15063         (null_file_delete): Delete.
15064         (null_file::write): New.
15065         (null_file_fseek): Delete.
15066         (null_file::puts): New.
15067         (ui_file_data): Delete.
15068         (null_file::write_async_safe): New.
15069         (gdb_flush, ui_file_isatty): Adjust.
15070         (ui_file_put, ui_file_rewind): Delete.
15071         (ui_file_write): Adjust.
15072         (ui_file_write_for_put): Delete.
15073         (ui_file_write_async_safe, ui_file_read): Adjust.
15074         (ui_file_fseek): Delete.
15075         (fputs_unfiltered): Adjust.
15076         (set_ui_file_flush, set_ui_file_isatty, set_ui_file_rewind)
15077         (set_ui_file_put, set_ui_file_write, set_ui_file_write_async_safe)
15078         (set_ui_file_read, set_ui_file_fputs, set_ui_file_fseek)
15079         (set_ui_file_data): Delete.
15080         (string_file::~string_file, string_file::write)
15081         (struct accumulated_ui_file, do_ui_file_xstrdup, ui_file_xstrdup)
15082         (do_ui_file_as_string, ui_file_as_string): Delete.
15083         (do_ui_file_obsavestring, ui_file_obsavestring): Delete.
15084         (struct mem_file): Delete.
15085         (mem_file_new): Delete.
15086         (stdio_file::stdio_file): New.
15087         (mem_file_delete): Delete.
15088         (stdio_file::stdio_file): New.
15089         (mem_fileopen): Delete.
15090         (stdio_file::~stdio_file): New.
15091         (mem_file_rewind): Delete.
15092         (stdio_file::set_stream): New.
15093         (mem_file_put): Delete.
15094         (stdio_file::open): New.
15095         (mem_file_write): Delete.
15096         (stdio_file_magic, struct stdio_file): Delete.
15097         (stdio_file_new, stdio_file_delete, stdio_file_flush): Delete.
15098         (stdio_file::flush): New.
15099         (stdio_file_read): Rename to ...
15100         (stdio_file::read): ... this.  Adjust.
15101         (stdio_file_write): Rename to ...
15102         (stdio_file::write): ... this.  Adjust.
15103         (stdio_file_write_async_safe): Rename to ...
15104         (stdio_file::write_async_safe) ... this.  Adjust.
15105         (stdio_file_fputs): Rename to ...
15106         (stdio_file::puts) ... this.  Adjust.
15107         (stdio_file_isatty): Delete.
15108         (stdio_file_fseek): Delete.
15109         (stdio_file::isatty): New.
15110         (stderr_file_write): Rename to ...
15111         (stderr_file::write) ... this.  Adjust.
15112         (stderr_file_fputs): Rename to ...
15113         (stderr_file::puts) ... this.  Adjust.
15114         (stderr_fileopen, stdio_fileopen, gdb_fopen): Delete.
15115         (stderr_file::stderr_file): New.
15116         (tee_file_magic): Delete.
15117         (struct tee_file): Delete.
15118         (tee_file::tee_file): New.
15119         (tee_file_new): Delete.
15120         (tee_file::~tee_file): New.
15121         (tee_file_delete): Delete.
15122         (tee_file_flush): Rename to ...
15123         (tee_file::flush): ... this.  Adjust.
15124         (tee_file_write): Rename to ...
15125         (tee_file::write): ... this.  Adjust.
15126         (tee_file::write_async_safe): New.
15127         (tee_file_fputs): Rename to ...
15128         (tee_file::puts): ... this.  Adjust.
15129         (tee_file_isatty): Rename to ...
15130         (tee_file::isatty): ... this.  Adjust.
15131         * ui-file.h (struct obstack, struct ui_file): Don't
15132         forward-declare.
15133         (ui_file_new, ui_file_flush_ftype, set_ui_file_flush)
15134         (ui_file_write_ftype)
15135         (set_ui_file_write, ui_file_fputs_ftype, set_ui_file_fputs)
15136         (ui_file_write_async_safe_ftype, set_ui_file_write_async_safe)
15137         (ui_file_read_ftype, set_ui_file_read, ui_file_isatty_ftype)
15138         (set_ui_file_isatty, ui_file_rewind_ftype, set_ui_file_rewind)
15139         (ui_file_put_method_ftype, ui_file_put_ftype, set_ui_file_put)
15140         (ui_file_delete_ftype, set_ui_file_data, ui_file_fseek_ftype)
15141         (set_ui_file_fseek): Delete.
15142         (ui_file_data, ui_file_delete, ui_file_rewind)
15143         (struct ui_file): New.
15144         (ui_file_up): New.
15145         (class null_file): New.
15146         (null_stream): Declare.
15147         (ui_file_write_for_put, ui_file_put): Delete.
15148         (ui_file_xstrdup, ui_file_as_string, ui_file_obsavestring):
15149         Delete.
15150         (ui_file_fseek, mem_fileopen, stdio_fileopen, stderr_fileopen)
15151         (gdb_fopen, tee_file_new): Delete.
15152         (struct string_file): New.
15153         (struct stdio_file): New.
15154         (stdio_file_up): New.
15155         (struct stderr_file): New.
15156         (class tee_file): New.
15157         * ui-out.c (ui_out::field_stream): Take a 'string_file &' instead
15158         of a 'ui_file *'.  Adjust.
15159         * ui-out.h (class ui_out) <field_stream>: Likewise.
15160         * utils.c (do_ui_file_delete, make_cleanup_ui_file_delete)
15161         (null_stream): Delete.
15162         (error_stream): Take a 'string_file &' instead of a 'ui_file *'.
15163         Adjust.
15164         * utils.h (struct ui_file): Delete forward declaration..
15165         (make_cleanup_ui_file_delete, null_stream): Delete declarations.
15166         (error_stream): Take a 'string_file &' instead of a
15167         'ui_file *'.
15168         * varobj.c (varobj_value_get_print_value): Use string_file.
15169         * xtensa-tdep.c (xtensa_verify_config): Use string_file.
15170         * gdbarch.c: Regenerate.
15171
15172 2017-02-02  Pedro Alves  <palves@redhat.com>
15173
15174         * disasm.c (gdb_disassembler::pretty_print_insn): Rename to...
15175         (gdb_pretty_print_insn): ... this.  Now a free function.  Add back
15176         a 'gdbarch' parameter.  Allocate a mem_fileopen stream here.
15177         Adjust to call gdb_print_insn instead of
15178         gdb_disassembler::print_insn.
15179         (dump_insns, do_mixed_source_and_assembly_deprecated)
15180         (do_mixed_source_and_assembly, do_assembly_only): Add back a
15181         'gdbarch' parameter.  Remove gdb_disassembler parameter.
15182         (gdb_disassembly): Don't allocate a gdb_disassembler here.
15183         * disasm.h (gdb_disassembler::pretty_print_insn): Delete
15184         declaration.
15185         (gdb_pretty_print_insn): Re-add declaration.
15186         * record-btrace.c (btrace_insn_history): Don't allocate a
15187         gdb_disassembler here.  Adjust to call gdb_pretty_print_insn.
15188
15189 2017-02-01  Simon Marchi  <simon.marchi@polymtl.ca>
15190
15191         * disasm.h (gdb_disassembly): Remove file_string parameter.
15192         * disasm.c (gdb_disassembly): Likewise.
15193         * cli/cli-cmds.c (print_disassembly): Adapt.
15194         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Likewise.
15195         * stack.c (do_gdb_disassembly): Likewise.
15196
15197 2017-02-01  Andreas Arnez  <arnez@linux.vnet.ibm.com>
15198
15199         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): For
15200         DWARF_VALUE_LITERAL, no longer ignore the offset on big-endian
15201         targets.  And if the implicit value is longer than needed, extract
15202         the first bytes instead of the "least significant" ones.
15203
15204 2017-02-01  Markus Metzger  <markus.t.metzger@intel.com>
15205
15206         * btrace.c (btrace_enable): Do not call btrace_add_pc for
15207         BTRACE_FORMAT_PT or if can_access_registers_ptid returns false.
15208         (btrace_fetch): Assert can_access_registers_ptid.
15209         * record-btrace.c (require_btrace_thread, record_btrace_info): Call
15210         validate_registers_access.
15211
15212 2017-02-01  Markus Metzger  <markus.t.metzger@intel.com>
15213
15214         * gdbthread.h (can_access_registers_ptid): New.
15215         * thread.c (can_access_registers_ptid): New.
15216
15217 2017-02-01  Pedro Alves  <palves@redhat.com>
15218
15219         * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
15220
15221 2017-01-31  Pedro Alves  <palves@redhat.com>
15222
15223         * mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
15224         Fix typos.
15225
15226 2017-01-31  Pedro Alves  <palves@redhat.com>
15227
15228         * stack.c (print_frame_args): Remove local mem_fileopen stream,
15229         not used.
15230
15231 2017-01-31  Pedro Alves  <palves@redhat.com>
15232
15233         * varobj.c (varobj_value_get_print_value): Remove xstrdup call.
15234
15235 2017-01-31  Pedro Alves  <palves@redhat.com>
15236
15237         * common/scoped_restore.h
15238         (scoped_restore_tmpl::scoped_restore_tmpl): Template on T2, and
15239         change the value's parameter type to T2.
15240         (make_scoped_restore): Likewise.
15241
15242 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
15243             Richard Henderson  <rth@redhat.com>
15244
15245         * amd64-linux-nat.c (PTRACE_ARCH_PRCTL): New define.
15246         (amd64_linux_fetch_inferior_registers): Add case to fetch FS_BASE
15247         GS_BASE for older kernels.
15248         (amd64_linux_store_inferior_registers): Add case to store FS_BASE
15249         GS_BASE for older kernels.
15250         * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Add FS_BASE
15251         and GS_BASE to the offset table.
15252         (amd64_linux_register_reggroup_p): Add FS_BASE and GS_BASE to the
15253         system register group.
15254         * amd64-nat.c (amd64_native_gregset_reg_offset): Implements case
15255         for older kernels.
15256         * amd64-tdep.c (amd64_init_abi): Add segment registers for the
15257         amd64 ABI.
15258         * amd64-tdep.h (amd64_regnum): Add AMD64_FSBASE_REGNUM and
15259         AMD64_GSBASE_REGNUM.
15260         (AMD64_NUM_REGS): Set to AMD64_GSBASE_REGNUM + 1.
15261         * features/Makefile (amd64-linux.dat, amd64-avx-linux.dat)
15262         (amd64-mpx-linux.dat, amd64-avx512-linux.dat, x32-linux.dat)
15263         (x32-avx-linux.dat, x32-avx512-linux.dat): Add
15264         i386/64bit-segments.xml in those rules.
15265         * features/i386/64bit-segments.xml: New file.
15266         * features/i386/amd64-avx-mpx-linux.xml: Add 64bit-segments.xml.
15267         * features/i386/amd64-avx-linux.xml: Add 64bit-segments.xml.
15268         * features/i386/amd64-avx512-linux.xml: Add 64bit-segments.xml.
15269         * features/i386/amd64-mpx-linux.xml: Add 64bit-segments.xml.
15270         * features/i386/x32-avx512-linux.xml: Add 64bit-segments.xml.
15271         * features/i386/x32-avx-linux.xml: Add 64bit-segments.xml.
15272         * features/i386/amd64-linux.xml: Add 64bit-segments.xml.
15273         * features/i386/amd64-avx-linux.c: Regenerated.
15274         * features/i386/amd64-avx-mpx-linux.c: Regenerated.
15275         * features/i386/amd64-avx-mpx.c: Regenerated.
15276         * features/i386/amd64-avx512-linux.c: Regenerated.
15277         * features/i386/amd64-linux.c: Regenerated.
15278         * features/i386/amd64-mpx-linux.c: Regenerated.
15279         * features/i386/i386-avx-mpx-linux.c: Regenerated.
15280         * features/i386/i386-avx-mpx.c: Regenerated.
15281         * features/i386/x32-avx-linux.c: Regenerated.
15282         * features/i386/x32-avx512-linux.c: Regenerated.
15283         * regformats/i386/amd64-avx-linux.dat: Regenerated.
15284         * regformats/i386/amd64-avx-mpx-linux.dat: Regenerated.
15285         * regformats/i386/amd64-avx512-linux.dat: Regenerated.
15286         * regformats/i386/amd64-linux.dat: Regenerated.
15287         * regformats/i386/amd64-mpx-linux.dat: Regenerated.
15288         * regformats/i386/x32-avx-linux.dat: Regenerated.
15289         * regformats/i386/x32-avx512-linux.dat: Regenerated.
15290         * regformats/i386/x32-linux.dat: Regenerated.
15291
15292 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
15293
15294         * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM):
15295         Set to AMD64_NUM_REGS.
15296
15297 2017-01-27  Walfred Tedeschi  <walfred.tedeschi@intel.com>
15298
15299         * amd64-nat.c (amd64_native_gregset_reg_offset): Simplify logic
15300         that checks validity of a register number.
15301
15302 2017-01-27  Kees Cook  <keescook@google.com>
15303
15304         * gdb/arm-linux-nat.c (arm_linux_fetch_inferior_registers): Call
15305         fetch_fpregs if target has fpa registers.
15306         (arm_linux_store_inferior_registers): Call store_fpregs if target
15307         has fpa registers.
15308
15309 2017-01-26  Andreas Arnez  <arnez@linux.vnet.ibm.com>
15310
15311         * cris-tdep.c (cris_gdbarch_init): Remove check for
15312         info.byte_order and force it to BFD_ENDIAN_LITTLE.
15313
15314 2017-01-26  Antoine Tremblay  <antoine.tremblay@ericsson.com>
15315
15316         * corelow.c (get_core_register_section): Check for regset
15317         existence before checking for REGSET_VARIABLE_SIZE.
15318
15319 2017-01-26  Yao Qi  <yao.qi@linaro.org>
15320             Pedro Alves  <palves@redhat.com>
15321
15322         PR gdb/20939
15323         * disasm.c (gdb_disassembler::dis_asm_memory_error): Don't
15324         call memory_error, save memaddr instead.
15325         (gdb_disassembler::print_insn): If gdbarch_print_insn returns
15326         negative, cal memory_error.
15327         * disasm.h (gdb_disassembler) <m_err_memaddr>: New field.
15328
15329 2017-01-26  Yao Qi  <yao.qi@linaro.org>
15330
15331         * disasm-selftests.c (memory_error_test): New function.
15332         (_initialize_disasm_selftests): Register memory_error_test.
15333
15334 2017-01-26  Yao Qi  <yao.qi@linaro.org>
15335
15336         * Makefile.in (SFILES): Add disasm-selftests.c and
15337         selftest-arch.c.
15338         (COMMON_OBS): Add disasm-selftests.o and selftest-arch.o.
15339         * disasm-selftests.c: New file.
15340         * selftest-arch.c: New file.
15341         * selftest-arch.h: New file.
15342
15343 2017-01-26  Yao Qi  <yao.qi@linaro.org>
15344
15345         * mep-tdep.c (mep_gdb_print_insn): Set info->arch
15346         to bfd_arch_mep.  Don't return 0 if section is not
15347         found.  Call print_insn_mep.
15348
15349 2017-01-26  Pedro Alves  <palves@redhat.com>
15350             Yao Qi  <yao.qi@linaro.org>
15351
15352         * arm-tdep.c: Include "disasm.h".
15353         (gdb_print_insn_arm): Update code to get gdbarch.
15354         * disasm.c (dis_asm_read_memory): Change it to
15355         gdb_disassembler::dis_asm_read_memory.
15356         (dis_asm_memory_error): Likewise.
15357         (dis_asm_print_address): Likewise.
15358         (gdb_pretty_print_insn): Change it to
15359         gdb_disassembler::pretty_print_insn.
15360         (dump_insns): Add one argument gdb_disassemlber.  All
15361         callers updated.
15362         (do_mixed_source_and_assembly_deprecated): Likewise.
15363         (do_mixed_source_and_assembly): Likewise.
15364         (do_assembly_only): Likewise.
15365         (gdb_disassembler::gdb_disassembler): New.
15366         (gdb_disassembler::print_insn): New.
15367         * disasm.h (class gdb_disassembler): New.
15368         (gdb_pretty_print_insn): Remove declaration.
15369         (gdb_disassemble_info): Likewise.
15370         * guile/scm-disasm.c (class gdbscm_disassembler): New.
15371         (gdbscm_disasm_read_memory_worker): Update.
15372         (gdbscm_disasm_read_memory): Update.
15373         (gdbscm_disasm_memory_error): Remove.
15374         (gdbscm_disasm_print_address): Remove.
15375         (gdbscm_disassembler::gdbscm_disassembler): New.
15376         (gdbscm_print_insn_from_port): Update.
15377         * mips-tdep.c: Include disasm.h.
15378         (gdb_print_insn_mips): Update code to get gdbarch.
15379         * record-btrace.c (btrace_insn_history): Update.
15380         * spu-tdep.c: Include disasm.h.
15381         (struct spu_dis_asm_data): Remove.
15382         (struct spu_dis_asm_info): New.
15383         (spu_dis_asm_print_address): Use spu_dis_asm_info to get
15384         SPU id.
15385         (gdb_print_insn_spu): Cast disassemble_info to
15386         spu_dis_asm_info.
15387
15388 2017-01-26  Yao Qi  <yao.qi@linaro.org>
15389
15390         * disasm.c (do_ui_file_delete): Delete.
15391         (gdb_insn_length): Move code creating stream to ...
15392         * utils.c (null_stream): ... here.  New function.
15393         * utils.h (null_stream): Declare.
15394
15395 2017-01-23  Simon Marchi  <simon.marchi@polymtl.ca>
15396
15397         * python/py-inferior.c (find_thread_object): Return directly
15398         from the loop.  Remove "found" variable.
15399
15400 2017-01-21  Joel Brobecker  <brobecker@adacore.com>
15401
15402         GDB 7.12.1 released.
15403
15404 2017-01-20  Simon Marchi  <simon.marchi@ericsson.com>
15405
15406         * python/py-function.c (fnpy_call): Reorder declarations to have
15407         the gdbpy_enter object declared first.
15408         * python/py-xmethods.c (gdbpy_get_xmethod_arg_types): Likewise.
15409
15410 2017-01-20  Simon Marchi  <simon.marchi@ericsson.com>
15411
15412         PR python/21068
15413         * python/python-internal.h (PyMem_RawMalloc): Define for
15414         Python < 3.4.
15415         * python/py-gdb-readline.c (gdbpy_readline_wrapper): Use
15416         PyMem_RawMalloc instead of PyMem_Malloc.
15417
15418 2017-01-20  Mike Wrighton  <mike_wrighton@codesourcery.com>
15419             Luis Machado  <lgustavo@codesourcery.com>
15420
15421         * NEWS (New commands): Mention flash-erase.
15422         (New MI commands): Mention target-flash-erase.
15423         * mi/mi-cmds.c (mi_cmd_target_flash_erase): Add target-flash-erase MI
15424         command.
15425         * mi/mi-cmds.h (mi_cmd_target_flash_erase): New declaration.
15426         * mi/mi-main.c (mi_cmd_target_flash_erase): New function.
15427         * target.c (flash_erase_command): New function.
15428         (initialize_targets): Add new flash-erase command.
15429         * target.h (flash_erase_command): New declaration.
15430
15431 2017-01-20  Joel Brobecker  <brobecker@adacore.com>
15432
15433         * nat/linux-ptrace.c: Only include <sys/procfs.h> if
15434         HAVE_SYS_PROCFS_H is defined.
15435
15436 2017-01-18  Alan Hayward  <alan.hayward@arm.com>
15437
15438         * remote.c (struct cached_reg): Change data into a pointer.
15439         * (stop_reply_dtr): Free data pointers before deleting vector.
15440         (process_stop_reply): Likewise.
15441         (remote_parse_stop_reply): Allocate space for data
15442
15443 2017-01-18  Alan Hayward  <alan.hayward@arm.com>
15444
15445         * amd64-tdep.c (amd64_pseudo_register_read_value): remove
15446         MAX_REGISTER_SIZE.
15447         (amd64_pseudo_register_read_value): Likewise.
15448         * remote.c (fetch_register_using_p): Remove MAX_REGISTER_SIZE.
15449         (store_register_using_P): Likewise.
15450         * regcache.c (regcache_xfer_part): Likewise.
15451
15452 2017-01-16  Ivo Raisr  <ivo.raisr@oracle.com>
15453
15454         Split real and pseudo registers.
15455         * sparc-tdep.h (SPARC_CORE_REGISTERS): New macro.
15456         (sparc32_pseudo_regnum): New enum.
15457         * sparc64-tdep.h (sparc64_pseudo_regnum): New enum.
15458         * sparc-tdep.c (SPARC32_FPU_REGISTERS): New macro.
15459         (SPARC32_CP0_REGISTERS): New macro.
15460         (sparc32_pseudo_register_name): New function.
15461         (sparc32_register_name): Use sparc32_pseudo_register_name.
15462         (sparc32_pseudo_register_type): New function.
15463         (sparc32_register_type): Use sparc32_pseudo_register_type.
15464         (sparc32_pseudo_register_read, sparc32_pseudo_register_write): Handle
15465         pseudo register numbers.
15466         * sparc64-tdep.c SPARC64_FPU_REGISTERS): New macro.
15467         (SPARC64_CP0_REGISTERS): New macro.
15468         (sparc64_pseudo_register_name): New function.
15469         (sparc64_register_name): Use sparc64_pseudo_register_name.
15470         (sparc64_pseudo_register_type): New function.
15471         (sparc64_register_type): Use sparc64_pseudo_register_type.
15472         (sparc64_pseudo_register_read, sparc64_pseudo_register_write): Handle
15473         pseudo register numbers.
15474         (sparc64_store_floating_fields, sparc64_extract_floating_fields,
15475         sparc64_store_arguments): Handle pseudo register numbers.
15476
15477 2017-01-13  Yao Qi  <yao.qi@linaro.org>
15478
15479         * remote.c (REMOTE_DEBUG_MAX_CHAR): New macro.
15480         (putpkt_binary): Print only REMOTE_DEBUG_MAX_CHAR chars in debug
15481         output.
15482         (getpkt_or_notif_sane_1): Likewise.
15483
15484 2017-01-13  Yao Qi  <yao.qi@linaro.org>
15485
15486         * Makefile.in (checker-headers): Use CXX and CXX_DIALET instead
15487         of CC.  Pass "-x c++-header" instead of "-x c".
15488
15489 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
15490
15491         * remote.c (remote_can_async_p): Update comment.
15492
15493 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
15494
15495         * linux-nat.c (linux_nat_can_async_p): Update comment.
15496
15497 2017-01-12  Simon Marchi  <simon.marchi@ericsson.com>
15498
15499         * serial.c (serial_open): Forget about "pc" and "lpt" serial interface.
15500
15501 2017-01-11  Simon Marchi  <simon.marchi@ericsson.com>
15502
15503         * cli/cli-decode.c (lookup_cmd_1): Fix typo in comment.
15504
15505 2017-01-10  Tom Tromey  <tom@tromey.com>
15506
15507         * python/py-type.c (typy_legacy_template_argument): Update.
15508         * cp-support.h (struct demangle_parse_info) (demangle_parse_info,
15509         ~demangle_parse_info): Declare new members.
15510         (cp_demangled_name_to_comp): Return unique_ptr.
15511         (cp_demangled_name_parse_free)
15512         (make_cleanup_cp_demangled_name_parse_free)
15513         (cp_new_demangle_parse_info): Remove.
15514         * cp-support.c (do_demangled_name_parse_free_cleanup)
15515         (make_cleanup_cp_demangled_name_parse_free): Remove.
15516         (inspect_type, cp_canonicalize_string_full)
15517         (cp_canonicalize_string): Update.
15518         (mangled_name_to_comp): Change return type.
15519         (cp_class_name_from_physname, method_name_from_physname)
15520         (cp_func_name, cp_remove_params): Update.
15521         * cp-name-parser.y (demangle_parse_info): New constructor, from
15522         cp_new_demangle_parse_info.
15523         (~demangle_parse_info): New destructor, from
15524         cp_demangled_name_parse_free.
15525         (cp_merge_demangle_parse_infos): Update.
15526         (cp_demangled_name_to_comp): Change return type.
15527
15528 2017-01-10  Tom Tromey  <tom@tromey.com>
15529
15530         * top.c (prevent_dont_repeat): Change return type.
15531         * python/python.c (execute_gdb_command): Use std::string.
15532         Update.
15533         * guile/guile.c (gdbscm_execute_gdb_command): Update.
15534         * command.h (prevent_dont_repeat): Change return type.
15535         * breakpoint.c (bpstat_do_actions_1): Update.
15536
15537 2017-01-10  Tom Tromey  <tom@tromey.com>
15538
15539         * value.h (scoped_value_mark::~scoped_value_mark): Call
15540         free_to_mark.
15541         (scoped_value_mark::free_to_mark): New method.
15542         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use
15543         scoped_value_mark.
15544
15545 2017-01-10  Tom Tromey  <tom@tromey.com>
15546
15547         * python/py-value.c (valpy_dereference, valpy_referenced_value)
15548         (valpy_reference_value, valpy_const_value, valpy_get_address)
15549         (valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast)
15550         (valpy_getitem, valpy_call, valpy_binop_throw, valpy_negative)
15551         (valpy_absolute, valpy_richcompare_throw): Use scoped_value_mark.
15552         * dwarf2loc.c (dwarf2_loc_desc_get_symbol_read_needs): Use
15553         scoped_value_mark.
15554         * dwarf2-frame.c (execute_stack_op): Use scoped_value_mark.
15555         * value.h (scoped_value_mark): New class.
15556
15557 2017-01-10  Tom Tromey  <tom@tromey.com>
15558
15559         * dwarf2read.c (dwarf2_build_psymtabs): Use psymtab_discarder.
15560         * psympriv.h (make_cleanup_discard_psymtabs): Don't declare.
15561         * psymtab.c (discard_psymtabs_upto): Remove.
15562         (make_cleanup_discard_psymtabs): Remove.
15563         (struct psymtab_state): Remove.
15564
15565 2017-01-10  Tom Tromey  <tom@tromey.com>
15566
15567         * record-full.c (record_full_save_cleanups): Remove.
15568         (record_full_save): Use gdb::unlinker.
15569         * gcore.c (do_bfd_delete_cleanup): Remove.
15570         (gcore_command): Use gdb::unlinker, unique_xmalloc_ptr.  Remove
15571         cleanups.
15572         * dwarf2read.c (unlink_if_set): Remove.
15573         (write_psymtabs_to_index): Use gdb::unlinker.
15574         * common/gdb_unlinker.h: New file.
15575
15576 2017-01-10  Tom Tromey  <tom@tromey.com>
15577
15578         * windows-tdep.c (windows_xfer_shared_library): Update.
15579         * windows-nat.c (windows_make_so): Update.
15580         * utils.h (make_cleanup_bfd_unref): Remove.
15581         * utils.c (do_bfd_close_cleanup, make_cleanup_bfd_unref): Remove.
15582         * symfile.h (symfile_bfd_open)
15583         (find_separate_debug_file_in_section): Return gdb_bfd_ref_ptr.
15584         * symfile.c (read_symbols, symbol_file_add)
15585         (separate_debug_file_exists): Update.
15586         (symfile_bfd_open): Return gdb_bfd_ref_ptr.
15587         (generic_load, reread_symbols): Update.
15588         * symfile-mem.c (symbol_file_add_from_memory): Update.
15589         * spu-linux-nat.c (spu_bfd_open): Return gdb_bfd_ref_ptr.
15590         (spu_symbol_file_add_from_memory): Update.
15591         * solist.h (struct target_so_ops) <bfd_open>: Return
15592         gdb_bfd_ref_ptr.
15593         (solib_bfd_fopen, solib_bfd_open): Return gdb_bfd_ref_ptr.
15594         * solib.c (solib_bfd_fopen, solib_bfd_open): Return
15595         gdb_bfd_ref_ptr.
15596         (solib_map_sections, reload_shared_libraries_1): Update.
15597         * solib-svr4.c (enable_break): Update.
15598         * solib-spu.c (spu_bfd_fopen): Return gdb_bfd_ref_ptr.
15599         * solib-frv.c (enable_break2): Update.
15600         * solib-dsbt.c (enable_break): Update.
15601         * solib-darwin.c (gdb_bfd_mach_o_fat_extract): Return
15602         gdb_bfd_ref_ptr.
15603         (darwin_solib_get_all_image_info_addr_at_init): Update.
15604         (darwin_bfd_open): Return gdb_bfd_ref_ptr.
15605         * solib-aix.c (solib_aix_bfd_open): Return gdb_bfd_ref_ptr.
15606         * record-full.c (record_full_save): Update.
15607         * python/py-objfile.c (objfpy_add_separate_debug_file): Update.
15608         * procfs.c (insert_dbx_link_bpt_in_file): Update.
15609         * minidebug.c (find_separate_debug_file_in_section): Return
15610         gdb_bfd_ref_ptr.
15611         * machoread.c (macho_add_oso_symfile): Change abfd to
15612         gdb_bfd_ref_ptr.
15613         (macho_symfile_read_all_oso): Update.
15614         (macho_check_dsym): Return gdb_bfd_ref_ptr.
15615         (macho_symfile_read): Update.
15616         * jit.c (bfd_open_from_target_memory): Return gdb_bfd_ref_ptr.
15617         (jit_bfd_try_read_symtab): Update.
15618         * gdb_bfd.h (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
15619         (gdb_bfd_openw, gdb_bfd_openr_iovec)
15620         (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
15621         gdb_bfd_ref_ptr.
15622         (gdb_bfd_ref_policy): New struct.
15623         (gdb_bfd_ref_ptr): New typedef.
15624         * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
15625         (gdb_bfd_openw, gdb_bfd_openr_iovec)
15626         (gdb_bfd_openr_next_archived_file, gdb_bfd_fdopenr): Return
15627         gdb_bfd_ref_ptr.
15628         * gcore.h (create_gcore_bfd): Return gdb_bfd_ref_ptr.
15629         * gcore.c (create_gcore_bfd): Return gdb_bfd_ref_ptr.
15630         (gcore_command): Update.
15631         * exec.c (exec_file_attach): Update.
15632         * elfread.c (elf_symfile_read): Update.
15633         * dwarf2read.c (dwarf2_get_dwz_file): Update.
15634         (try_open_dwop_file, open_dwo_file): Return gdb_bfd_ref_ptr.
15635         (open_and_init_dwo_file): Update.
15636         (open_dwp_file): Return gdb_bfd_ref_ptr.
15637         (open_and_init_dwp_file): Update.
15638         * corelow.c (core_open): Update.
15639         * compile/compile-object-load.c (compile_object_load): Update.
15640         * common/gdb_ref_ptr.h (ref_ptr::operator->): New operator.
15641         * coffread.c (coff_symfile_read): Update.
15642         * cli/cli-dump.c (bfd_openr_or_error, bfd_openw_or_error): Return
15643         gdb_bfd_ref_ptr.  Rename.
15644         (dump_bfd_file, restore_command): Update.
15645         * build-id.h (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
15646         * build-id.c (build_id_to_debug_bfd): Return gdb_bfd_ref_ptr.
15647         (find_separate_debug_file_by_buildid): Update.
15648
15649 2017-01-10  Tom Tromey  <tom@tromey.com>
15650
15651         * common/gdb_ref_ptr.h: New file.
15652         * python/py-ref.h (struct gdbpy_ref_policy): New.
15653         (gdbpy_ref): Now a typedef.
15654
15655 2017-01-10  Tom Tromey  <tom@tromey.com>
15656
15657         * utils.h (make_cleanup_htab_delete): Don't declare.
15658         * utils.c (do_htab_delete_cleanup, make_cleanup_htab_delete):
15659         Remove.
15660         * linespec.c (decode_compound_collector): Add constructor,
15661         destructor.
15662         (lookup_prefix_sym): Remove cleanup.
15663         (symtab_collector): Add constructor, destructor.
15664         (collect_symtabs_from_filename): Remove cleanup.
15665         * disasm.c (do_mixed_source_and_assembly): Use htab_up.
15666         * compile/compile-c-symbols.c (generate_c_for_variable_locations):
15667         Use htab_up.
15668         * gnu-v3-abi.c (gnuv3_print_vtable): Use htab_up.
15669         * dwarf2read.c (dw2_expand_symtabs_matching)
15670         (dw2_map_symbol_filenames, dwarf_decode_macros)
15671         (write_psymtabs_to_index): Use htab_up.
15672         * dwarf2loc.c (func_verify_no_selftailcall)
15673         (call_site_find_chain_1, func_verify_no_selftailcall)
15674         (chain_candidate, call_site_find_chain_1): Use std::unordered_set,
15675         std::vector, gdb::unique_xmalloc_ptr.
15676         (call_sitep): Remove typedef.
15677         (dwarf2_locexpr_baton_eval): Remove unused variable.
15678
15679 2017-01-10  Tom Tromey  <tom@tromey.com>
15680
15681         * python/python-internal.h (make_cleanup_py_decref)
15682         (make_cleanup_py_xdecref): Don't declare.
15683         * python/py-utils.c (py_decref, make_cleanup_py_decref)
15684         (py_xdecref, make_cleanup_py_xdecref): Remove.
15685
15686 2017-01-10  Tom Tromey  <tom@tromey.com>
15687
15688         * python/py-framefilter.c (py_mi_print_variables): Use gdbpy_ref.
15689         (py_print_locals, enumerate_locals, py_print_args): Use gdbpy_ref.
15690
15691 2017-01-10  Tom Tromey  <tom@tromey.com>
15692
15693         * python/py-framefilter.c (enumerate_args): Use gdbpy_ref.
15694
15695 2017-01-10  Tom Tromey  <tom@tromey.com>
15696
15697         * python/py-utils.c (unicode_to_encoded_string)
15698         (python_string_to_target_string)
15699         (python_string_to_target_python_string)
15700         (python_string_to_host_string, gdbpy_obj_to_string)
15701         (get_addr_from_python): Use gdbpy_ref.
15702
15703 2017-01-10  Tom Tromey  <tom@tromey.com>
15704
15705         * python/py-unwind.c (pyuw_object_attribute_to_pointer): Use
15706         gdbpy_ref.
15707
15708 2017-01-10  Tom Tromey  <tom@tromey.com>
15709
15710         * python/python.c (eval_python_command, gdbpy_decode_line)
15711         (gdbpy_run_events, gdbpy_start_type_printers)
15712         (gdbpy_apply_type_printers): Use gdbpy_ref.
15713
15714 2017-01-10  Tom Tromey  <tom@tromey.com>
15715
15716         * python/py-param.c (get_doc_string, compute_enum_values): Use
15717         gdbpy_ref.
15718
15719 2017-01-10  Tom Tromey  <tom@tromey.com>
15720
15721         * python/py-inferior.c (find_thread_object, build_inferior_list):
15722         Use gdbpy_ref.
15723
15724 2017-01-10  Tom Tromey  <tom@tromey.com>
15725
15726         * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
15727
15728 2017-01-10  Tom Tromey  <tom@tromey.com>
15729
15730         * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope): Use
15731         gdbpy_ref.
15732
15733 2017-01-10  Tom Tromey  <tom@tromey.com>
15734
15735         * python/py-cmd.c (cmdpy_completer_helper): Use gdbpy_ref.  Remove
15736         extra incref.
15737         (cmdpy_completer_handle_brkchars, cmdpy_completer, cmdpy_init):
15738         Use gdbpy_ref.
15739
15740 2017-01-10  Tom Tromey  <tom@tromey.com>
15741
15742         * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
15743         gdbpy_ref.
15744
15745 2017-01-10  Tom Tromey  <tom@tromey.com>
15746
15747         * python/py-arch.c (archpy_disassemble): Use gdbpy_ref.  Don't
15748         decref results of PyArg_ParseTupleAndKeywords.
15749
15750 2017-01-10  Tom Tromey  <tom@tromey.com>
15751
15752         * python/python.c (python_run_simple_file): Use
15753         unique_xmalloc_ptr, gdbpy_ref.
15754
15755 2017-01-10  Tom Tromey  <tom@tromey.com>
15756
15757         * python/py-prettyprint.c (print_stack_unless_memory_error)
15758         (print_string_repr, print_children): Use gdbpy_ref.
15759         (dummy_python_frame): New class.
15760         (dummy_python_frame::dummy_python_frame): Rename from
15761         push_dummy_python_frame.
15762         (py_restore_tstate): Remove.
15763
15764 2017-01-10  Tom Tromey  <tom@tromey.com>
15765
15766         * python/py-framefilter.c (py_print_frame): Use gdbpy_ref.
15767
15768 2017-01-10  Tom Tromey  <tom@tromey.com>
15769
15770         * python/python.c (ensure_python_env, restore_python_env):
15771         Remove.
15772         * python/python-internal.h (ensure_python_env): Don't declare.
15773         * varobj.h (varobj_ensure_python_env): Don't declare.
15774         * varobj.c (varobj_ensure_python_env): Remove.
15775
15776 2017-01-10  Tom Tromey  <tom@tromey.com>
15777
15778         * varobj.c (varobj_value_get_print_value): Use
15779         gdbpy_enter_varobj.
15780
15781 2017-01-10  Tom Tromey  <tom@tromey.com>
15782
15783         * python/py-prettyprint.c (print_string_repr, print_children):
15784         Update.
15785         * python/py-lazy-string.c (gdbpy_extract_lazy_string): Change type
15786         of "encoding".
15787         * varobj.c (varobj_value_get_print_value): Update.
15788         * python/python-internal.h (gdbpy_extract_lazy_string): Update.
15789
15790 2017-01-10  Tom Tromey  <tom@tromey.com>
15791
15792         * varobj.c (varobj_get_display_hint)
15793         (dynamic_varobj_has_child_method, install_new_value_visualizer)
15794         (varobj_set_visualizer, free_variable): Use
15795         gdbpy_enter_varobj.
15796
15797 2017-01-10  Tom Tromey  <tom@tromey.com>
15798
15799         * python/python.c (python_command): Use gdbpy_enter, gdbpy_ref.
15800         (do_finish_initialization): New function.  Use gdbpy_ref.
15801         (gdbpy_finish_initialization): Use gdbpy_enter.  Call
15802         do_finish_initialization.
15803
15804 2017-01-10  Tom Tromey  <tom@tromey.com>
15805
15806         * python/py-param.c (get_set_value, get_show_value): Use
15807         gdbpy_enter, gdbpy_ref.
15808
15809 2017-01-10  Tom Tromey  <tom@tromey.com>
15810
15811         * python/py-function.c (fnpy_call): Use gdbpy_enter, gdbpy_ref.
15812
15813 2017-01-10  Tom Tromey  <tom@tromey.com>
15814
15815         * python/py-cmd.c (cmdpy_function): Use gdbpy_enter, gdbpy_ref.
15816
15817 2017-01-10  Tom Tromey  <tom@tromey.com>
15818
15819         * python/py-varobj.c (py_varobj_iter_dtor, py_varobj_iter_next):
15820         Use gdbpy_enter_varobj.
15821
15822 2017-01-10  Tom Tromey  <tom@tromey.com>
15823
15824         * varobj.c (gdbpy_enter_varobj): New constructor.
15825         * python/python-internal.h (gdbpy_enter_varobj): New class.
15826         * python/py-varobj.c (py_varobj_get_iterator): Use
15827         gdbpy_enter_varobj.
15828
15829 2017-01-10  Tom Tromey  <tom@tromey.com>
15830
15831         * python/py-xmethods.c (gdbpy_get_xmethod_result_type): Use
15832         gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
15833         (gdbpy_invoke_xmethod): Use gdbpy_ref, gdbpy_enter.
15834         (gdbpy_get_xmethod_arg_types): Use gdbpy_ref,
15835         unique_xmalloc_ptr.
15836         (gdbpy_get_xmethod_arg_types): Use gdbpy_ref, gdbpy_enter.
15837
15838 2017-01-10  Tom Tromey  <tom@tromey.com>
15839
15840         * python/py-xmethods.c (invoke_match_method): Use
15841         gdbpy_ref.
15842
15843 2017-01-10  Tom Tromey  <tom@tromey.com>
15844
15845         * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers): use
15846         gdbpy_enter, gdbpy_ref.
15847
15848 2017-01-10  Tom Tromey  <tom@tromey.com>
15849
15850         * python/python.c (python_interactive_command): Use gdbpy_enter.
15851
15852 2017-01-10  Tom Tromey  <tom@tromey.com>
15853
15854         * python/python.c (gdbpy_before_prompt_hook): Use gdbpy_enter,
15855         gdbpy_ref.
15856
15857 2017-01-10  Tom Tromey  <tom@tromey.com>
15858
15859         * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Use
15860         gdbpy_enter, gdbpy_ref, unique_xmalloc_ptr.
15861
15862 2017-01-10  Tom Tromey  <tom@tromey.com>
15863
15864         * utils.h (htab_deleter): New struct.
15865         (htab_up): New typedef.
15866         * python/py-framefilter.c (gdbpy_apply_frame_filter): Use
15867         gdbpy_enter, gdbpy_ref, htab_up.
15868
15869 2017-01-10  Tom Tromey  <tom@tromey.com>
15870
15871         * python/py-unwind.c (pending_frame_invalidate): Remove.
15872         (pyuw_sniffer): Use gdbpy_enter and gdbpy_ref.
15873
15874 2017-01-10  Tom Tromey  <tom@tromey.com>
15875
15876         * python/py-xmethods.c (gdbpy_free_xmethod_worker_data)
15877         (gdbpy_clone_xmethod_worker_data): Use gdbpy_enter.
15878
15879 2017-01-10  Tom Tromey  <tom@tromey.com>
15880
15881         * python/py-type.c (save_objfile_types): Use gdbpy_enter.
15882
15883 2017-01-10  Tom Tromey  <tom@tromey.com>
15884
15885         * python/python.c (gdbpy_eval_from_control_command)
15886         (gdbpy_source_script, gdbpy_run_events)
15887         (gdbpy_source_objfile_script, gdbpy_execute_objfile_script)
15888         (gdbpy_free_type_printers, gdbpy_finish_initialization): Use
15889         gdbpy_enter.
15890
15891 2017-01-10  Tom Tromey  <tom@tromey.com>
15892
15893         * python/py-progspace.c (py_free_pspace): Use gdbpy_enter.
15894
15895 2017-01-10  Tom Tromey  <tom@tromey.com>
15896
15897         * python/py-objfile.c (py_free_objfile): Use gdbpy_enter.
15898
15899 2017-01-10  Tom Tromey  <tom@tromey.com>
15900
15901         * python/py-inferior.c (python_on_normal_stop, python_on_resume)
15902         (python_on_inferior_call_pre, python_on_inferior_call_post)
15903         (python_on_memory_change, python_on_register_change)
15904         (python_inferior_exit, python_new_objfile, add_thread_object)
15905         (delete_thread_object, py_free_inferior): Use gdbpy_enter.
15906
15907 2017-01-10  Tom Tromey  <tom@tromey.com>
15908
15909         * python/py-finishbreakpoint.c (bpfinishpy_handle_stop)
15910         (bpfinishpy_handle_exit): Use gdbpy_enter.
15911
15912 2017-01-10  Tom Tromey  <tom@tromey.com>
15913
15914         * python/py-cmd.c (cmdpy_destroyer)
15915         (cmdpy_completer_handle_brkchars, cmdpy_completer): Use
15916         gdbpy_enter.
15917
15918 2017-01-10  Tom Tromey  <tom@tromey.com>
15919
15920         * python/py-breakpoint.c (gdbpy_breakpoint_cond_says_stop): Use
15921         gdbpy_enter.
15922         (gdbpy_breakpoint_has_cond): Likewise.
15923
15924 2017-01-10  Tom Tromey  <tom@tromey.com>
15925
15926         * python/python.c (gdbpy_enter): New constructor.
15927         (~gdbpy_enter): New destructor.
15928         (restore_python_env, ensure_python_env): Rewrite.
15929         * python/python-internal.h (gdbpy_enter): New class.
15930
15931 2017-01-10  Tom Tromey  <tom@tromey.com>
15932
15933         * python/py-symbol.c (gdbpy_lookup_symbol): Use gdbpy_ref.
15934
15935 2017-01-10  Tom Tromey  <tom@tromey.com>
15936
15937         * python/py-value.c (value_has_field, get_field_flag)
15938         (get_field_type, valpy_getitem, convert_value_from_python): Use
15939         gdbpy_ref.
15940
15941 2017-01-10  Tom Tromey  <tom@tromey.com>
15942
15943         * python/python.c (gdbpy_progspaces, gdbpy_objfiles): Use
15944         gdbpy_ref.
15945
15946 2017-01-10  Tom Tromey  <tom@tromey.com>
15947
15948         * python/py-prettyprint.c (search_pp_list)
15949         (find_pretty_printer_from_objfiles)
15950         (find_pretty_printer_from_progspace)
15951         (find_pretty_printer_from_gdb, find_pretty_printer)
15952         (gdbpy_get_display_hint, gdbpy_get_varobj_pretty_printer): Use
15953         gdbpy_ref.
15954
15955 2017-01-10  Tom Tromey  <tom@tromey.com>
15956
15957         * python/py-param.c (call_doc_function): Use gdbpy_ref.
15958
15959 2017-01-10  Tom Tromey  <tom@tromey.com>
15960
15961         * python/py-linetable.c (build_line_table_tuple_from_pcs)
15962         (ltpy_get_all_source_lines): Use gdbpy_ref.
15963
15964 2017-01-10  Tom Tromey  <tom@tromey.com>
15965
15966         * python/py-framefilter.c (extract_sym, extract_value)
15967         (get_py_iter_from_func, bootstrap_python_frame_filters): Use
15968         gdbpy_ref.
15969
15970 2017-01-10  Tom Tromey  <tom@tromey.com>
15971
15972         * python/py-breakpoint.c (gdbpy_breakpoints): Use gdbpy_ref.
15973
15974 2017-01-10  Tom Tromey  <tom@tromey.com>
15975
15976         * python/py-inferior.c (gdbpy_inferiors): Use gdbpy_ref.
15977
15978 2017-01-10  Tom Tromey  <tom@tromey.com>
15979
15980         * python/py-function.c (convert_values_to_python, fnpy_init): Use
15981         gdbpy_ref.
15982
15983 2017-01-10  Tom Tromey  <tom@tromey.com>
15984
15985         * python/py-cmd.c (gdbpy_string_to_argv): Use gdbpy_ref.
15986
15987 2017-01-10  Tom Tromey  <tom@tromey.com>
15988
15989         * python/py-type.c (convert_field, make_fielditem, typy_fields)
15990         (typy_range): Use gdbpy_ref.
15991
15992 2017-01-10  Tom Tromey  <tom@tromey.com>
15993
15994         * python/py-threadevent.c (create_thread_event_object): Use
15995         gdbpy_ref.
15996         * python/py-stopevent.c (create_stop_event_object): Simplify.
15997         (emit_stop_event): Use gdbpy_ref.
15998         * python/py-signalevent.c (create_signal_event_object): Use
15999         gdbpy_ref.
16000         * python/py-newobjfileevent.c (create_new_objfile_event_object)
16001         (emit_new_objfile_event, create_clear_objfiles_event_object)
16002         (emit_clear_objfiles_event): Use gdbpy_ref.
16003         * python/py-infevents.c (create_inferior_call_event_object)
16004         (create_register_changed_event_object)
16005         (create_memory_changed_event_object, emit_inferior_call_event)
16006         (emit_memory_changed_event, emit_register_changed_event): Use
16007         gdbpy_ref.
16008         * python/py-exitedevent.c (create_exited_event_object)
16009         (emit_exited_event): Use gdbpy_ref.
16010         * python/py-event.h (evpy_emit_event): Remove
16011         CPYCHECKER_STEALS_REFERENCE_TO_ARG annotation.
16012         * python/py-event.c (evpy_emit_event): Use gdbpy_ref.
16013         * python/py-continueevent.c (emit_continue_event): Use
16014         gdbpy_ref.
16015         * python/py-breakpoint.c (gdbpy_breakpoint_created)
16016         (gdbpy_breakpoint_deleted, gdbpy_breakpoint_modified): Use
16017         gdbpy_ref.
16018         * python/py-bpevent.c (create_breakpoint_event_object): Use
16019         gdbpy_ref.
16020
16021 2017-01-10  Tom Tromey  <tom@tromey.com>
16022
16023         * python/py-ref.h: New file.
16024
16025 2017-01-10  Simon Marchi  <simon.marchi@ericsson.com>
16026
16027         * cli-out.c (cli_ui_out::do_redirect): Change return type to
16028         void.
16029         * cli-out.h (cli_ui_out::do_redirect): Likewise.
16030         * mi/mi-out.c (mi_ui_out::do_redirect): Likewise.
16031         * mi/mi-out.h (mi_ui_out::do_redirect): Likewise.
16032         * ui-out.c (ui_out::redirect): Likewise.
16033         * ui-out.h (ui_out::redirect, ui_out::do_redirect): Likewise.
16034         * cli/cli-logging.c (set_logging_redirect): Update call site of
16035         ui_out::redirect.
16036         (handle_redirections): Likewise.
16037         * scm-ports.c (ioscm_with_output_to_port_worker): Likewise.
16038         * top.c (execute_command_to_string): Likewise.
16039         * utils.c (do_ui_out_redirect_pop): Likewise.
16040
16041 2017-01-10  Simon Marchi  <simon.marchi@ericsson.com>
16042
16043         * stack.c (_initialize_stack): Update "frame" command help message.
16044
16045 2017-01-08  Iain Buclaw  <ibuclaw@gdcproject.org>
16046
16047         * d-exp.y (CastExpression): Emit UNOP_CAST_TYPE.
16048
16049 2017-01-06  Yao Qi  <yao.qi@linaro.org>
16050
16051         * x86-linux-nat.h: Include gdb_proc_service.h.
16052
16053 2017-01-06  Yao Qi  <yao.qi@linaro.org>
16054
16055         * ser-base.h: Include serial.h.
16056
16057 2017-01-06  Yao Qi  <yao.qi@linaro.org>
16058
16059         * ppc-linux-tdep.h: Include ppc-tdep.h.
16060
16061 2017-01-06  Yao Qi  <yao.qi@linaro.org>
16062
16063         * nat/amd64-linux-siginfo.h: Include signal.h.
16064
16065 2017-01-06  Yao Qi  <yao.qi@linaro.org>
16066
16067         * nat/aarch64-linux-hw-point.h: Include break-common.h.
16068
16069 2017-01-06  Yao Qi  <yao.qi@linaro.org>
16070
16071         * mi/mi-parse.h: Include mi-cmds.h.
16072
16073 2017-01-06  Yao Qi  <yao.qi@linaro.org>
16074
16075         * inf-loop.c: Don't include "target.h".
16076         * inf-loop.h: Include it here.
16077
16078 2017-01-06  Yao Qi  <yao.qi@linaro.org>
16079
16080         * dfp.h: Include "dboulest.h" and "expression.h".
16081
16082 2017-01-06  Yao Qi  <yao.qi@linaro.org>
16083
16084         * ax-gdb.h: Include "ax.h".
16085
16086 2017-01-06  Yao Qi  <yao.qi@linaro.org>
16087
16088         * Makefile.in (HFILES_NO_SRCDIR): Replace gdb_ptrace.h
16089         with nat/gdb_ptrace.h.
16090
16091 2017-01-05  Yao Qi  <yao.qi@linaro.org>
16092
16093         * mips-fbsd-tdep.c (mips_fbsd_sigframe_init): Move && to
16094         new line.
16095         (mips64_fbsd_sigframe_init): Likewise.
16096
16097 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
16098
16099         * mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Use
16100         GDB_OSABI_FREEBSD instead of GDB_OSABI_FREEBSD_ELF.
16101
16102 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
16103
16104         * Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
16105         * NEWS: Mention new FreeBSD/mips native configuration.
16106         * config/mips/fbsd.mh: New file.
16107         * configure.host: Add mips*-*-freebsd*.
16108         * mips-fbsd-nat.c: New file.
16109
16110 2017-01-04  John Baldwin  <jhb@FreeBSD.org>
16111
16112         * Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
16113         (ALLDEPFILES): Add mips-fbsd-tdep.c.
16114         * NEWS: Mention new FreeBSD/mips target.
16115         * configure.tgt: Add mips*-*-freebsd*.
16116         * mips-fbsd-tdep.c: New file.
16117         * mips-fbsd-tdep.h: New file.
16118
16119 2017-01-04  Yao Qi  <yao.qi@linaro.org>
16120
16121         * dwarf2loc.c (write_pieced_value): Don't use VALUE_FRAME_ID (to),
16122         use c->frame_id when the piece location is DWARF_VALUE_REGISTER.
16123
16124 2017-01-01  Joel Brobecker  <brobecker@adacore.com>
16125
16126         Update copyright year range in all GDB files.
16127
16128 2017-01-01  Joel Brobecker  <brobecker@adacore.com>
16129
16130         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2016.
16131
16132 For older changes see ChangeLog-2016.
16133 \f
16134 Local Variables:
16135 mode: change-log
16136 left-margin: 8
16137 fill-column: 74
16138 version-control: never
16139 coding: utf-8
16140 End: