Style print_address_symbolic
[external/binutils.git] / gdb / ChangeLog
1 2018-12-28  Tom Tromey  <tom@tromey.com>
2
3         * printcmd.c (print_address_symbolic): Style function name.
4
5 2018-12-28  Tom Tromey  <tom@tromey.com>
6
7         * breakpoint.c (say_where): Style file name.
8
9 2018-12-28  Tom Tromey  <tom@tromey.com>
10
11         * ui-out.h (enum class ui_out_style_kind) <VARIABLE>: New global.
12         * stack.c (print_frame_arg): Style name.
13         * printcmd.c (print_variable_and_value): Style variable name.
14         * cli/cli-style.h (variable_name_style): Declare.
15         * cli/cli-style.c (variable_name_style): New global.
16         (_initialize_cli_style): Update.
17         * cli-out.c (cli_ui_out::do_field_string): Update.
18
19 2018-12-28  Tom Tromey  <tom@tromey.com>
20
21         * utils.h (reset_terminal_style): Declare.
22         * utils.c (can_emit_style_escape): New function.
23         (set_output_style): Use it.
24         (reset_terminal_style): New function.
25         * printcmd.c (printf_command): Call reset_terminal_style.
26         * cli/cli-cmds.c (echo_command): Call reset_terminal_style.
27
28 2018-12-28  Tom Tromey  <tom@tromey.com>
29
30         * utils.h (set_output_style, fprintf_styled)
31         (fputs_styled): Declare.
32         * utils.c (applied_style, desired_style): New globals.
33         (emit_style_escape, set_output_style): New function.
34         (prompt_for_continue): Emit style escapes.
35         (fputs_maybe_filtered): Likewise.
36         (fputs_styled, fprintf_styled): New functions.
37         * ui-out.h (enum class ui_out_style_kind): New.
38         (class ui_out) <field_string, field_stream, do_field_string>: Add
39         style parameter.
40         * ui-out.c (ui_out::field_stream, ui_out::field_string): Add style
41         parameter.
42         * tui/tui-out.h (class tui_ui_out) <do_field_string>: Add style
43         parameter.
44         * tui/tui-out.c (tui_ui_out::do_field_string): Add style
45         parameter.
46         (tui_ui_out::do_field_string): Update.
47         * tracepoint.c (print_one_static_tracepoint_marker): Style
48         output.
49         * stack.c (print_frame_info, print_frame): Style output.
50         * source.c (print_source_lines_base): Style output.
51         * skip.c (info_skip_command): Style output.
52         * record-btrace.c (btrace_call_history_src_line): Style output.
53         (btrace_call_history): Likewise.
54         * python/py-framefilter.c (py_print_frame): Style output.
55         * mi/mi-out.h (class mi_ui_out) <do_field_string>: Add style
56         parameter.
57         * mi/mi-out.c (mi_ui_out::do_table_header)
58         (mi_ui_out::do_field_int): Update.
59         (mi_ui_out::do_field_string): Update.
60         * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
61         Style output.
62         * cli/cli-style.h: New file.
63         * cli/cli-style.c: New file.
64         * cli-out.h (class cli_ui_out) <do_field_string>: Add style
65         parameter.
66         * cli-out.c (cli_ui_out::do_table_header)
67         (cli_ui_out::do_field_int, cli_ui_out::do_field_skip): Update.
68         (cli_ui_out::do_field_string): Add style parameter.  Style the
69         output.
70         * breakpoint.c (print_breakpoint_location): Style output.
71         (update_static_tracepoint): Likewise.
72         * Makefile.in (SUBDIR_CLI_SRCS): Add cli-style.c.
73         (HFILES_NO_SRCDIR): Add cli-style.h.
74
75 2018-12-28  Tom Tromey  <tom@tromey.com>
76
77         * unittests/style-selftests.c: New file.
78         * ui-style.c: New file.
79         * ui-style.h: New file.
80         * ui-file.h: Include ui-style.h.
81         * Makefile.in (COMMON_SFILES): Add ui-style.c.
82         (HFILES_NO_SRCDIR): Add ui-style.h.
83         (SUBDIR_UNITTESTS_SRCS): Add style-selftests.c.
84
85 2018-12-28  Tom Tromey  <tom@tromey.com>
86
87         * command.h (add_setshow_enum_cmd): Add "context" argument.
88         * cli/cli-decode.c (add_setshow_enum_cmd): Add "context"
89         argument.  Call set_cmd_context.
90
91 2018-12-28  Tom Tromey  <tom@tromey.com>
92
93         * utils.c (filter_initialized): New global.
94         (wrap_buffer): Now a std::string.
95         (wrap_pointer): Remove.
96         (flush_wrap_buffer): New function.
97         (filtered_printing_initialized, set_width, wrap_here)
98         (fputs_maybe_filtered): Update.
99
100 2018-12-28  Eli Zaretskii  <eliz@gnu.org>
101
102         * coffread.c (coff_symtab_read): Don't record in minsyms symbols
103         that are unresolved.  This avoids triggering an internal error
104         when stepping outside of 'main' in MinGW programs.
105
106 2018-12-27  Tom Tromey  <tom@tromey.com>
107
108         * python/py-utils.c (gdbpy_handle_exception): Translate
109         PyExc_KeyboardInterrupt to quit.
110
111 2018-12-27  Tom Tromey  <tom@tromey.com>
112
113         * python/python-internal.h (gdbpy_print_stack_or_quit): Declare.
114         * python/py-unwind.c (pyuw_sniffer): Use
115         gdbpy_print_stack_or_quit.
116         * python/py-framefilter.c (throw_quit_or_print_exception):
117         Remove.
118         (gdbpy_apply_frame_filter): Use gdbpy_print_stack_or_quit.
119         * python/python.c (gdbpy_print_stack_or_quit): New function.
120
121 2018-12-27  Tom Tromey  <tom@tromey.com>
122
123         * python/py-value.c (convert_value_from_python): Use
124         gdbpy_convert_exception.
125         * python/py-param.c (parmpy_init): Use gdbpy_convert_exception.
126         * python/py-cmd.c (cmdpy_init): Use gdbpy_convert_exception.
127         * python/py-breakpoint.c (bppy_init): Use
128         gdbpy_convert_exception.
129
130 2018-12-27  Tom Tromey  <tom@tromey.com>
131
132         * configure.nat (NATDEPFILES): Use nat/ prefix.
133         * Makefile.in (CONFIG_SRC_SUBDIR): Add nat.
134         (%.o: ${srcdir}/nat/%.c): Remove rule.
135         (INIT_FILES): Do not filter out NATDEPFILES.
136
137 2018-12-27  Tom Tromey  <tom@tromey.com>
138
139         * Makefile.in (INIT_FILES): Redefine.
140         (stamp-init): Remove sed, tr invocations.  Use for loop.  Don't
141         set LANG or LC_ALL.
142
143 2018-12-27  Tom Tromey  <tom@tromey.com>
144
145         * Makefile.in (stamp-init): Remove gdbtypes special case.
146
147 2018-12-27  John Baldwin  <jhb@FreeBSD.org>
148
149         * config/i386/nm-fbsd.h: Remove file.
150         * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-fbsd.h.
151         * configure.nat: Remove NAT_FILE for FreeBSD/i386.
152
153 2018-12-27  Tom Tromey  <tom@tromey.com>
154
155         * minsyms.h (class minimal_symbol_reader): Use
156         DISABLE_COPY_AND_ASSIGN.
157
158 2018-12-27  Tom Tromey  <tom@tromey.com>
159
160         * python/python.c (python_interactive_command): Use std::string.
161         (gdbpy_parameter): Likewise.
162         * python/py-utils.c (unicode_to_encoded_string): Update comment.
163         * python/py-symtab.c (salpy_str): Use PyString_FromFormat.
164         * python/py-record-btrace.c (recpy_bt_insn_data): Use
165         byte_vector.
166         * python/py-objfile.c (objfpy_get_build_id): Use
167         unique_xmalloc_ptr.
168         * python/py-inferior.c (infpy_read_memory): Use
169         unique_xmalloc_ptr.
170         * python/py-cmd.c (gdbpy_parse_command_name): Use std::string.
171
172 2018-12-26  Simon Marchi  <simon.marchi@polymtl.ca>
173
174         * target.c (target_terminal::restore_inferior): Remove struct keyword.
175
176 2018-12-26  Simon Marchi  <simon.marchi@ericsson.com>
177
178         * build-id.c (build_id_to_debug_bfd): Enhance debug output.
179         * symfile.c (separate_debug_file_exists): Likewise.
180
181 2018-12-24  Andrew Burgess  <andrew.burgess@embecosm.com>
182
183         * c-exp.y (field_name): Allow DOUBLE_KEYWORD, INT_KEYWORD, LONG,
184         SHORT, SIGNED_KEYWORD, and UNSIGNED tokens to act as a field
185         names.
186         (typename_stoken): New function.
187
188 2018-12-24  Andrew Burgess  <andrew.burgess@embecosm.com>
189
190         * c-exp.y (field_name): New %token, and new rule.
191         (exp): Replace uses of 'name' with 'field_name' where appropriate.
192
193 2018-12-24  Andrew Burgess  <andrew.burgess@embecosm.com>
194
195         PR gdb/13368
196         * c-exp.y (typebase): Extend the comment.
197         (ident_tokens): Likewise.
198
199 2018-12-18  Tom Tromey  <tom@tromey.com>
200
201         * dwarf2read.c (dwarf2_find_containing_comp_unit): Don't take
202         address of sect_off.
203
204 2018-12-23  Joel Brobecker  <brobecker@adacore.com>
205
206         GDB 8.2.1 released.
207
208 2018-12-22  Andrew Burgess  <andrew.burgess@embecosm.com>
209
210         * riscv-tdep.c (riscv_call_arg_struct): Don't adjust size before
211         assigning locations.
212         (riscv_return_value): Take more care not to read/write outside of
213         argument buffer.  Cast return value between the declared type and
214         the abi type.
215
216 2018-12-22  Andrew Burgess  <andrew.burgess@embecosm.com>
217
218         * riscv-tdep.c (riscv_register_reggroup_p): Save and restore fcsr,
219         fflags, and frm registers.
220
221 2018-12-22  Andrew Burgess  <andrew.burgess@embecosm.com>
222
223         * riscv-tdep.c (riscv_dwarf_reg_to_regnum): New function.
224         (riscv_gdbarch_init): Register new function with gdbarch.
225         * riscv-tdep.h: New enum to define RISC-V DWARF register numbers.
226
227 2018-12-21  Simon Marchi  <simon.marchi@ericsson.com>
228
229         * minsyms.c (mst_str): New.
230         (minimal_symbol_reader::record_full): Add debug output.
231
232 2018-12-21  John Baldwin  <jhb@FreeBSD.org>
233
234         * fbsd-nat.c (fbsd_handle_debug_trap): Require pl.pl_flags to
235         equal PL_FLAG_SI.
236         (fbsd_nat_target::stopped_by_sw_breakpoint): Likewise.
237
238 2018-12-21  Paul Marechal  <paul.marechal@ericsson.com>
239
240         PR gdb/23974
241         * target.c (target_read_stralloc): Check for empty vector.
242
243 2018-12-21  Дилян Палаузов  <dilyan.palauzov@aegee.org>
244
245         * top.c (print_gdb_configuration): Print "--without-python"
246         if GDB was configured without Python.
247
248 2018-12-21  Andrew Burgess  <andrew.burgess@embecosm.com>
249
250         * riscv-tdep.c (riscv_scan_prologue): Use plongest to format
251         a signed offset as a string.
252
253 2018-12-21  Dave Murphy  <davem@devkitpro.org>
254
255         * dtrace-probe.c (dtrace_static_probe_ops): Explicit zero
256         initialise.
257         * probe.c (any_static_probe_ops): Ditto.
258         * record-btrace.c (record_btrace_thread_observer_token): Ditto.
259         * stap-probe.c (stap_static_probe_ops): Ditto.
260         * tui/tui-hooks.c (tui_observers_token): Ditto.
261         * unittests/observable-selftests.c (token1, token2, token3): Ditto.
262
263 2018-12-19  Andrew Burgess  <andrew.burgess@embecosm.com>
264
265         * gdb/dummy-frame.c (default_dummy_id): Defined new function.
266         * gdb/dummy-frame.h (default_dummy_id): Declare new function.
267         * gdb/frame-unwind.c (default_unwind_pc): Define new function.
268         (default_unwind_sp): Define new function.
269         * gdb/frame-unwind.h (default_unwind_pc): Declare new function.
270         (default_unwind_sp): Declare new function.
271         * gdb/frame.c (frame_unwind_pc): Assume gdbarch_unwind_pc is
272         available.
273         (get_frame_sp): Assume that gdbarch_unwind_sp is available.
274         * gdb/gdbarch.c: Regenerate.
275         * gdb/gdbarch.h: Regenerate.
276         * gdb/gdbarch.sh: Update definition of dummy_id, unwind_pc, and
277         unwind_sp.  Add additional header files to be included in
278         generated file.
279
280 2018-12-19  Dimitar Dimitrov  <dimitar@dinux.eu>
281
282         * nat/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Remove
283         sp clobbers.
284
285 2018-12-17  Andrew Burgess  <andrew.burgess@embecosm.com>
286
287         * dwarf2read.c (struct dwarf2_cu): Convert the fields 'mark',
288         'has_loclist', 'checked_producer', 'producer_is_gxx_lt_4_6',
289         'producer_is_gcc_lt_4_3', 'producer_is_icc_lt_14',
290         'processing_has_namespace_info' from unsigned int to bool.  Update
291         comments.
292         (producer_is_icc_lt_14): Update return type.
293         (producer_is_gcc_lt_4_3): Likewise.
294         (producer_is_gxx_lt_4_6): Likewise.
295         (process_die): Write true instead of 1 into predicate fields.
296         (dwarf2_start_symtab): Likewise.
297         (var_decode_location): Likewise.
298         (dwarf2_mark_helper): Likewise.
299         (dwarf2_mark): Likewise.
300         (dwarf2_clear_marks): Write false instead of 0 into predicate
301         field.
302         (dwarf2_cu::dwarf2_cu): Initialise predicate fields to false, not
303         0.
304
305 2018-12-17  Szabolcs Nagy  <szabolcs.nagy@arm.com>
306
307         * nat/aarch64-sve-linux-ptrace.h: Include signal.h instead of
308         asm/sigcontext.h.
309
310 2018-12-17  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
311
312         * nat/linux-ptrace.c (kill_child): Fix ARI warning by removing
313         warning trailing new line.
314
315 2018-12-16  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
316
317         * nat/linux-ptrace.c (kill_child): New function.
318         (linux_ptrace_test_ret_to_nx): Use kill_child instead of local code.
319         Add a call to kill_child in case of early return after fork.
320         (linux_check_ptrace_features): Use kill_child instead of local code.
321         (linux_test_for_tracefork): Likewise.
322
323 2018-12-14  Tom Tromey  <tom@tromey.com>
324
325         * Makefile.in: Remove "alloca" comment.
326         (INFOFILES): Remove.
327         (local-maintainer-clean): Don't use INFOFILES.
328
329 2018-12-13  John Baldwin  <jhb@FreeBSD.org>
330
331         * syscalls/update-freebsd.sh: New file.
332         * syscalls/freebsd.xml: Regenerate.
333
334 2018-12-13  John Baldwin  <jhb@FreeBSD.org>
335
336         * NEWS: Add entry documenting system call aliases.
337         * break-catch-syscall.c (catch_syscall_split_args): Pass 'result'
338         to get_syscalls_by_name.
339         * gdbarch.sh (UNKNOWN_SYSCALL): Remove.
340         * gdbarch.h: Regenerate.
341         * syscalls/gdb-syscalls.dtd (syscall): Add alias attribute.
342         * xml-syscall.c [!HAVE_LIBEXPAT] (get_syscalls_by_name): Rename
343         from get_syscall_by_name.  Now accepts a pointer to a vector of
344         integers and returns a bool.
345         [HAVE_LIBEXPAT] (struct syscall_desc): Add alias member.
346         (syscall_create_syscall_desc): Add alias parameter and pass it to
347         syscall_desc constructor.
348         (syscall_start_syscall): Handle alias attribute.
349         (syscall_attr): Add alias attribute.
350         (xml_get_syscalls_by_name): Rename from xml_get_syscall_number.
351         Now accepts a pointer to a vector of integers and returns a
352         bool.  Add syscalls whose alias or name matches the requested
353         name.
354         (get_syscalls_by_name): Rename from get_syscall_by_name.  Now
355         accepts a pointer to a vector of integers and returns a bool.
356         * xml-syscall.h (get_syscalls_by_name): Likewise.
357
358 2018-12-13  John Baldwin  <jhb@FreeBSD.org>
359
360         * break-catch-syscall.c (catch_syscall_split_args): Pass 'result'
361         to get_syscalls_by_group.
362         * xml-syscall.c [!HAVE_LIBEXPAT] (get_syscalls_by_group): Return
363         false.
364         [HAVE_LIBEXPAT] (xml_list_syscalls_by_group): Append syscall
365         numbers to an existing vector of integers and return a bool.
366         (get_syscalls_by_group): Accept pointer to vector of integers
367         and change return type to bool.
368         * xml-syscall.h (get_syscalls_by_group): Likewise.
369
370 2018-12-13  Jim Wilson  <jimw@sifive.com>
371
372         * riscv-tdep.c (riscv_print_one_register_info): For MSTATUS, add
373         comment for SD field, and correct xlen calculation.  For MISA, add
374         comment for MXL field, add call to register_size, and correct base
375         calculation.
376
377 2018-12-13  Stafford Horne  <shorne@gmail.com>
378
379         * NEWS(New targets): Add or1k*-*-linux*.
380
381 2018-12-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
382
383         * nat/linux-osdata.c (linux_xfer_osdata_info_os_types): Forward
384         declare on one line to fix ARI warning.
385
386 2018-12-12  Andrew Burgess  <andrew.burgess@embecosm.com>
387
388         * infrun.c (infcall_suspend_state::infcall_suspend_state): New.
389         (infcall_suspend_state::registers): New.
390         (infcall_suspend_state::restore): New.
391         (infcall_suspend_state::thread_suspend): Rename to...
392         (infcall_suspend_state::m_thread_suspend): ...this.
393         (infcall_suspend_state::registers): Rename to...
394         (infcall_suspend_state::m_registers): ...this.
395         (infcall_suspend_state::siginfo_gdbarch): Rename to...
396         (infcall_suspend_state::m_siginfo_gdbarch): ...this.
397         (infcall_suspend_state::siginfo_data): Rename to...
398         (infcall_suspend_state::m_siginfo_data): ...this.
399         (save_infcall_suspend_state): Rewrite to use infcall_suspend_state
400         constructor.
401         (restore_infcall_suspend_state): Rewrite to use
402         infcall_suspend_state::restore method.
403         (get_infcall_suspend_state_regcache): Use
404         infcall_suspend_state::registers method.
405
406 2018-12-12  Andrew Burgess  <andrew.burgess@embecosm.com>
407
408         * riscv-tdep.c (riscv_call_arg_scalar_float): Unnamed (variadic)
409         arguments are passed in integer registers.
410         (riscv_call_arg_complex_float): Likewise.
411
412 2018-12-11  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
413
414         * nat/linux-osdata.c (common_getter): New function.
415         (struct osdata_type): Change getter to take_snapshot.
416         Add LONGEST len_avail and struct buffer buffer.
417         Change all elements in the initializer.
418         Add an element for the list of types.
419         (linux_xfer_osdata_info_os_types): New function.
420         (linux_common_xfer_osdata): Use common_getter for the list of types.
421         Replace getter call by common_getter.
422         (linux_xfer_osdata_cpus): Remove args READBUF, OFFSET, LEN.
423         Add arg BUFFER.  Only keep the code that adds data in BUFFER.
424         (linux_xfer_osdata_fds): Likewise.
425         (linux_xfer_osdata_modules): Likewise.
426         (linux_xfer_osdata_msg): Likewise.
427         (linux_xfer_osdata_processes): Likewise.
428         (linux_xfer_osdata_processgroups): Likewise.
429         (linux_xfer_osdata_sem): Likewise.
430         (linux_xfer_osdata_shm): Likewise.
431         (linux_xfer_osdata_isockets): Likewise.
432         (linux_xfer_osdata_threads): Likewise.
433
434 2018-12-11  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
435
436         * nat/linux-osdata.c: Removed various trailing spaces.
437
438 2018-12-10  Andrew Burgess  <andrew.burgess@embecosm.com>
439
440         * riscv-tdep.c (riscv_register_name): Fix ARI warning by removing
441         leading whitespace before #include line.
442
443 2018-12-08  Simon Marchi  <simon.marchi@ericsson.com>
444             Дилян Палаузов  <dilyan.palauzov@aegee.org>
445
446         PR gdb/23950
447         * configure.ac: Search for tgetent in libtinfow.
448         * configure: Re-generate.
449
450 2018-12-08  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
451
452         * linux-thread-db.c (struct thread_db_info): Add td_ta_delete_p.
453         (thread_db_err_str): Forward declare.
454         (delete_thread_db_info): Call td_ta_delete_p if available.
455         (try_thread_db_load_1): Acquire td_ta_delete address.
456         * nat/gdb_thread_db.h (td_ta_delete_ftype): Declare.
457
458 2018-12-08  Pedro Alves  <palves@redhat.com>
459
460         * source.c (forward_search_command): Rename to ...
461         (search_command_helper): ... this.  Add 'forward' parameter.
462         Tweak to use a gdb::def_vector<char> instead of a xrealloc'ed
463         buffer.  Handle backward searches too.
464         (forward_search_command, reverse_search_command): Reimplement by
465         calling search_command_helper.
466
467 2018-12-07  Andrew Burgess  <andrew.burgess@embecosm.com>
468
469         * .dir-locals.el: Copy most of the settings from c-mode over to
470         c++-mode.
471
472 2018-12-08  Stafford Horne  <shorne@gmail.com>
473
474         * Makefile.in (ALL_TARGET_OBS): Add or1k-linux-tdep.o.
475         * configure.tgt: Add or1k*-*-linux*.
476         * or1k-linux-tdep.c: New file.
477         * or1k-tdep.c (or1k_gdbarch_init): Call gdbarch_init_osabi.
478
479 2018-12-07  Pedro Alves  <palves@redhat.com>
480
481         * dwarf2read.c (get_gdb_index_contents_from_section): Use
482         gdb::make_array_view.
483
484 2018-12-05  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
485
486         * language.c (_initialize_language): Fix leak by assigning
487         a static string to language.  Same for range and case_sensitive,
488         even if no leak is detected for these variables.
489
490 2018-12-05  John Baldwin  <jhb@FreeBSD.org>
491
492         * configure: Re-generate.
493         * configure.ac: Use separate sed expressions to escape variables
494         in auto-load directories.
495
496 2018-12-05  Andrew Burgess  <andrew.burgess@embecosm.com>
497
498         * riscv-tdep.c (riscv_features_from_gdbarch_info): New function.
499         (riscv_find_default_target_description): Use new function to
500         extract feature from gdbarch_info.
501         (riscv_gdbarch_init): Add error checks for xlen and flen between
502         target description and bfd headers.  Be smarter about when we
503         think the hardware floating point abi should be used.
504
505 2018-12-05  Alan Hayward  <alan.hayward@arm.com>
506
507         * nat/aarch64-linux-hw-point.c
508         (aarch64_linux_any_set_debug_regs_state): New function.
509         * nat/aarch64-linux-hw-point.h
510         (aarch64_linux_any_set_debug_regs_state): New declaration.
511         * nat/aarch64-linux.c (aarch64_linux_new_thread): Check if any
512         BPs or WPs are set.
513
514 2018-11-30  John Baldwin  <jhb@FreeBSD.org>
515
516         * common/filestuff.c [HAVE_KINFO_GETFILE]: Include headers.
517         (fdwalk) [HAVE_KINFO_GETFILE]: Use kinfo_getfile.
518
519 2018-11-30  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
520             Simon Marchi  <simon.marchi@ericsson.com>
521
522         * linespec.c (symtab_vector_up): Remove.
523         (symtabs_from_filename): Change return type to std::vector.
524         (collect_symtabs_from_filename): Likewise.
525         (create_sals_line_offset): Assign return value of
526         collect_symtabs_from_filename to *ls->file_symtabs.
527         (convert_explicit_location_to_linespec): Remove call to release.
528         (parse_linespec): Likewise.
529         (symtab_collector) <symtab_collector>: Remove initialization of
530         m_symtabs.
531         <release_symtabs>: Change return type to std::vector<symtab *>.
532         <operator ()>: Adjust.
533
534 2018-11-30  John Baldwin  <jhb@FreeBSD.org>
535
536         * fbsd-nat.c [__FreeBSD_version >= 700009] (USE_SIGINFO): Macro
537         defined.
538         (union sigval32, struct siginfo32, fbsd_siginfo_size)
539         (fbsd_convert_siginfo): Make conditional on USE_SIGINFO instead
540         of KERN_PROC_AUXV and PT_LWPINFO.
541         (fbsd_nat_target::xfer_partial): Define method unconditionally.
542         Make TARGET_OBJECT_SIGNAL_INFO conditional on USE_SIGINFO.
543         Make TARGET_OBJECT_AUXV conditional on KERN_PROC_AUXV.
544         Make TARGET_OBJECT_FREEBSD_VMMAP and
545         TARGET_OBJECT_FREEBSD_PS_STRINGS conditional on KERN_PROC_VMMAP
546         and KERN_PROC_PS_STRINGS.
547         * fbsd-nat.h: Include <sys/proc.h>.
548         (fbsd_nat_target::xfer_partial): Declare method unconditionally.
549
550 2018-11-30  Andrew Burgess  <andrew.burgess@embecosm.com>
551
552         * riscv-linux-nat.c: Add 'inferior.h' and 'target-descriptions.h'
553         header files.
554         (riscv_linux_nat_target::read_description): New method.
555
556 2018-11-30  Andrew Burgess  <andrew.burgess@embecosm.com>
557
558         * arch/riscv.h (riscv_gdbarch_features::hash): New method.
559         * arch/riscv.c (struct riscv_gdbarch_features_hasher): New.
560         (riscv_tdesc_cache): New global.
561         (riscv_create_target_description): Look in the cache before
562         creating a new target description.
563
564 2018-11-30  Andrew Burgess  <andrew.burgess@embecosm.com>
565
566         * arch/riscv.h (riscv_gdb_features::operator==): New.
567         (riscv_gdb_features::operator!=): New.
568         * riscv-tdep.c (riscv_gdbarch_init): Make use of the inequality
569         operator.
570
571 2018-11-30  Andrew Burgess  <andrew.burgess@embecosm.com>
572
573         * arch/riscv.h (riscv_create_target_description): Make return type
574         const.
575         * arch/riscv.c (riscv_create_target_description): Likewise.
576         * riscv-tdep.c (riscv_find_default_target_description): Likewise.
577
578 2018-11-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
579             Keith Seitz  <keiths@redhat.com>
580             Tom Tromey  <tom@tromey.com>
581             Sergio Durigan Junior  <sergiodj@redhat.com>
582
583         https://bugzilla.redhat.com/show_bug.cgi?id=1613614
584         * dwarf2read.c (dwarf2_find_containing_comp_unit): Add
585         'mid_cu->length' to '*cu_off' when checking if 'sect_off' is
586         inside the CU.
587
588 2018-11-30  Pedro Alves  <palves@redhat.com>
589
590         * aix-thread.c (aix_thread_target) <aix_thread_target>: Delete.
591         <stratum>: New override.
592         * bfd-target.c (aix_thread_target) <aix_thread_target>: Delete.
593         <stratum>: New override.
594         * bsd-uthread.c (bsd_uthread_target) <bsd_uthread_target>: Delete.
595         <stratum>: New override.
596         * exec.c (exec_target) <exec_target>: Delete.
597         <stratum>: New override.
598         * gdbarch-selftests.c (register_to_value_test): Adjust to use the
599         stratum method instead of the to_stratum field.
600         * linux-thread-db.c (thread_db_target) <thread_db_target>: Delete.
601         <stratum>: New override.
602         (thread_db_target::thread_db_target): Delete.
603         * make-target-delegates (print_class): Don't print a ctor
604         declaration.  Print a stratum method override declaration.
605         * process-stratum-target.h (process_stratum_target)
606         <process_stratum_target>: Delete.
607         <stratum>: New override.
608         * ravenscar-thread.c (ravenscar_thread_target)
609         <ravenscar_thread_target>: Delete.
610         <stratum>: New override.
611         * record-btrace.c (record_btrace_target)
612         <record_btrace_target>: Delete.
613         <stratum>: New override.
614         * record-full.c (record_full_base_target)
615         <record_full_base_target>: Delete.
616         <stratum>: New override.
617         * record.c (record_disconnect, record_detach)
618         (record_mourn_inferior, record_kill): Adjust to use the stratum
619         method instead of the to_stratum field.
620         * regcache.c (cooked_read_test, cooked_write_test): Likewise.
621         * sol-thread.c (sol_thread_target)
622         <sol_thread_target>: Delete.
623         <stratum>: New override.
624         * spu-multiarch.c (spu_multiarch_target)
625         <spu_multiarch_target>: Delete.
626         <stratum>: New override.
627         * target-delegates.c: Regenerate.
628         * target.c (target_stack::push, target_stack::unpush)
629         (pop_all_targets_above, pop_all_targets_at_and_above)
630         (info_target_command, target_require_runnable)
631         (target_stack::find_beneath): Adjust to use the stratum method
632         instead of the to_stratum field.
633         (dummy_target::dummy_target): Delete.
634         (dummy_target::stratum): New.
635         (debug_target::debug_target): Delete.
636         (debug_target::stratum): New.
637         (maintenance_print_target_stack): Adjust to use the stratum method
638         instead of the to_stratum field.
639         * target.h (struct target_ops) <stratum>: New method.
640         <to_stratum>: Delete.
641         <is_pushed>: Adjust to use the stratum method
642         instead of the to_stratum field.
643
644 2018-11-30  Pedro Alves  <palves@redhat.com>
645
646         * corelow.c (core_target) <has_all_memory, has_execution>: New
647         overrides.
648         * inf-child.c (inf_child_target::has_all_memory)
649         (inf_child_target::has_memory, inf_child_target::has_stack)
650         (inf_child_target::has_registers)
651         (inf_child_target::has_execution): Delete.
652         * inf-child.h (inf_child_target) <has_all_memory, has_memory,
653         has_stack, has_registers, has_execution>: Delete.
654         * process-stratum-target.c
655         (process_stratum_target::has_all_memory)
656         (process_stratum_target::has_memory)
657         (process_stratum_target::has_stack)
658         (process_stratum_target::has_registers)
659         (process_stratum_target::has_execution): New.
660         * process-stratum-target.h (process_stratum_target)
661         <has_all_memory, has_memory, has_stack, has_registers,
662         has_execution>: New method overrides.
663         * ravenscar-thread.c (ravenscar_thread_target) <has_all_memory,
664         has_memory, has_stack, has_registers, has_execution>: Delete.
665         * remote-sim.c (gdbsim_target) <has_stack, has_registers,
666         has_execution>: Delete.
667         * remote.c (remote_target) <has_all_memory, has_memory, has_stack,
668         has_registers, has_execution>: Delete.
669         * target.c (default_child_has_all_memory)
670         (default_child_has_memory, default_child_has_stack)
671         (default_child_has_registers, default_child_has_execution):
672         Delete.
673         * target.h (default_child_has_all_memory)
674         (default_child_has_memory, default_child_has_stack)
675         (default_child_has_registers, default_child_has_execution):
676         Delete.
677         * tracefile.h (tracefile_target) <has_execution>: New override.
678
679 2018-11-30  Pedro Alves  <palves@redhat.com>
680
681         * Makefile.in (COMMON_SFILES): Add process-stratum-target.c.
682         * bsd-kvm.c: Include "process-stratum-target.h".
683         (bsd_kvm_target): Now inherits from process_stratum_target.
684         (bsd_kvm_target::bsd_kvm_target): Default it.
685         * corelow.c: Include "process-stratum-target.h".
686         (core_target): Now inherits from process_stratum_target.
687         (core_target::core_target): Don't set to_stratum here.
688         * inf-child.c (inf_child_target::inf_child_target): Delete.
689         * inf-child.h: Include "process-stratum-target.h".
690         (inf_child_target): Inherit from process_stratum_target.
691         (inf_child_target) <inf_child_target>: Default it.
692         <can_async_p, supports_non_stop, supports_disable_randomization>:
693         Delete overrides.
694         * process-stratum-target.c: New file.
695         * process-stratum-target.h: New file.
696         * remote-sim.c: Include "process-stratum-target.h".
697         (gdbsim_target): Inherit from process_stratum_target.
698         <gdbsim_target>: Default it.
699         * remote.c: Include "process-stratum-target.h".
700         (remote_target): Inherit from process_stratum_target.
701         <remote_target>: Default it.
702         * target.c (default_thread_address_space)
703         (default_thread_architecture): Delete.
704         * target.h (target_ops) <thread_architecture>: Now returns NULL by
705         default.
706         <thread_address_space>: Ditto.
707         * test-target.h: Include "process-stratum-target.h" instead of
708         "target.h".
709         (test_target_ops): Inherit from process_stratum_target.
710         <test_target_ops>: Default it.
711         * tracefile.c (tracefile_target::tracefile_target): Delete.
712         * tracefile.h: Include "process-stratum-target.h".
713         (tracefile_target): Inherit from process_stratum_target.
714         <tracefile_target>: Default it.
715         * target-delegates.c: Regenerate.
716
717 2018-11-30  Pedro Alves  <palves@redhat.com>
718
719         * Makefile.in (COMMON_SFILES): Add test-target.c.
720         * gdbarch-selftests.c: Include "test-target.h".
721         * regcache.c: Include "test-target.h".
722         * target.c (test_target_info, test_target_ops::info): Move to ...
723         * test-target.c: ... this new file.
724         * target.h (test_target_ops): Move to ...
725         * test-target.h: ... this new file.
726
727 2018-11-29  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
728
729         * source.c (forward_search_command): Fix leak by using
730         xrealloc even for the first allocation in the loop, as buf
731         is static.
732
733 2018-11-29  Rajendra SY  <rajendra.sy@gmail.com>
734
735         PR gdb/23093
736         * gdb/fbsd-tdep.c (fbsd_gdb_signal_from_target)
737         (fbsd_gdb_signal_to_target): New.
738         (fbsd_init_abi): Install gdbarch "signal_from_target" and
739         "signal_to_target" methods.
740
741 2018-11-29  Tom Tromey  <tom@tromey.com>
742
743         * valarith.c (value_x_unop): Don't set argvec[3].
744
745 2018-11-26  Simon Marchi  <simon.marchi@ericsson.com>
746
747         PR gdb/23917
748         * sparc-linux-nat.c (sparc_linux_nat_target): Remove extraneous
749         semicolon.
750
751 2018-11-26  Pedro Alves  <palves@redhat.com>
752
753         * procfs.c (procfs_notice_thread): Replace uses of
754         in_thread_list/is_exited with find_thread_ptid/THREAD_EXITED.
755         * sol-thread.c (sol_thread_target::wait)
756         (sol_update_thread_list_callback): Likewise.
757
758 2018-11-25  Tom Tromey  <tom@tromey.com>
759
760         * ui-out.c (ui_out::field_fmt): Remove comment.
761         * tui/tui-out.c (tui_ui_out::do_field_fmt): Remove comment.
762         * mi/mi-out.c (mi_ui_out::do_field_fmt): Remove comment.
763
764 2018-11-24  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
765
766         * source.c (open_source_file): Leak fixed in '8e6a5953e1d Fix 4K
767         leak in open_source_file' has been partially undone by '2179fbc36d23
768         Return scoped_fd from open_source_file'. Re-add the transfer of
769         current s->fullname to the unique_xmalloc_ptr fullname given
770         to find_and_open_source.
771
772 2018-11-23  Pedro Alves  <palves@redhat.com>
773
774         * gdbthread.h (enum thread_state): Move comments here.
775         (is_running, is_stopped, is_exited): Remove declarations.
776
777 2018-11-22  Pedro Alves  <palves@redhat.com>
778
779         * Makefile.in (COMMON_SFILES): Add thread-iter.c.
780         * breakpoint.c (breakpoints_should_be_inserted_now): Replace
781         ALL_NON_EXITED_THREADS with all_non_exited_threads.
782         (print_one_breakpoint_location): Replace ALL_INFERIORS with
783         all_inferiors.
784         * bsd-kvm.c: Include inferior.h.
785         * btrace.c (btrace_free_objfile): Replace ALL_NON_EXITED_THREADS
786         with all_non_exited_threads.
787         * common/filtered-iterator.h: New.
788         * common/safe-iterator.h: New.
789         * corelow.c (core_target_open): Don't call init_thread_list here.
790         * darwin-nat.c (thread_info_from_private_thread_info): Replace
791         ALL_THREADS with all_threads.
792         * fbsd-nat.c (fbsd_nat_target::resume): Replace
793         ALL_NON_EXITED_THREADS with inf->non_exited_threads.
794         * fbsd-tdep.c (fbsd_make_corefile_notes): Replace
795         ALL_NON_EXITED_THREADS with inf->non_exited_threads.
796         * fork-child.c (postfork_hook): Don't call init_thread_list here.
797         * gdbarch-selftests.c (register_to_value_test): Adjust.
798         * gdbthread.h: Don't include "inferior.h" here.
799         (struct inferior): Forward declare.
800         (enum step_over_calls_kind): Moved here from inferior.h.
801         (thread_info::deletable): Definition moved to thread.c.
802         (find_thread_ptid (inferior *, ptid_t)): Declare.
803         (ALL_THREADS, ALL_THREADS_BY_INFERIOR, ALL_THREADS_SAFE): Delete.
804         Include "thread-iter.h".
805         (all_threads, all_non_exited_threads, all_threads_safe): New.
806         (any_thread_p): Declare.
807         (thread_list): Delete.
808         * infcmd.c (signal_command): Replace ALL_NON_EXITED_THREADS with
809         all_non_exited_threads.
810         (proceed_after_attach_callback): Delete.
811         (proceed_after_attach): Take an inferior pointer instead of an
812         integer PID.  Adjust to use range-for.
813         (attach_post_wait): Pass down inferior pointer instead of pid.
814         Use range-for instead of ALL_NON_EXITED_THREADS.
815         (detach_command): Remove init_thread_list call.
816         * inferior-iter.h: New.
817         * inferior.c (struct delete_thread_of_inferior_arg): Delete.
818         (delete_thread_of_inferior): Delete.
819         (delete_inferior, exit_inferior_1): Use range-for with
820         inf->threads_safe() instead of iterate_over_threads.
821         (inferior_appeared): Call init_thread_list here.
822         (discard_all_inferiors): Use all_non_exited_inferiors.
823         (find_inferior_id, find_inferior_pid): Use all_inferiors.
824         (iterate_over_inferiors): Use all_inferiors_safe.
825         (have_inferiors, number_of_live_inferiors): Use
826         all_non_exited_inferiors.
827         (number_of_inferiors): Use all_inferiors and std::distance.
828         (print_inferior): Use all_inferiors.
829         * inferior.h: Include gdbthread.h.
830         (enum step_over_calls_kind): Moved to gdbthread.h.
831         (struct inferior) <thread_list>: New field.
832         <threads, non_exited_threads, threads_safe>: New methods.
833         (ALL_INFERIORS): Delete.
834         Include "inferior-iter.h".
835         (ALL_NON_EXITED_INFERIORS): Delete.
836         (all_inferiors_safe, all_inferiors, all_non_exited_inferiors): New
837         functions.
838         * inflow.c (child_interrupt, child_pass_ctrlc): Replace
839         ALL_NON_EXITED_THREADS with all_non_exited_threads.
840         * infrun.c (follow_exec): Use all_threads_safe.
841         (clear_proceed_status, proceed): Use all_non_exited_threads.
842         (init_wait_for_inferior): Don't clear inline frame state here.
843         (infrun_thread_stop_requested, for_each_just_stopped_thread): Use
844         all_threads instead of ALL_NON_EXITED_THREADS.
845         (random_pending_event_thread): Use all_non_exited_threads instead
846         of ALL_NON_EXITED_THREADS.  Use a lambda for repeated code.
847         (clean_up_just_stopped_threads_fsms): Use all_non_exited_threads
848         instead of ALL_NON_EXITED_THREADS.
849         (handle_no_resumed): Use all_non_exited_threads instead of
850         ALL_NON_EXITED_THREADS.  Use all_inferiors instead of
851         ALL_INFERIORS.
852         (restart_threads, switch_back_to_stepped_thread): Use
853         all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
854         * linux-nat.c (check_zombie_leaders): Replace ALL_INFERIORS with
855         all_inferiors.
856         (kill_unfollowed_fork_children): Use inf->non_exited_threads
857         instead of ALL_NON_EXITED_THREADS.
858         * linux-tdep.c (linux_make_corefile_notes): Use
859         inf->non_exited_threads instead of ALL_NON_EXITED_THREADS.
860         * linux-thread-db.c (thread_db_target::update_thread_list):
861         Replace ALL_INFERIORS with all_inferiors.
862         (thread_db_target::thread_handle_to_thread_info): Use
863         inf->non_exited_threads instead of ALL_NON_EXITED_THREADS.
864         * mi/mi-interp.c (multiple_inferiors_p): New.
865         (mi_on_resume_1): Simplify using all_non_exited_threads and
866         multiple_inferiors_p.
867         * mi/mi-main.c (mi_cmd_thread_list_ids): Use all_non_exited_threads
868         instead of ALL_NON_EXITED_THREADS.
869         * nto-procfs.c (nto_procfs_target::open): Don't call
870         init_thread_list here.
871         * record-btrace.c (record_btrace_target_open)
872         (record_btrace_target::stop_recording)
873         (record_btrace_target::close)
874         (record_btrace_target::record_is_replaying)
875         (record_btrace_target::resume, record_btrace_target::wait)
876         (record_btrace_target::record_stop_replaying): Use
877         all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
878         * record-full.c (record_full_wait_1): Use all_non_exited_threads
879         instead of ALL_NON_EXITED_THREADS.
880         * regcache.c (cooked_read_test): Remove reference to global
881         thread_list.
882         * remote-sim.c (gdbsim_target::create_inferior): Don't call
883         init_thread_list here.
884         * remote.c (remote_target::update_thread_list): Use
885         all_threads_safe instead of ALL_NON_EXITED_THREADS.
886         (remote_target::process_initial_stop_replies): Replace
887         ALL_INFERIORS with all_non_exited_inferiors and use
888         all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
889         (remote_target::open_1): Don't call init_thread_list here.
890         (remote_target::append_pending_thread_resumptions)
891         (remote_target::remote_resume_with_hc): Use all_non_exited_threads
892         instead of ALL_NON_EXITED_THREADS.
893         (remote_target::commit_resume)
894         (remote_target::remove_new_fork_children): Replace ALL_INFERIORS
895         with all_non_exited_inferiors and use all_non_exited_threads
896         instead of ALL_NON_EXITED_THREADS.
897         (remote_target::kill_new_fork_children): Use
898         all_non_exited_threads instead of ALL_NON_EXITED_THREADS.  Remove
899         init_thread_list and init_wait_for_inferior calls.
900         (remote_target::remote_btrace_maybe_reopen)
901         (remote_target::thread_handle_to_thread_info): Use
902         all_non_exited_threads instead of ALL_NON_EXITED_THREADS.
903         * target.c (target_terminal::restore_inferior)
904         (target_terminal_is_ours_kind): Replace ALL_INFERIORS with
905         all_non_exited_inferiors.
906         * thread-iter.c: New file.
907         * thread-iter.h: New file.
908         * thread.c: Include "inline-frame.h".
909         (thread_list): Delete.
910         (clear_thread_inferior_resources): Call clear_inline_frame_state.
911         (init_thread_list): Use all_threads_safe instead of
912         ALL_THREADS_SAFE.  Adjust to per-inferior thread lists.
913         (new_thread): Adjust to per-inferior thread lists.
914         (add_thread_silent): Pass inferior to find_thread_ptid.
915         (thread_info::deletable): New, moved from the header.
916         (delete_thread_1): Adjust to per-inferior thread lists.
917         (find_thread_global_id): Use inf->threads().
918         (find_thread_ptid): Use find_inferior_ptid and pass inferior to
919         find_thread_ptid.
920         (find_thread_ptid(inferior*, ptid_t)): New overload.
921         (iterate_over_threads): Use all_threads_safe.
922         (any_thread_p): New.
923         (thread_count): Use all_threads and std::distance.
924         (live_threads_count): Use all_non_exited_threads and
925         std::distance.
926         (valid_global_thread_id): Use all_threads.
927         (in_thread_list): Use find_thread_ptid.
928         (first_thread_of_inferior): Adjust to per-inferior thread lists.
929         (any_thread_of_inferior, any_live_thread_of_inferior): Use
930         inf->non_exited_threads().
931         (prune_threads, delete_exited_threads): Use all_threads_safe.
932         (thread_change_ptid): Pass inferior pointer to find_thread_ptid.
933         (set_resumed, set_running): Use all_non_exited_threads.
934         (is_thread_state, is_stopped, is_exited, is_running)
935         (is_executing): Delete.
936         (set_executing, set_stop_requested, finish_thread_state): Use
937         all_non_exited_threads.
938         (print_thread_info_1): Use all_inferiors and all_threads.
939         (thread_apply_all_command): Use all_non_exited_threads.
940         (thread_find_command): Use all_threads.
941         (update_threads_executing): Use all_non_exited_threads.
942         * tid-parse.c (parse_thread_id): Use inf->threads.
943         * x86-bsd-nat.c (x86bsd_dr_set): Use inf->non_exited_threads ().
944
945 2018-11-22  Pedro Alves  <palves@redhat.com>
946
947         * infrun.c (follow_exec) <set follow-exec new>: Add thread and
948         switch to it before calling into try_open_exec_file.
949
950 2018-11-22  Pedro Alves  <palves@redhat.com>
951
952         * cli/cli-interp.c (cli_on_user_selected_context_changed): Use
953         inferior_thread instead of find_thread_ptid, and only when
954         inferior_ptid is not null_ptid.
955         * inferior.c (add_inferior): Don't include target_pid_to_str
956         output when the inferior is not started.
957         * python/py-inferior.c (python_on_normal_stop): Don't use
958         find_thread_ptid.
959         (tui_on_user_selected_context_changed): Use inferior_thread
960         instead of find_thread_ptid, and only when inferior_ptid is not
961         null_ptid.
962
963 2018-11-21  Benno Fünfstück  <benno.fuenfstueck@gmail.com>
964
965         PR python/23714
966         * gdb/python/python.c (execute_gdb_command): Call
967         prevent_dont_repeat earlier to avoid affecting dont_repeat.
968
969 2018-11-21  Andrew Burgess  <andrew.burgess@embecosm.com>
970
971         * Makefile.in (ALL_TARGET_OBS): Add arch/riscv.o.
972         (HFILES_NO_SRCDIR): Add arch/riscv.h.
973         * arch/riscv.c: New file.
974         * arch/riscv.h: New file.
975         * configure.tgt: Add cpu_obs list of riscv, move riscv-tdep.o into
976         this list, and add arch/riscv.o.
977         * features/Makefile: Add riscv features.
978         * features/riscv/32bit-cpu.c: New file.
979         * features/riscv/32bit-cpu.xml: New file.
980         * features/riscv/32bit-csr.c: New file.
981         * features/riscv/32bit-csr.xml: New file.
982         * features/riscv/32bit-fpu.c: New file.
983         * features/riscv/32bit-fpu.xml: New file.
984         * features/riscv/64bit-cpu.c: New file.
985         * features/riscv/64bit-cpu.xml: New file.
986         * features/riscv/64bit-csr.c: New file.
987         * features/riscv/64bit-csr.xml: New file.
988         * features/riscv/64bit-fpu.c: New file.
989         * features/riscv/64bit-fpu.xml: New file.
990         * features/riscv/rebuild-csr-xml.sh: New file.
991         * riscv-tdep.c: Add 'arch/riscv.h' include.
992         (riscv_gdb_reg_names): Delete.
993         (csr_reggroup): New global.
994         (struct riscv_register_alias): Delete.
995         (struct riscv_register_feature): New structure.
996         (riscv_register_aliases): Delete.
997         (riscv_xreg_feature): New global.
998         (riscv_freg_feature): New global.
999         (riscv_virtual_feature): New global.
1000         (riscv_csr_feature): New global.
1001         (riscv_create_csr_aliases): New function.
1002         (riscv_read_misa_reg): Delete.
1003         (riscv_has_feature): Delete.
1004         (riscv_isa_xlen): Simplify, just return cached xlen.
1005         (riscv_isa_flen): Simplify, just return cached flen.
1006         (riscv_has_fp_abi): Update for changes in struct gdbarch_tdep.
1007         (riscv_register_name): Update to make use of tdesc_register_name.
1008         Look up xreg and freg names in the new globals riscv_xreg_feature
1009         and riscv_freg_feature.  Don't supply csr aliases here.
1010         (riscv_fpreg_q_type): Delete.
1011         (riscv_register_type): Use tdesc_register_type in almost all
1012         cases, override the returned type in a few specific cases only.
1013         (riscv_print_one_register_info): Handle errors reading registers.
1014         (riscv_register_reggroup_p): Use tdesc_register_in_reggroup_p for
1015         registers that are otherwise unknown to GDB.  Also check the
1016         csr_reggroup.
1017         (riscv_print_registers_info): Remove assert about upper register
1018         number, and use gdbarch_register_reggroup_p instead of
1019         short-cutting.
1020         (riscv_find_default_target_description): New function.
1021         (riscv_check_tdesc_feature): New function.
1022         (riscv_add_reggroups): New function.
1023         (riscv_setup_register_aliases): New function.
1024         (riscv_init_reggroups): New function.
1025         (_initialize_riscv_tdep): Add calls to setup CSR aliases, and
1026         setup register groups.  Register new riscv debug variable.
1027         * riscv-tdep.h: Add 'arch/riscv.h' include.
1028         (struct gdbarch_tdep): Remove abi union, and add
1029         riscv_gdbarch_features field.  Remove cached quad floating point
1030         type, and provide initialisation for double type field.
1031         * target-descriptions.c (maint_print_c_tdesc_cmd): Add riscv to
1032         the list of targets using the feature based target descriptions.
1033         * NEWS: Mention target description support.
1034
1035 2018-11-21  Pedro Alves  <palves@redhat.com>
1036
1037         * valops.c (find_method_list, value_find_oload_method_list)
1038         (find_overload_match, find_oload_champ): Rename parameters and
1039         locals.
1040
1041 2018-11-21  Pedro Alves  <palves@redhat.com>
1042
1043         * valops.c (find_method_list): Replace pointer and length
1044         parameters with an gdb::array_view.  Adjust.
1045         (value_find_oload_method_list): Likewise.
1046         (find_overload_match): Use gdb::array_view for methods list.
1047         Adjust to find_oload_champ interface change.
1048         (find_oload_champ): 'xm_worker_vec' parameter now a pointer/array.
1049         'num_fns' parameter now a size_t.  Eliminate 'fn_count' local.
1050
1051 2018-11-21  Pedro Alves  <palves@redhat.com>
1052
1053         * gdbtypes.c (compare_badness): Change type of parameters to const
1054         reference.  Adjust to badness_vector being a std::vector now.
1055         (rank_function): Adjust to badness_vector being a std::vector now.
1056         * gdbtypes.h (badness_vector): Now a typedef to std::vector.
1057         (LENGTH_MATCH): Delete.
1058         (compare_badness): Change type of parameters to const reference.
1059         (rank_function): Return a badness_vector by value now.
1060         (find_overload_match): Adjust to badness_vector being a
1061         std::vector now.  Remove cleanups.
1062         (find_oload_champ_namespace): 'oload_champ_bv' parameter now a
1063         badness_vector pointer.
1064         (find_oload_champ_namespace_loop): 'oload_champ_bv' parameter now
1065         a badness_vector pointer.  Adjust to badness_vector being a
1066         std::vector now.  Remove cleanups.
1067         (find_oload_champ): 'oload_champ_bv' parameter now
1068         a badness_vector pointer.  Adjust to badness_vector being a
1069         std::vector now.  Remove cleanups.
1070
1071 2018-11-21  Pedro Alves  <palves@redhat.com>
1072
1073         * cp-support.c (sym_return_val_size, sym_return_val_index)
1074         (sym_return_val): Delete.
1075         (overload_list_add_symbol): Add std::vector parameter.  Adjust to
1076         add to the vector.
1077         (make_symbol_overload_list): Adjust to return a std::vector
1078         instead of maintaining a global open coded vector.
1079         (make_symbol_overload_list_block): Add std::vector parameter.
1080         (make_symbol_overload_list_block): Rename to ...
1081         (add_symbol_overload_list_block): ... this and add std::vector
1082         parameter.
1083         (make_symbol_overload_list_namespace): Rename to ...
1084         (add_symbol_overload_list_namespace): ... this and add std::vector
1085         parameter.
1086         (make_symbol_overload_list_adl_namespace): Rename to ...
1087         (add_symbol_overload_list_adl_namespace): ... this and add
1088         std::vector parameter.
1089         (make_symbol_overload_list_adl): Delete.
1090         (add_symbol_overload_list_adl): New.
1091         (make_symbol_overload_list_using): Rename to ...
1092         (add_symbol_overload_list_using): ... this and add std::vector
1093         parameter.
1094         (make_symbol_overload_list_qualified): Rename to ...
1095         (add_symbol_overload_list_qualified): ... this and add std::vector
1096         parameter.
1097         * cp-support.h: Include "common/array-view.h" and <vector>.
1098         (make_symbol_overload_list): Change return type to std::vector.
1099         (make_symbol_overload_list_adl): Delete declaration.
1100         (add_symbol_overload_list_adl): New declaration.
1101         * valops.c (find_overload_match): Local 'oload_syms' now a
1102         std::vector.
1103         (find_oload_champ_namespace): 'oload_syms' parameter now a
1104         std::vector pointer.
1105         (find_oload_champ_namespace_loop): 'oload_syms' parameter now a
1106         std::vector pointer.  Adjust to new make_symbol_overload_list
1107         interface.
1108
1109 2018-11-21  Pedro Alves  <palves@redhat.com>
1110
1111         * common/array-view.h (array_view::splice(size_type, size_t)): New.
1112         (array_view::splice(size_type)): New.
1113         * eval.c (eval_call, evaluate_funcall): Adjust to use array_view.
1114         * extension.c (xmethod_worker::get_arg_types): Adjust to return an
1115         std::vector.
1116         (xmethod_worker::get_result_type): Adjust to use gdb::array_view.
1117         * extension.h: Include "common/array-view.h".
1118         (xmethod_worker::invoke): Adjust to use gdb::array_view.
1119         (xmethod_worker::get_arg_types): Adjust to return an std::vector.
1120         (xmethod_worker::get_result_type): Adjust to use gdb::array_view.
1121         (xmethod_worker::do_get_arg_types): Adjust to use std::vector.
1122         (xmethod_worker::do_get_result_type): Adjust to use
1123         gdb::array_view.
1124         * gdbtypes.c (rank_function): Adjust to use gdb::array_view.
1125         * gdbtypes.h: Include "common/array-view.h".
1126         (rank_function): Adjust to use gdb::array_view.
1127         * python/py-xmethods.c (python_xmethod_worker::invoke)
1128         (python_xmethod_worker::do_get_arg_types)
1129         (python_xmethod_worker::do_get_result_type)
1130         (python_xmethod_worker::invoke): Adjust to new interfaces.
1131         * valarith.c (value_user_defined_cpp_op, value_user_defined_op)
1132         (value_x_binop, value_x_unop): Adjust to use gdb::array_view.
1133         * valops.c (find_overload_match, find_oload_champ_namespace)
1134         (find_oload_champ_namespace_loop, find_oload_champ): Adjust to use
1135         gdb:array_view and the new xmethod_worker interfaces.
1136         * value.c (result_type_of_xmethod, call_xmethod): Adjust to use
1137         gdb::array_view.
1138         * value.h (find_overload_match, result_type_of_xmethod)
1139         (call_xmethod): Adjust to use gdb::array_view.
1140         * unittests/array-view-selftests.c: Add slicing tests.
1141
1142 2018-11-21  Pedro Alves  <palves@redhat.com>
1143
1144         * ada-lang.c (ada_evaluate_subexp): Adjust to pass an array_view.
1145         * common/array-view.h (make_array_view): New.
1146         * compile/compile-object-run.c (compile_object_run): Adjust to
1147         pass an array_view.
1148         * elfread.c (elf_gnu_ifunc_resolve_addr): Adjust.
1149         * eval.c (eval_call): Adjust to pass an array_view.
1150         (evaluate_subexp_standard): Adjust to pass an array_view.
1151         * gcore.c (call_target_sbrk): Adjust to pass an array_view.
1152         * guile/scm-value.c (gdbscm_value_call): Likewise.
1153         * infcall.c (push_dummy_code): Replace pointer + size parameters
1154         with an array_view parameter.
1155         (call_function_by_hand, call_function_by_hand_dummy): Likewise and
1156         adjust.
1157         * infcall.h: Include "common/array-view.h".
1158         (call_function_by_hand, call_function_by_hand_dummy): Replace
1159         pointer + size parameters with an array_view parameter.
1160         * linux-fork.c (inferior_call_waitpid): Adjust to use array_view.
1161         * linux-tdep.c (linux_infcall_mmap): Likewise.
1162         * objc-lang.c (lookup_objc_class, lookup_child_selector)
1163         (value_nsstring, print_object_command): Likewise.
1164         * python/py-value.c (valpy_call): Likewise.
1165         * rust-lang.c (rust_evaluate_funcall): Likewise.
1166         * spu-tdep.c (flush_ea_cache): Likewise.
1167         * valarith.c (value_x_binop, value_x_unop): Likewise.
1168         * valops.c (value_allocate_space_in_inferior): Likewise.
1169         * unittests/array-view-selftests.c (run_tests): Add
1170         gdb::make_array_view test.
1171
1172 2018-11-20  Andrew Burgess  <andrew.burgess@embecosm.com>
1173
1174         * cli-out.c (cli_ui_out::do_field_int): Use string_printf rather
1175         than a fixed size buffer.
1176
1177 2018-11-20  Andrew Burgess  <andrew.burgess@embecosm.com>
1178
1179         * breakpoint.c (print_one_breakpoint_location): Reduce whitespace,
1180         and remove insertion of extra spaces in GDB's output.
1181         * cli-out.c (cli_ui_out::do_field_fmt): Update header comment.
1182         Layout field into a temporary buffer, and then output it as a
1183         string field.
1184
1185 2018-11-20  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1186
1187         * NEWS: Document the language choice done by
1188         'info [types|functions|variables]|rbreak'.
1189
1190 2018-11-20  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1191
1192         * symtab.c (treg_matches_sym_type_name): Use
1193         scoped_switch_to_sym_language_if_auto instead of local logic.
1194         (print_symbol_info): Use scoped_switch_to_sym_language_if_auto
1195         to switch to SYM language when language mode is auto.
1196
1197 2018-11-20  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1198
1199         * language.h (scoped_switch_to_sym_language_if_auto): New class.
1200
1201 2018-11-20  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1202
1203         * symtab.c (search_symbols): Properly check absence of type regexp
1204         before entering the loop scanning the minimal symbols.
1205
1206 2018-11-20  John Darrington  <john@darrington.wattle.id.au>
1207
1208         * s12z-tdep.c (s12z_extract_return_value): New function.
1209         (inv_reg_perm) New array.
1210         (s12z_return_value): Populate readbuf if non-null.
1211
1212 2018-11-20  Eli Zaretskii  <eliz@gnu.org>
1213
1214         * common/filestuff.c (gdb_fopen_cloexec): Disable use of "e" mode
1215         with 'fopen' also if O_CLOEXEC is equal to O_NOINHERIT, to cater
1216         to MinGW fixed by Gnulib.
1217         (O_NOINHERIT): Define if not defined.
1218
1219 2018-11-19  John Darrington  <john@darrington.wattle.id.au>
1220
1221         * s12z-tdep.c (s12z_frame_cache): Add an assertion.
1222
1223 2018-11-19  Simon Marchi  <simon.marchi@polymtl.ca>
1224
1225         * infrun.c (displaced_step_inferior_state) <next>: Remove.
1226
1227 2018-11-19  Tom Tromey  <tom@tromey.com>
1228
1229         * source.c (get_filename_and_charpos): Return void.
1230
1231 2018-11-19  Simon Marchi  <simon.marchi@polymtl.ca>
1232
1233         * skip.c (_initialize_step_skip): Fix "info skip" help.
1234
1235 2018-11-16  Tom Tromey  <tom@tromey.com>
1236
1237         PR rust/23625:
1238         * rust-lang.c (rust_internal_print_type): Handle TYPE_CODE_PTR.
1239
1240 2018-11-19  Simon Marchi  <simon.marchi@ericsson.com>
1241
1242         * infrun.c (displaced_step_inferior_states): Change type to
1243         std::forward_list.
1244         (get_displaced_stepping_state): Adjust.
1245         (displaced_step_in_progress_any_inferior): Adjust.
1246         (add_displaced_stepping_state): Adjust.
1247         (remove_displaced_stepping_state): Adjust.
1248
1249 2018-11-18  Tom Tromey  <tom@tromey.com>
1250
1251         PR build/23814:
1252         * target-delegates.c: Rebuild.
1253         * ia64-linux-nat.c (class ia64_linux_nat_target)
1254         <have_steppable_watchpoint>: Use override.  Return true, not 1.
1255         (ia64_linux_nat_target::can_use_hw_breakpoint): Rename.  Remove
1256         "self" argument.
1257         (ia64_linux_nat_target::low_new_thread): Rename.
1258         (class ia64_linux_nat_target) <read_description>: Don't declare.
1259         * target.h (struct target_ops) <have_steppable_watchpoint>: Return
1260         bool.
1261
1262 2018-11-16  Alan Hayward  <alan.hayward@arm.com>
1263
1264         PR gdb/22736:
1265         * aarch64-tdep.c (aarch64_push_dummy_call): Remove
1266         lang_struct_return code.
1267
1268 2018-11-16  Alan Hayward  <alan.hayward@arm.com>
1269
1270         * aarch64-tdep.c (aarch64_push_dummy_call): Replace arg with
1271         return_method.
1272         * alpha-tdep.c (alpha_push_dummy_call): Likewise.
1273         * amd64-tdep.c (amd64_push_arguments): Likewise.
1274         (amd64_push_dummy_call): Likewise.
1275         * amd64-windows-tdep.c (amd64_windows_push_arguments): Likewise.
1276         * arc-tdep.c (arc_push_dummy_call): Likewise.
1277         * arm-tdep.c (arm_push_dummy_call): Likewise.
1278         * avr-tdep.c (avr_push_dummy_call): Likewise.
1279         * bfin-tdep.c (bfin_push_dummy_call): Likewise.
1280         * cris-tdep.c (cris_push_dummy_call): Likewise.
1281         * csky-tdep.c (csky_push_dummy_call): Likewise.
1282         * frv-tdep.c (frv_push_dummy_call): Likewise.
1283         * gdbarch.c: Regenerate.
1284         * gdbarch.h: Regenerate.
1285         * gdbarch.sh (gdbarch_push_dummy_call): Replace arg with
1286         return_method.
1287         * h8300-tdep.c (h8300_push_dummy_call): Likewise.
1288         * hppa-tdep.c (hppa32_push_dummy_call): Likewise.
1289         (hppa64_push_dummy_call): Likewise.
1290         * i386-darwin-tdep.c (i386_darwin_push_dummy_call): Likewise.
1291         * i386-tdep.c (i386_push_dummy_call): Likewise.
1292         * ia64-tdep.c (ia64_push_dummy_call): Likewise.
1293         * infcall.c (call_function_by_hand_dummy): Likewise.
1294         * iq2000-tdep.c (iq2000_push_dummy_call): Likewise.
1295         * lm32-tdep.c (lm32_push_dummy_call): Likewise.
1296         * m32c-tdep.c (m32c_push_dummy_call): Likewise.
1297         * m32r-tdep.c (m32r_push_dummy_call): Likewise.
1298         * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
1299         * m68k-tdep.c (m68k_push_dummy_call): Likewise.
1300         * mep-tdep.c (mep_push_dummy_call): Likewise.
1301         * mips-tdep.c (mips_eabi_push_dummy_call): Likewise.
1302         (mips_n32n64_push_dummy_call): Likewise.
1303         (mips_o32_push_dummy_call): Likewise.
1304         (mips_o64_push_dummy_call): Likewise.
1305         * mn10300-tdep.c (mn10300_push_dummy_call): Likewise.
1306         * msp430-tdep.c (msp430_push_dummy_call): Likewise.
1307         * nds32-tdep.c (nds32_push_dummy_call): Likewise.
1308         * nios2-tdep.c (nios2_push_dummy_call): Likewise.
1309         * or1k-tdep.c (or1k_push_dummy_call): Likewise.
1310         * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Likewise.
1311         (ppc64_sysv_abi_push_dummy_call): Likewise.
1312         * ppc-tdep.h (ppc_sysv_abi_push_dummy_call): Likewise.
1313         (ppc64_sysv_abi_push_dummy_call): Likewise.
1314         * riscv-tdep.c (riscv_push_dummy_call): Likewise.
1315         * rl78-tdep.c (rl78_push_dummy_call): Likewise.
1316         * rs6000-aix-tdep.c (rs6000_push_dummy_call): Likewise.
1317         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Likewise.
1318         * rx-tdep.c (rx_push_dummy_call): Likewise.
1319         * s390-tdep.c (s390_push_dummy_call): Likewise.
1320         * score-tdep.c (score_push_dummy_call): Likewise.
1321         * sh-tdep.c (sh_push_dummy_call_fpu): Likewise.
1322         (sh_push_dummy_call_nofpu): Likewise.
1323         * sparc-tdep.c (sparc32_store_arguments): Likewise.
1324         (sparc32_push_dummy_call): Likewise.
1325         * sparc64-tdep.c (sparc64_store_arguments): Likewise.
1326         (sparc64_push_dummy_call): Likewise.
1327         * spu-tdep.c (spu_push_dummy_call): Likewise.
1328         * tic6x-tdep.c (tic6x_push_dummy_call): Likewise.
1329         * tilegx-tdep.c (tilegx_push_dummy_call): Likewise.
1330         * v850-tdep.c (v850_push_dummy_call): Likewise.
1331         * vax-tdep.c (vax_push_dummy_call): Likewise.
1332         * xstormy16-tdep.c (xstormy16_push_dummy_call): Likewise.
1333         * xtensa-tdep.c (xtensa_push_dummy_call): Likewise.
1334
1335 2018-11-16  Alan Hayward  <alan.hayward@arm.com>
1336
1337         * gdbarch.sh (enum function_call_return_method): Add enum.
1338         * gdbarch.h: Regenerate.
1339         * infcall.c (call_function_by_hand_dummy): Replace vars with enum.
1340
1341 2018-11-15  Joel Brobecker  <brobecker@adacore.com>
1342
1343         * unittests/copy_bitwise-selftests.c: New file.
1344         * utils.c (selftests::bits_to_str, selftests::check_copy_bitwise)
1345         (selftests::copy_bitwise_tests): Delete, moving this code to
1346         unittests/copy_bitwise-selftests.c instead.
1347         (_initialize_utils): Do not register copy_bitwise tests.
1348         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1349         unittests/copy_bitwise-selftests.c.
1350
1351 2018-11-14  Joel Brobecker  <brobecker@adacore.com>
1352
1353         * ada-lang.c (move_bits): Delete. Update all callers to use
1354         copy_bitwise instead.
1355         * dwarf2loc.c (copy_bitwise, bits_to_str::bits_to_str)
1356         (selftests::check_copy_bitwise, selftests::copy_bitwise_tests):
1357         Move from here to utils.c.
1358         (_initialize_dwarf2loc): Remove call to register copy_bitwise
1359         selftests.
1360         * utils.h (copy_bitwise): Add declaration.
1361         * utils.c (copy_bitwise, bits_to_str::bits_to_str)
1362         (selftests::check_copy_bitwise, selftests::copy_bitwise_tests):
1363         Moved here from dwarf2loc.c.
1364         (_initialize_utils): Register copy_bitwise selftests.
1365
1366 2018-11-14  Jim Wilson  <jimw@sifive.com>
1367
1368         * riscv-tdep.c (struct riscv_arg_info): New field is_unnamed.
1369         (riscv_call_arg_scalar_int): If unnamed arg with twice xlen alignment,
1370         then increment next_regnum if odd.
1371         (riscv_arg_location): New arg is_unnamed.  Set ainfo->is_unnamed.
1372         (riscv_push_dummy_call): New local ftype.  Call check_typedef to set
1373         function type.  Pass new arg to riscv_arg_location based on function
1374         type.
1375         (riscv_return_value): Pass new arg to riscv_arg_location.
1376
1377         * riscv-tdep.c (BIGGEST_ALIGNMENT): New.
1378         (riscv_type_alignment) <TYPE_CODE_ARRAY>: If TYPE_VECTOR, return min
1379         of TYPE_LENGTH and BIGGEST_ALIGNMENT.
1380
1381         * riscv-tdep.c (riscv_call_arg_scalar_int): Use std::min when
1382         setting len.  New local align, set to max of arg align and xlen,
1383         and pass to first riscv_assign_stack_location call.
1384
1385 2018-11-12  Simon Marchi  <simon.marchi@polymtl.ca>
1386
1387         * skip.c (complete_skip_number): New function.
1388         (_initialize_step_skip): Add completers to some skip commands.
1389
1390 2018-11-09  Tom Tromey  <tom@tromey.com>
1391
1392         * remote.c (remote_g_packet_guess_s): Remove typedef and DEF_VEC.
1393         (struct remote_g_packet_data): Derive from allocate_on_obstack.
1394         <guesses>: Now a std::vector.
1395         (remote_g_packet_data_init, register_remote_g_packet_guess):
1396         Update.
1397         (remote_read_description_p): Update.  Return bool.
1398         (remote_target::read_description): Update.
1399         (struct remote_g_packet_guess): Add constructor.
1400
1401 2018-11-09  Tom Tromey  <tom@tromey.com>
1402
1403         * common/scoped_fd.h (class scoped_fd): Add move constructor and
1404         move assignment operator.
1405         * psymtab.c (psymtab_to_fullname): Update.
1406         * source.h (open_source_file): Return scoped_fd.
1407         (find_and_open_source): Likewise.
1408         * source.c (open_source_file): Return scoped_fd.
1409         (get_filename_and_charpos): Update.
1410         (print_source_lines_base): Update.  Use scoped_fd::to_file.
1411         (forward_search_command): Likewise.
1412         (reverse_search_command): Likewise.
1413         (find_and_open_source): Return scoped_fd.
1414         * tui/tui-source.c (tui_set_source_content): Update.  Use
1415         gdb_file_up.
1416
1417 2018-11-09  John Baldwin  <jhb@FreeBSD.org>
1418
1419         * minsyms.c (minimal_symbol_reader::install): Fix unsigned
1420         overflow.
1421
1422 2018-11-09  Hafiz Abid Qadeer  <abidh@codesourcery.com>
1423
1424         * configure: Regenerate.
1425
1426 2018-11-09  Tom de Vries  <tdevries@suse.de>
1427
1428         * symtab.c (symbol_set_names): Call symbol_find_demangled_name
1429         unconditionally, to set the language of the symbol.  Manage freeing
1430         returned pointer using gdb::unique_xmalloc_ptr.
1431
1432 2018-11-08  Tom Tromey  <tom@tromey.com>
1433
1434         * record.c (require_record_target): Upper-case "<TAB>".
1435
1436 2018-11-08  Tom Tromey  <tom@tromey.com>
1437
1438         * python/lib/gdb/command/pretty_printers.py
1439         (InfoPrettyPrinter.invoke): Don't indent "objfile" heading.
1440
1441 2018-11-08  Tom Tromey  <tom@tromey.com>
1442
1443         PR gdb/23555:
1444         PR gdb/23838:
1445         * target.h (target_supports_terminal_ours): Return bool.
1446         * target.c (target_supports_terminal_ours): Handle case where
1447         current_top_target returns nullptr.  Return bool.
1448
1449 2018-11-08  Joel Brobecker  <brobecker@adacore.com>
1450
1451         * aarch64-tdep.c (aapcs_is_vfp_call_or_return_candidate_1):
1452         return the correct count for potential HFAs.
1453
1454 2018-11-08  Jan Beulich  <jbeulich@suse.com>
1455
1456         * i387-tdep.c (i387_supply_xsave): Split handling of
1457         X86_XSTATE_ZMM_H and X86_XSTATE_ZMM.
1458         (i387_collect_xsave): Likewise.
1459
1460 2018-11-08  Andrew Burgess  <andrew.burgess@embecosm.com>
1461
1462         * riscv-tdep.c (riscv_insn::decode): Update header comment.
1463         (riscv_frame_this_id): Catch errors thrown while building the
1464         frame cache, leave the frame id as the default, which is the outer
1465         frame id.
1466
1467 2018-11-07  Joel Brobecker  <brobecker@adacore.com>
1468
1469         * ada-lang.c (read_atcb): Only set task_info->called_task if
1470         task_info->state == Entry_Caller_Sleep.
1471         (print_ada_task_info): Do not check task_info->state before
1472         checking task_info->called_task.
1473         (info_task): Likewise.
1474
1475 2018-11-07  Joel Brobecker  <brobecker@adacore.com>
1476
1477         * ada-tasks.c (read_atcb): Clear task_info before computing
1478         the value of each of its fields.
1479
1480 2018-11-07  Andrew Burgess  <andrew.burgess@embecosm.com>
1481
1482         * dwarf2read.c (dwarf2_init_integer_type): Check for name being
1483         NULL before dereferencing it.
1484
1485 2018-11-06  Tom de Vries  <tdevries@suse.de>
1486
1487         * linux-tdep.c (linux_vsyscall_range_raw): Use xmalloc to allocate
1488         program headers.
1489
1490 2018-11-06  Max Filippov  <jcmvbkbc@gmail.com>
1491
1492         * configure.tgt (xtensa*-*-linux*): Change to xtensa*-*-*linux*
1493         so that it applies to uclinux as well.
1494
1495 2018-11-06  Marius Muench  <marius.muench@eurecom.fr>
1496
1497         * arm-tdep.c (arm_scan_prologue): Don't dereference FP reg
1498         when on AAPCS.
1499
1500 2018-11-06  John Baldwin  <jhb@FreeBSD.org>
1501
1502         * riscv-fbsd-nat.c (getregs_supplies): Return true for
1503         RISCV_CSR_SSTATUS_REGNUM.
1504
1505 2018-11-04  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1506
1507         * source.c (open_source_file): Fix leak by transferring the
1508         current s->fullname to the unique_xmalloc_ptr fullname given
1509         to find_and_open_source.
1510
1511 2018-11-04  Tom Tromey  <tom@tromey.com>
1512
1513         * varobj.c (install_default_visualizer): Update.
1514         * python/python-internal.h (gdbpy_get_varobj_pretty_printer):
1515         Return gdbpy_ref.
1516         * python/py-prettyprint.c (search_pp_list): Return gdbpy_ref.
1517         (find_pretty_printer_from_progspace)
1518         (find_pretty_printer_from_gdb, find_pretty_printer)
1519         (gdbpy_get_varobj_pretty_printer): Return gdbpy_ref.
1520         (gdbpy_get_varobj_pretty_printer, gdbpy_default_visualizer):
1521         Update.
1522
1523 2018-11-04  Tom Tromey  <tom@tromey.com>
1524
1525         * python/python.c (gdbpy_parameter_value): Update.
1526         * python/python-internal.h (python_string_to_unicode)
1527         (python_string_to_target_python_string)
1528         (host_string_to_python_string): Return gdbpy_ref.
1529         * python/py-utils.c (python_string_to_unicode)
1530         (unicode_to_encoded_python_string)
1531         (unicode_to_target_python_string)
1532         (python_string_to_target_string)
1533         (python_string_to_target_python_string): Return gdbpy_ref.
1534         (python_string_to_host_string): Update.
1535         (host_string_to_python_string): Return gdbpy_ref.
1536         * python/py-symtab.c (stpy_get_filename, stpy_get_producer)
1537         (stpy_fullname): Update.
1538         * python/py-progspace.c (pspy_get_filename, pspy_solib_name):
1539         Update.
1540         * python/py-prettyprint.c (print_string_repr): Update.
1541         * python/py-objfile.c (objfpy_get_filename, objfpy_get_username)
1542         (objfpy_get_build_id): Update.
1543         * python/py-breakpoint.c (bppy_get_location)
1544         (bppy_get_expression, bppy_get_condition, bppy_get_commands):
1545         Update.
1546
1547 2018-11-04  Tom Tromey  <tom@tromey.com>
1548
1549         * python/python-internal.h (gdb_py_object_from_longest)
1550         (gdb_py_object_from_ulongest): Return gdbpy_ref.
1551         * python/py-value.c (valpy_int): Update.
1552         * python/py-utils.c (gdb_py_object_from_longest): Return
1553         gdbpy_ref.
1554         (gdb_py_object_from_ulongest): Likewise.
1555         * python/py-type.c (typy_get_alignof): Update.
1556         * python/py-linetable.c (ltpy_get_all_source_lines)
1557         (ltpy_entry_get_line, ltpy_entry_get_pc): Update.
1558         * python/py-block.c (blpy_get_start, blpy_get_end): Update.
1559
1560 2018-11-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1561
1562         * ada-lang.c (_initialize_ada_language): Fix typo.
1563
1564 2018-11-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1565
1566         * language.c (type): Remove.
1567         (_initialize_language): Remove assignment to type.
1568
1569 2018-11-02  Joel Brobecker  <brobecker@adacore.com>
1570
1571         * aarch64-ravenscar-thread.h, aarch64-ravenscar-thread.c: New files.
1572         * aarch64-tdep.c: #include "aarch64-ravenscar-thread.h".
1573         (aarch64_gdbarch_init): Add call to register_aarch64_ravenscar_ops.
1574         * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-ravenscar-thread.o.
1575         (HFILES_NO_SRCDIR): Add aarch64-ravenscar-thread.h.
1576         (ALLDEPFILES): Add aarch64-ravenscar-thread.c.
1577         * configure.tgt (cpu_obs) [aarch64*-*-*]: Add ravenscar-thread.o
1578         and aarch64-ravenscar-thread.o.
1579         * NEWS: Add entry documenting Ravenscar tasking support
1580         on AArch64 ELF.
1581
1582 2018-11-02  Matthew Malcomson  <matthew.malcomson@arm.com>
1583
1584         * symtab.c (info_functions_command): Initialize quiet flag.
1585         * stack.c (info_args_command): Likewise.
1586
1587 2018-11-01  Jim Wilson  <jimw@sifive.com>
1588
1589         * riscv-tdep.c (riscv_breakpoint_kind_from_pc): New local unaligned_p.
1590         Set if pcptr if unaligned.  Return 2 if unaligned_p true.  Update
1591         debugging messages.
1592
1593 2018-11-01  Joel Brobecker  <brobecker@adacore.com>
1594
1595         * ada-lang.c (ada_watch_location_expression): New function.
1596         (ada_language_defn): Set la_watch_location_expression to
1597         ada_watch_location_expression.
1598
1599 2018-11-01  Joel Brobecker  <brobecker@adacore.com>
1600
1601         * print-utils.c (int_string): Remove unnecessary trailing spaces.
1602
1603 2018-11-01  Joel Brobecker  <brobecker@adacore.com>
1604
1605         * rs6000-tdep.c (skip_prologue): Fix potential negative left
1606         shifting.
1607
1608 2018-11-01  Jerome Guitton  <guitton@adacore.com>
1609             Joel Brobecker  <brobecker@adacore.com>
1610
1611         * defs.h (enum gdb_osabi): Add GDB_OSABI_PIKEOS.
1612         * osabi.c (gdb_osabi_names): Add name for GDB_OSABI_PIKEOS.
1613         * arm-pikeos-tdep.c: New file.
1614         * configure.tgt: Add arm-pikeos-tdep.o to the case of ARM
1615         embedded system.
1616         * Makefile.in (ALL_TARGET_OBS): Add arm-pikeos-tdep.o.
1617
1618 2018-11-01  Simon Marchi  <simon.marchi@ericsson.com>
1619
1620         * common/pathstuff.c (get_standard_temp_dir): New.
1621         * common/pathstuff.h (get_standard_temp_dir): New.
1622         * config.in: Re-generate.
1623         * configure: Re-generate.
1624         * configure.ac: Don't check for mkdtemp.
1625         * gnulib/aclocal-m4-deps.mk: Re-generate.
1626         * gnulib/aclocal.m4: Re-generate.
1627         * gnulib/config.in: Re-generate.
1628         * gnulib/configure: Re-generate.
1629         * gnulib/import/Makefile.am: Re-generate.
1630         * gnulib/import/Makefile.in: Re-generate.
1631         * gnulib/import/m4/gnulib-cache.m4: Re-generate.
1632         * gnulib/import/m4/gnulib-comp.m4: Re-generate.
1633         * gnulib/import/m4/mkdtemp.m4: New file.
1634         * gnulib/import/mkdtemp.c: New file.
1635         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES):
1636         Add mkdtemp module.
1637         * unittests/mkdir-recursive-selftests.c (test): Use
1638         get_standard_temp_dir.
1639         (_initialize_mkdir_recursive_selftests): Remove HAVE_MKDTEMP
1640         ifdef.
1641         * compile/compile.c (get_compile_file_tempdir): Likewise.
1642
1643 2018-11-01  Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
1644
1645         * rs6000-aix-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
1646         (SIG_FRAME_LR_OFFSET64): New define.
1647         (SIG_FRAME_FP_OFFSET64): New define.
1648         (aix_sighandle_frame_cache): New Function.
1649         (aix_sighandle_frame_this_id): New Function.
1650         (aix_sighandle_frame_prev_register): New Function.
1651         (aix_sighandle_frame_sniffer): New Function.
1652         (aix_sighandle_frame_unwind): New global variable.
1653         (rs6000_aix_init_osabi): Install new frame unwinder.
1654
1655 2018-10-31  Sergio Durigan Junior  <sergiodj@redhat.com>
1656
1657         PR gdb/23835
1658         * common/common-defs.h: Don't redefine _FORTIFY_SOURCE if it's
1659         already defined.
1660
1661 2018-10-31  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1662
1663         * ppc-linux-nat.c: Include nat/linux-ptrace.h.
1664
1665 2018-10-31  Andrew Burgess  <andrew.burgess@embecosm.com>
1666
1667         * dwarf2read.c (struct dwarf2_cu): Add producer_is_icc field.
1668         (producer_is_icc): New function.
1669         (check_producer): Set producer_is_icc field on dwarf2_cu.
1670         (dwarf2_init_integer_type): New function.
1671         (read_base_type): Call dwarf2_init_integer_type instead of
1672         init_integer_type in all cases.
1673         (dwarf2_cu::dwarf2_cu): Initialise producer_is_icc field.
1674         * valprint.c (maybe_negate_by_bytes): Add an assertion that the
1675         LEN is greater than 0.
1676
1677 2018-10-30  Tom Tromey  <tom@tromey.com>
1678
1679         * main.c (captured_main_1): Check return value of bfd_init.
1680
1681 2018-10-29  Sergio Durigan Junior  <sergiodj@redhat.com>
1682
1683         * common/offset-type.h (DEFINE_OFFSET_REL_OP): Delete.
1684         Adjust comments.
1685
1686 2018-10-29  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
1687
1688         * procfs.c: Include common/pathstuff.h.
1689
1690 2018-10-28  Andrew Burgess  <andrew.burgess@embecosm.com>
1691
1692         * riscv-linux-nat.c (riscv_linux_nat_target::fetch_registers):
1693         Add missing braces.  No functional change.
1694
1695 2018-10-27  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1696
1697         * macrocmd.c (info_macro_command): Use report_unrecognized_option_error
1698         to report a bad option and fix indentation.
1699         * demangle.c (demangle_command): Use report_unrecognized_option_error
1700         to report a bad option and correctly report the bad option.
1701
1702 2018-10-27  Tom Tromey  <tom@tromey.com>
1703
1704         PR cli/23364:
1705         * darwin-nat.c (copied_shell): New global.
1706         (may_have_sip): Rename from should_disable_startup_with_shell.
1707         (copy_shell_to_cache, maybe_cache_shell): New functions.
1708         (darwin_nat_target::create_inferior): Update.  Use
1709         copied_shell.
1710
1711 2018-10-27  Tom Tromey  <tom@tromey.com>
1712
1713         * unittests/scoped_fd-selftests.c (test_to_file): New function.
1714         (run_tests): Call test_to_file.
1715         * dwarf-index-write.c (write_psymtabs_to_index): Do not reopen
1716         temporary files.
1717         * common/scoped_fd.h (scoped_fd::to_file): New method.
1718
1719 2018-10-27  Tom Tromey  <tom@tromey.com>
1720
1721         * unittests/scoped_mmap-selftests.c (test_normal): Use
1722         gdb_mkostemp_cloexec.
1723         * unittests/scoped_fd-selftests.c (test_destroy, test_release):
1724         Use gdb_mkostemp_cloexec.
1725         * gnulib/aclocal-m4-deps.mk, gnulib/aclocal.m4,
1726         gnulib/config.in, gnulib/configure,
1727         gnulib/import/Makefile.am, gnulib/import/Makefile.in,
1728         gnulib/import/m4/gnulib-cache.m4,
1729         gnulib/import/m4/gnulib-comp.m4: Update.
1730         * gnulib/import/m4/mkostemp.m4: New file.
1731         * gnulib/import/m4/mkstemp.m4: Remove.
1732         * gnulib/import/mkostemp.c: New file.
1733         * gnulib/import/mkstemp.m4: Remove.
1734         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
1735         mkstemp, add mkostemp.  Apply new patch.
1736         * gnulib/import/stdlib.in.h: Apply patch.
1737         * gnulib/patches/0002-mkostemp-mkostemps-Fix-compilation-error-in-C-mode-o.patch:
1738         New file.
1739         * dwarf-index-write.c (write_psymtabs_to_index): Use
1740         gdb_mkostemp_cloexec.
1741         * common/filestuff.h (gdb_mkostemp_cloexec): New function.
1742
1743 2018-10-27  Tom Tromey  <tom@tromey.com>
1744
1745         * unittests/mkdir-recursive-selftests.c: New file.
1746         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
1747         unittests/mkdir-recursive-selftests.c.
1748         * dwarf-index-cache.c (mkdir_recursive): Move to
1749         common/filestuff.c.
1750         (index_cache::store): Check return value of mkdir_recursive.
1751         (create_dir_and_check, test_mkdir_recursive): Move to new file.
1752         (_initialize_index_cache): Don't register test.
1753         * common/filestuff.h (mkdir_recursive): Declare.
1754         * common/filestuff.c (mkdir_recursive): Move from
1755         dwarf-index-cache.c.  Return bool.
1756
1757 2018-10-27  Tom Tromey  <tom@tromey.com>
1758
1759         * dwarf-index-write.c (write_psymtabs_to_index): Move
1760         make_temp_filename to common/pathstuff.c.
1761         * common/pathstuff.h (make_temp_filename): Declare.
1762         * common/pathstuff.c (make_temp_filename): New function, moved
1763         from dwarf-index-write.c.
1764
1765 2018-10-27  Tom Tromey  <tom@tromey.com>
1766
1767         * procfs.c (procfs_target::create_inferior): Use get_shell.
1768         * cli/cli-cmds.c (shell_escape): Use get_shell.
1769         * windows-nat.c (windows_nat_target::create_inferior): Use
1770         get_shell.
1771         * common/pathstuff.c (get_shell): New function.
1772         * nat/fork-inferior.c (SHELL_FILE, get_startup_shell): Remove.
1773         (fork_inferior): Use get_shell.
1774         * common/pathstuff.h (get_shell): Declare.
1775
1776 2018-10-27  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1777
1778         * NEWS: Mention changes to 'info [args|functions|locals|variables]'
1779
1780 2018-10-27  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1781
1782         * stack.c (print_variable_and_value_data): Add preg and treg.
1783         (print_frame_local_vars): Add quiet, regexp and t_regexp arguments,
1784         and update callers.
1785         (print_frame_arg_vars): Likewise.
1786         (prepare_reg): New function.
1787         (info_locals_command): Extract info print args and use them.
1788         (info_args_command): Likewise.
1789         (_initialize_stack): Modify on-line help.
1790         * symtab.c (treg_matches_sym_type_name): New function.
1791         (search_symbols): New arg t_regexp.
1792         (symtab_symbol_info): New args quiet, regexp, t_regexp.
1793         (info_variables_command): Extract info print args and use them.
1794         (info_functions_command): Likewise.
1795         (info_types_command): Update call to symtab_symbol_info.
1796         (_initialize_symtab): Modify on-line help.
1797         * symtab.h (treg_matches_sym_type_name): New function.
1798         (search_symbols): New t_regexp arg.
1799
1800 2018-10-27  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
1801
1802         * cli-utils.c (extract_arg_maybe_quoted): New function.
1803         (extract_info_print_args): New function.
1804         (info_print_args_help): New function.
1805         (report_unrecognized_option_error): New function.
1806         * cli-utils.h (extract_arg_maybe_quoted): New function.
1807         (extract_info_print_args): New function.
1808         (info_print_args_help): New function.
1809         (report_unrecognized_option_error): New function.
1810
1811 2018-10-26  Tom Tromey  <tom@tromey.com>
1812
1813         * dwarf2read.c (recursively_compute_inclusions): Use std::vector.
1814         (compute_compunit_symtab_includes): Update.
1815         * symtab.h: (symtab_ptr): Remove typedef.  Don't define a VEC.
1816         (compunit_symtab_ptr): Likewise.
1817
1818 2018-10-26  John Baldwin  <jhb@FreeBSD.org>
1819
1820         * fbsd-tdep.c (fbsd_print_auxv_entry): Only use
1821         default_print_auxv_entry for specific tag values.
1822
1823 2018-10-26  John Baldwin  <jhb@FreeBSD.org>
1824
1825         * fbsd-tdep.c (fbsd_print_auxv_entry): Handle AT_FREEBSD_HWCAP2.
1826
1827 2018-10-26  Jim Wilson  <jimw@sifive.com>
1828
1829         * riscv-linux-tdep.c: Include tramp-frame.h and trad-frame.h.
1830         (riscv_linux_sigframe_init): Declare.
1831         (RISCV_INST_LI_A7_SIGRETURN, RISCV_INT_ECALL): New.
1832         (riscv_linux_sigframe): New.
1833         (SIGFRAME_SIGINFO_SIZE, UCONTEXT_MCONTEXT_OFFSET): New.
1834         (riscv_linux_sigframe_init): Define.
1835         (riscv_linux_init_abi): Call tramp_frame_prepend_unwinder.
1836
1837         * riscv-tdep.c (riscv_isa_xlen): Refer to riscv-tdep.h comment.
1838         (riscv_isa_flen): Likewise.  Drop static.
1839         * riscv-tdep.h (riscv_isa_xlen): Move riscv-tdep.c comment to here.
1840         (riscv_isa_flen): Likewise.  Declare.
1841
1842 2018-10-26  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1843             Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1844
1845         * arch/ppc-linux-tdesc.h (tdesc_powerpc_isa207_htm_vsx32l)
1846         (tdesc_powerpc_isa207_htm_vsx64l): Declare.
1847         * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_TM_SPRREGSET)
1848         (PPC32_LINUX_SIZEOF_CGPRREGSET, PPC64_LINUX_SIZEOF_CGPRREGSET)
1849         (PPC_LINUX_SIZEOF_CFPRREGSET, PPC_LINUX_SIZEOF_CVMXREGSET)
1850         (PPC_LINUX_SIZEOF_CVSXREGSET, PPC_LINUX_SIZEOF_CPPRREGSET)
1851         (PPC_LINUX_SIZEOF_CDSCRREGSET, PPC_LINUX_SIZEOF_CTARREGSET):
1852         Define.
1853         (struct ppc_linux_features) <htm>: New field.
1854         (ppc_linux_no_features): Add initializer for htm field.
1855         * arch/ppc-linux-common.c (ppc_linux_match_description): Return
1856         new tdescs.
1857         * nat/ppc-linux.h (PPC_FEATURE2_HTM, NT_PPC_TM_CGPR)
1858         (NT_PPC_TM_CFPR, NT_PPC_TM_CVMX, NT_PPC_TM_CVSX)
1859         (NT_PPC_TM_SPR, NT_PPC_TM_CTAR, NT_PPC_TM_CPPR, NT_PPC_TM_CDSCR):
1860         Define if not already defined.
1861         * features/Makefile (WHICH): Add rs6000/powerpc-isa207-htm-vsx32l
1862         and rs6000/powerpc-isa207-htm-vsx64l.
1863         (XMLTOC): Add rs6000/powerpc-isa207-htm-vsx32l.xml and
1864         rs6000/powerpc-isa207-htm-vsx64l.xml.
1865         * features/rs6000/power-htm-spr.xml: New file.
1866         * features/rs6000/power-htm-core.xml: New file.
1867         * features/rs6000/power64-htm-core.xml: New file.
1868         * features/rs6000/power-htm-fpu.xml: New file.
1869         * features/rs6000/power-htm-altivec.xml: New file.
1870         * features/rs6000/power-htm-vsx.xml: New file.
1871         * features/rs6000/power-htm-ppr.xml: New file.
1872         * features/rs6000/power-htm-dscr.xml: New file.
1873         * features/rs6000/power-htm-tar.xml: New file.
1874         * features/rs6000/powerpc-isa207-htm-vsx32l.xml: New file.
1875         * features/rs6000/powerpc-isa207-htm-vsx64l.xml: New file.
1876         * features/rs6000/powerpc-isa207-htm-vsx32l.c: Generate.
1877         * features/rs6000/powerpc-isa207-htm-vsx64l.c: Generate.
1878         * regformats/rs6000/powerpc-isa207-htm-vsx32l.dat: Generate.
1879         * regformats/rs6000/powerpc-isa207-htm-vsx64l.dat: Generate.
1880         * ppc-linux-nat.c (fetch_register, fetch_ppc_registers): Call
1881         fetch_regset with HTM regsets.
1882         (store_register, store_ppc_registers): Call store_regset with HTM
1883         regsets.
1884         (ppc_linux_nat_target::read_description): Set htm field in the
1885         features struct if needed.
1886         * ppc-linux-tdep.c: Include
1887         features/rs6000/powerpc-isa207-htm-vsx32l.c and
1888         features/rs6000/powerpc-isa207-htm-vsx64l.c.
1889         (ppc32_regmap_tm_spr, ppc32_regmap_cgpr, ppc64_le_regmap_cgpr)
1890         (ppc64_be_regmap_cgpr, ppc32_regmap_cfpr, ppc32_le_regmap_cvmx)
1891         (ppc32_be_regmap_cvmx, ppc32_regmap_cvsx, ppc32_regmap_cppr)
1892         (ppc32_regmap_cdscr, ppc32_regmap_ctar): New globals.
1893         (ppc32_linux_tm_sprregset, ppc32_linux_cgprregset)
1894         (ppc64_be_linux_cgprregset, ppc64_le_linux_cgprregset)
1895         (ppc32_linux_cfprregset, ppc32_le_linux_cvmxregset)
1896         (ppc32_be_linux_cvmxregset, ppc32_linux_cvsxregset)
1897         (ppc32_linux_cpprregset, ppc32_linux_cdscrregset)
1898         (ppc32_linux_ctarregset): New globals.
1899         (ppc_linux_cgprregset, ppc_linux_cvmxregset): New functions.
1900         (ppc_linux_collect_core_cpgrregset): New function.
1901         (ppc_linux_iterate_over_regset_sections): Call back with the htm
1902         regsets.
1903         (ppc_linux_core_read_description): Check if the tm spr section is
1904         present and set htm in the features struct.
1905         (_initialize_ppc_linux_tdep): Call
1906         initialize_tdesc_powerpc_isa207_htm_vsx32l and
1907         initialize_tdesc_powerpc_isa207_htm_vsx64l.
1908         * ppc-linux-tdep.h (ppc_linux_cgprregset, ppc_linux_cvmxregset):
1909         Declare.
1910         (ppc32_linux_tm_sprregset, ppc32_linux_cfprregset)
1911         (ppc32_linux_cvsxregset, ppc32_linux_cpprregset)
1912         (ppc32_linux_cdscrregset, ppc32_linux_ctarregset): Declare.
1913         * ppc-tdep.h (struct gdbarch_tdep) <have_htm_spr, have_htm_core>:
1914         New fields.
1915         <have_htm_fpu, have_htm_altivec, have_htm_vsx>:
1916         Likewise.
1917         <ppc_cppr_regnum, ppc_cdscr_regnum, ppc_ctar_regnum>: Likewise.
1918         <ppc_cdl0_regnum, ppc_cvsr0_regnum, ppc_cefpr0_regnum>: Likewise.
1919         (enum) <PPC_TFHAR_REGNUM, PPC_TEXASR_REGNUM, PPC_TFIAR_REGNUM>:
1920         New enum fields.
1921         <PPC_CR0_REGNUM, PPC_CCR_REGNUM, PPC_CXER_REGNUM>: Likewise.
1922         <PPC_CLR_REGNUM, PPC_CCTR_REGNUM, PPC_CF0_REGNUM>: Likewise.
1923         <PPC_CFPSCR_REGNUM, PPC_CVR0_REGNUM, PPC_CVSCR_REGNUM>: Likewise.
1924         <PPC_CVRSAVE_REGNUM, PPC_CVSR0_UPPER_REGNUM>: Likewise.
1925         <PPC_CPPR_REGNUM, PPC_CDSCR_REGNUM>: Likewise.
1926         <PPC_CTAR_REGNUM>: Likewise.
1927         (PPC_IS_TMSPR_REGNUM, PPC_IS_CKPTGP_REGNUM, PPC_IS_CKPTFP_REGNUM)
1928         (PPC_IS_CKPTVMX_REGNUM, PPC_IS_CKPTVSX_REGNUM): Define.
1929         * rs6000-tdep.c (IS_CDFP_PSEUDOREG, IS_CVSX_PSEUDOREG)
1930         (IS_CEFP_PSEUDOREG): Define.
1931         (rs6000_register_name): Hide the upper halves of checkpointed VSX
1932         registers.  Return names for the checkpointed DFP, VSX, and EFP
1933         pseudo registers.
1934         (rs6000_pseudo_register_type): Remove initial assert and raise an
1935         internal error in the else clause instead.  Return types for the
1936         checkpointed DFP, VSX, and EFP pseudo registers.
1937         (dfp_pseudo_register_read, dfp_pseudo_register_write): Handle
1938         checkpointed DFP pseudo registers.
1939         (vsx_pseudo_register_read, vsx_pseudo_register_write): Handle
1940         checkpointed VSX pseudo registers.
1941         (efp_pseudo_register_read, efp_pseudo_register_write): Rename
1942         from efpr_pseudo_register_read and
1943         efpr_pseudo_register_write.  Handle checkpointed EFP pseudo
1944         registers.
1945         (rs6000_pseudo_register_read, rs6000_pseudo_register_write):
1946         Handle checkpointed DFP, VSX, and EFP registers.
1947         (dfp_ax_pseudo_register_collect, vsx_ax_pseudo_register_collect)
1948         (efp_ax_pseudo_register_collect): New functions.
1949         (rs6000_ax_pseudo_register_collect): Move DFP, VSX and EFP pseudo
1950         register logic to new functions.  Handle checkpointed DFP, VSX,
1951         and EFP pseudo registers.
1952         (rs6000_gdbarch_init): Look for and validate the htm features.
1953         Include checkpointed DFP, VSX and EFP pseudo-registers.
1954         * NEWS: Mention access to PPR, DSCR, TAR, EBB/PMU registers and
1955         HTM registers.
1956
1957 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1958
1959         * rs6000-tdep.c (rs6000_gdbarch_init): Reject tdescs with vsx but
1960         without altivec or fpu.
1961
1962 2018-10-26  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
1963             Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
1964
1965         * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_EBBREGSET)
1966         (PPC_LINUX_SIZEOF_PMUREGSET): Declare.
1967         * nat/ppc-linux.h (PPC_FEATURE2_EBB, NT_PPC_EBB, NT_PPC_PMU):
1968         Define if not already defined.
1969         * features/rs6000/power-ebb.xml: New file.
1970         * features/rs6000/power-linux-pmu.xml: New file.
1971         * features/rs6000/powerpc-isa207-vsx32l.xml: Include ebb and pmu
1972         features.
1973         * features/rs6000/powerpc-isa207-vsx64l.xml: Likewise.
1974         * features/rs6000/powerpc-isa207-vsx32l.c: Re-generate.
1975         * features/rs6000/powerpc-isa207-vsx64l.c: Re-generate.
1976         * regformats/rs6000/powerpc-isa207-vsx32l.dat: Re-generate.
1977         * regformats/rs6000/powerpc-isa207-vsx64l.dat: Re-generate.
1978         * ppc-linux-nat.c (fetch_register, fetch_ppc_registers): Call
1979         fetch_regset with ebb and pmu regsets.
1980         (store_register, store_ppc_registers): Call store_regset with ebb
1981         and pmu regsets.
1982         (ppc_linux_nat_target::read_description): Set isa207 field in the
1983         features struct if ebb and pmu are avaiable.
1984         * ppc-linux-tdep.c (ppc32_regmap_ebb, ppc32_regmap_pmu)
1985         (ppc32_linux_ebbregset, ppc32_linux_pmuregset): New globals.
1986         (ppc_linux_iterate_over_regset_sections): Call back with the ebb
1987         and pmu regsets.
1988         (ppc_linux_core_read_description): Check if the pmu section is
1989         present and set isa207 in the features struct.
1990         * ppc-linux-tdep.h (ppc32_linux_ebbregset)
1991         (ppc32_linux_pmuregset): Declare.
1992         * ppc-tdep.h (struct gdbarch_tdep) <ppc_mmcr0_regnum>: New field.
1993         <ppc_mmcr2_regnum, ppc_siar_regnum, ppc_sdar_regnum>: New fields.
1994         <ppc_sier_regnum>: New field.
1995         (enum): <PPC_BESCR_REGNUM, PPC_EBBHR_REGNUM, PPC_EBBRR_REGNUM>:
1996         New enum values.
1997         <PPC_MMCR0_REGNUM, PPC_MMCR2_REGNUM, PPC_SIAR_REGNUM>: New enum
1998         values.
1999         <PPC_SDAR_REGNUM, PPC_SIER_REGNUM>: New enum values.
2000         (PPC_IS_EBB_REGNUM, PPC_IS_PMU_REGNUM): Define.
2001         * rs6000-tdep.c (rs6000_gdbarch_init): Look for and validate the
2002         ebb and pmu features.
2003
2004 2018-10-26  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
2005             Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
2006
2007         * arch/ppc-linux-tdesc.h (tdesc_powerpc_isa207_vsx32l)
2008         (tdesc_powerpc_isa207_vsx64l): Declare.
2009         * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_TARREGSET): Define.
2010         (struct ppc_linux_features) <isa207>: New field.
2011         (ppc_linux_no_features): Add initializer for isa207 field.
2012         * arch/ppc-linux-common.c (ppc_linux_match_description): Return
2013         new tdescs.
2014         * nat/ppc-linux.h (PPC_FEATURE2_ARCH_2_07, PPC_FEATURE2_TAR)
2015         (NT_PPC_TAR): Define if not already defined.
2016         * features/Makefile (WHICH): Add rs6000/powerpc-isa207-vsx32l and
2017         rs6000/powerpc-isa207-vsx64l.
2018         (XMLTOC): Add rs6000/powerpc-isa207-vsx32l.xml and
2019         rs6000/powerpc-isa207-vsx64l.xml.
2020         * features/rs6000/power-tar.xml: New file.
2021         * features/rs6000/powerpc-isa207-vsx32l.xml: New file.
2022         * features/rs6000/powerpc-isa207-vsx64l.xml: New file.
2023         * features/rs6000/powerpc-isa207-vsx32l.c: Generate.
2024         * features/rs6000/powerpc-isa207-vsx64l.c: Generate.
2025         * regformats/rs6000/powerpc-isa207-vsx32l.dat: Generate.
2026         * regformats/rs6000/powerpc-isa207-vsx64l.dat: Generate.
2027         * ppc-linux-nat.c (fetch_register, fetch_ppc_registers): Call
2028         fetch_regset with the TAR regset.
2029         (store_register, store_ppc_registers): Call store_regset with the
2030         TAR regset.
2031         (ppc_linux_nat_target::read_description): Set isa207 field in the
2032         features struct if needed.
2033         * ppc-linux-tdep.c: Include
2034         features/rs6000/powerpc-isa207-vsx32l.c and
2035         features/rs6000/powerpc-isa207-vsx64l.c.
2036         (ppc32_regmap_tar, ppc32_linux_tarregset): New globals.
2037         (ppc_linux_iterate_over_regset_sections): Call back with the tar
2038         regset.
2039         (ppc_linux_core_read_description): Check if the tar section is
2040         present and set isa207 in the features struct.
2041         (_initialize_ppc_linux_tdep): Call
2042         initialize_tdesc_powerpc_isa207_vsx32l and
2043         initialize_tdesc_powerpc_isa207_vsx64l.
2044         * ppc-linux-tdep.h (ppc32_linux_tarregset): Declare.
2045         * ppc-tdep.h (gdbarch_tdep) <ppc_tar_regnum>: New field.
2046         (enum) <PPC_TAR_REGNUM>: New enum value.
2047         * rs6000-tdep.c (rs6000_gdbarch_init): Look for and validate tar
2048         feature.
2049         (ppc_process_record_op31): Record changes to TAR.
2050
2051 2018-10-26  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
2052             Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
2053
2054         * arch/ppc-linux-tdesc.h (tdesc_powerpc_isa205_ppr_dscr_vsx32l)
2055         (tdesc_powerpc_isa205_ppr_dscr_vsx64l): Declare.
2056         * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_PPRREGSET)
2057         (PPC_LINUX_SIZEOF_DSCRREGSET): Define.
2058         (struct ppc_linux_features) <ppr_dscr>: New field.
2059         (ppc_linux_no_features): Add initializer for ppr_dscr field.
2060         * arch/ppc-linux-common.c (ppc_linux_match_description): Return
2061         new tdescs.
2062         * nat/ppc-linux.h (PPC_FEATURE2_DSCR, NT_PPC_PPR, NT_PPC_DSCR):
2063         Define if not already defined.
2064         * features/Makefile (WHICH): Add
2065         rs6000/powerpc-isa205-ppr-dscr-vsx32l and
2066         rs6000/powerpc-isa205-ppr-dscr-vsx64l.
2067         (XMLTOC): Add rs6000/powerpc-isa205-ppr-dscr-vsx32l.xml and
2068         rs6000/powerpc-isa205-ppr-dscr-vsx64l.xml.
2069         * features/rs6000/power-dscr.xml: New file.
2070         * features/rs6000/power-ppr.xml: New file.
2071         * features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.xml: New file.
2072         * features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.xml: New file.
2073         * features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c: Generate.
2074         * features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c: Generate.
2075         * regformats/rs6000/powerpc-isa205-ppr-dscr-vsx32l.dat: Generate.
2076         * regformats/rs6000/powerpc-isa205-ppr-dscr-vsx64l.dat: Generate.
2077         * ppc-linux-nat.c: Include <sys/uio.h>.
2078         (fetch_regset, store_regset, check_regset): New functions.
2079         (fetch_register, fetch_ppc_registers): Call fetch_regset with
2080         DSCR and PPR regsets.
2081         (store_register, store_ppc_registers): Call store_regset with
2082         DSCR and PPR regsets.
2083         (ppc_linux_get_hwcap2): New function.
2084         (ppc_linux_nat_target::read_description): Call
2085         ppc_linux_get_hwcap2 and check_regset, set ppr_dscr field in the
2086         features struct if needed.
2087         * ppc-linux-tdep.c: Include
2088         features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c and
2089         features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c.
2090         (ppc32_regmap_ppr, ppc32_regmap_dscr, ppc32_linux_pprregset)
2091         (ppc32_linux_dscrregset): New globals.
2092         (ppc_linux_iterate_over_regset_sections): Call back with the ppr
2093         and dscr regsets.
2094         (ppc_linux_core_read_description): Check if the ppr and dscr
2095         sections are present and set ppr_dscr in the features struct.
2096         (_initialize_ppc_linux_tdep): Call
2097         initialize_tdesc_powerpc_isa205_ppr_dscr_vsx32l and
2098         initialize_tdesc_powerpc_isa205_ppr_dscr_vsx64l.
2099         * ppc-linux-tdep.h (ppc32_linux_pprregset)
2100         (ppc32_linux_dscrregset): Declare.
2101         * ppc-tdep.h (struct gdbarch_tdep) <ppc_ppr_regnum>: New field.
2102         <ppc_dscr_regnum>: New field.
2103         (enum) <PPC_PPR_REGNUM, PPC_DSCR_REGNUM>: New enum values.
2104         * rs6000-tdep.c (rs6000_gdbarch_init): Look for and validate ppr
2105         and dscr features.
2106         (ppc_process_record_op31): Record changes to PPR and DSCR.
2107
2108 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
2109
2110         * rs6000-tdep.c (rs6000_gdbarch_init): Replace line wrapping by a
2111         second initializer line for the have_* variables.  Initialize
2112         have_fpu to 0 instead of 1.
2113
2114 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
2115
2116         * arch/ppc-linux-common.c (ppc_linux_match_description):
2117         Parenthesize tdesc assignements and indent them properly.
2118
2119 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
2120
2121         * ppc-linux-nat.c (fetch_register): Change if statement to else
2122         if.
2123         (store_register): Likewise.
2124
2125 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
2126
2127         * rs6000-tdep.c: Remove reggroups.h include.
2128         (rs6000_pseudo_register_reggroup_p): Remove.
2129         (rs6000_gdbarch_init): Remove call to
2130         set_tdesc_pseudo_register_reggroup_p.
2131
2132 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
2133
2134         * reggroups.c (default_register_reggroup_p): Return true for
2135         decfloat registers and float_reggroup.
2136
2137 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
2138
2139         * ppc-linux-tdep.c (ppc_linux_collect_vrregset): Remove.
2140         (ppc32_le_linux_vrregset, ppc32_be_linux_vrregset): Replace
2141         ppc_linux_collect_vrregset by regcache_collect_regset.
2142
2143 2018-10-26  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
2144
2145         * linux-tdep.c (linux_collect_regset_section_cb): Use
2146         std::vector<gdb_byte> instead of char * and malloc for buf.
2147         Remove xfree.
2148
2149 2018-10-26  Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
2150
2151         * xcoffread.c (read_xcoff_symtab): Pass deduced language to
2152         symtab_start instead of always using language_unknown.
2153
2154 2018-10-26  Andrew Burgess  <andrew.burgess@embecosm.com>
2155
2156         * riscv-tdep.c (riscv_read_misa_reg): Update comment, remove
2157         READ_P parameter, catch and ignore register access errors from
2158         either the old or new MISA location.
2159         (riscv_has_feature): Update call to riscv_read_misa_reg.
2160
2161 2018-10-25  Andrew Burgess  <andrew.burgess@embecosm.com>
2162
2163         * python/py-function.c (convert_values_to_python): Return
2164         gdbpy_ref<>.  Add header comment.
2165         (fnpy_call): Adjust.
2166
2167 2018-10-25  Andrew Burgess  <andrew.burgess@embecosm.com>
2168
2169         * python/py-cmd.c (cmdpy_completer_helper): Return gdbpy_ref<>.
2170         (cmdpy_completer_handle_brkchars): Adjust.
2171         (cmdpy_completer): Adjust.
2172
2173 2018-10-25  Andrew Burgess  <andrew.burgess@embecosm.com>
2174
2175         * riscv-linux-nat.c (riscv_linux_nat_target::fetch_registers):
2176         Pass correct regnum to raw_supply_zeroed.
2177
2178 2018-10-23  Hafiz Abid Qadeer  <abidh@codesourcery.com>
2179
2180         * regcache.c (cooked_read_test): Add CSKY to the list of
2181         architectures with a save_reggroup
2182
2183 2018-10-23  Simon Marchi  <simon.marchi@polymtl.ca>
2184
2185         PR gdb/23368
2186         * infrun.c (follow_exec): In the follow_exec_mode_new case,
2187         transfer terminal state from old new new inferior.
2188         * terminal.h (swap_terminal_info): New function.
2189         * inflow.c (swap_terminal_info): New function.
2190
2191 2018-10-23  Tom Tromey  <tom@tromey.com>
2192
2193         * record-btrace.c (get_thread_current_frame_id): Rename from
2194         get_thread_current_frame.  Return a frame_id.
2195         (record_btrace_start_replaying): Update.
2196
2197 2018-10-23  Andrew Burgess  <andrew.burgess@embecosm.com>
2198
2199         * riscv-tdep.c (riscv_register_name): Use the user-friendly names
2200         for CSRs.
2201
2202 2018-10-23  Joel Brobecker  <brobecker@adacore.com>
2203
2204         * riscv-tdep.c (riscv_gdbarch_init): Set the gdbarch's
2205         have_nonsteppable_watchpoint attribute to 1.
2206
2207 2018-10-23  Andrew Burgess  <andrew.burgess@embecosm.com>
2208
2209         * riscv-tdep.c (riscv_gdb_reg_names): Update comment, and all
2210         register names.
2211         (struct register_alias): Rename to...
2212         (struct riscv_register_alias): ...this, and update comment.
2213         (riscv_register_aliases): Update type, and alias names.  Remove
2214         CSR names from this list.
2215         (riscv_register_name): Use riscv_gdb_reg_names for int and float
2216         register names.  Add an extra assertion.
2217         (riscv_is_regnum_a_named_csr): New function.
2218         (riscv_register_reggroup_p): Use riscv_is_regnum_a_named_csr.
2219
2220 2018-10-23  John Darrington  <john@darrington.wattle.id.au>
2221
2222         * configure.tgt: Add configuration for s12z.
2223         * s12z-tdep.c:  New file.
2224         * NEWS: Mention new target.
2225
2226 2018-10-22  Jim Wilson  <jimw@sifive.com>
2227
2228         * riscv-tdep.c (riscv_push_dummy_call) <in_reg>: Check for value in
2229         FP reg smaller than FP reg size, and fill with -1 instead of 0.
2230
2231         * riscv-tdep.c (riscv_fpreg_d_type, riscv_fpreg_q_type): New.
2232         (riscv_register_type): Use them.
2233         (riscv_print_one_register_info): Handle union of floats same as float.
2234         * riscv-tdep.h (struct gdbarch_tdep): Add riscv_fpreg_d_type and
2235         riscv_fpreg_q_type fields.
2236
2237 2018-10-21  Simon Marchi  <simon.marchi@ericsson.com>
2238
2239         * gdbarch.sh (gdbarch_num_cooked_regs): New.
2240         * gdbarch.h: Re-generate.
2241         * ax-gdb.c (gen_expr): Use gdbarch_num_cooked_regs.
2242         * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
2243         * eval.c (evaluate_subexp_standard): Likewise.
2244         * findvar.c (value_of_register): Likewise.
2245         (value_of_register_lazy): Likewise.
2246         (address_from_register): Likewise.
2247         * frame.c (get_frame_register_bytes): Likewise.
2248         * gdbarch-selftests.c (register_to_value_test): Likewise.
2249         * h8300-tdep.c (h8300_register_type): Likewise.
2250         * i386-tdep.c (i386_dbx_reg_to_regnum): Likewise.
2251         (i386_svr4_reg_to_regnum): Likewise.
2252         * infcmd.c (default_print_registers_info): Likewise.
2253         (registers_info): Likewise.
2254         (print_vector_info): Likewise.
2255         (default_print_float_info): Likewise.
2256         * m68hc11-tdep.c (m68hc11_frame_unwind_cache): Likewise.
2257         * mdebugread.c (mdebug_reg_to_regnum): Likewise.
2258         * mi/mi-main.c (mi_cmd_data_list_register_names): Likewise.
2259         (mi_cmd_data_list_changed_registers): Likewise.
2260         (mi_cmd_data_list_register_values): Likewise.
2261         (mi_cmd_data_write_register_values): Likewise.
2262         (mi_cmd_trace_frame_collected): Likewise.
2263         * mips-tdep.c (print_gp_register_row): Likewise.
2264         (mips_print_registers_info): Likewise.
2265         * nds32-tdep.c (nds32_gdbarch_init): Likewise.
2266         * regcache.c (init_regcache_descr): Likewise.
2267         (register_size): Likewise.
2268         (register_dump::dump): Likewise.
2269         (cooked_read_test): Likewise.
2270         (cooked_write_test): Likewise.
2271         * rs6000-tdep.c (rs6000_register_sim_regno): Likewise.
2272         (rs6000_gdbarch_init): Likewise.
2273         * stabsread.c (stab_reg_to_regnum): Likewise.
2274         * stack.c (info_frame_command): Likewise.
2275         * target-descriptions.c (tdesc_register_name): Likewise.
2276         * trad-frame.c (trad_frame_alloc_saved_regs): Likewise.
2277         * tui/tui-regs.c (tui_show_register_group): Likewise.
2278         * user-regs.c (user_reg_map_name_to_regnum): Likewise.
2279         (user_reg_map_regnum_to_name): Likewise.
2280         (value_of_user_reg): Likewise.
2281         (maintenance_print_user_registers): Likewise.
2282         * xtensa-tdep.c (xtensa_find_register_by_name): Likewise.
2283         (xtensa_register_name): Likewise.
2284         (xtensa_register_type): Likewise.
2285         (xtensa_reg_to_regnum): Likewise.
2286         (xtensa_pseudo_register_read): Likewise.
2287         (xtensa_pseudo_register_write): Likewise.
2288
2289 2018-10-21  Simon Marchi  <simon.marchi@polymtl.ca>
2290
2291         * amd64-tdep.c (amd64_pseudo_register_read_value): Use
2292         correctly-sized buffer with raw_read.
2293         (amd64_pseudo_register_write): Use correctly-sized buffer for
2294         raw_read/raw_write.
2295
2296 2018-10-19  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
2297
2298         * typeprint.c (_initialize_typeprint): Fix wrong prefixname arg
2299         in add_prefix_cmd of set print type.
2300
2301 2018-10-19  Tom Tromey  <tom@tromey.com>
2302
2303         PR tui/18388:
2304         * NEWS: Mention tabset deprecation.
2305         * tui/tui-win.c (tui_tab_width, internal_tab_width): New globals.
2306         (update_tab_width): New function.
2307         (tui_set_tab_width, tui_show_tab_width): New functions.
2308         (tui_set_tab_width_command): Use update_tab_width.
2309         (_initialize_tui_win): Move to end of file.  Deprecate "tabset".
2310         Add new "set tui tab-width" command.
2311         * tui/tui-source.c (tui_set_source_content): Update.
2312         * tui/tui-disasm.c (tui_set_disassem_content): Update.
2313         * tui/tui-data.h (tui_default_tab_len, tui_set_default_tab_len):
2314         Don't declare.
2315         (tui_tab_width): Declare.
2316         * tui/tui-data.c (default_tab_len, tui_default_tab_len)
2317         (tui_set_default_tab_len): Remove.
2318
2319 2018-10-19  Tom Tromey  <tom@tromey.com>
2320
2321         * tui/tui-io.h (key_is_start_sequence, key_is_end_sequence)
2322         (key_is_backspace, tui_getc): Don't declare.
2323         * tui/tui-io.c (key_is_start_sequence): Now static.
2324         (key_is_end_sequence, key_is_backspace): Remove.
2325         (tui_getc): Now static.
2326
2327 2018-10-19  Tom Tromey  <tom@tromey.com>
2328
2329         * symfile.c (reread_symbols): Clear "static_links".
2330
2331 2018-10-19  Alan Hayward  <alan.hayward@arm.com>
2332
2333         * aarch64-linux-tdep.c (AARCH64_SIGCONTEXT_RESERVED_SIZE): New
2334         define.
2335         (aarch64_linux_sigframe_init): Extra boundary checks.
2336
2337 2018-10-19  Andreas Arnez  <arnez@linux.ibm.com>
2338
2339         * s390-tdep.c (s390_pseudo_register_type): For v0-v15 don't yield
2340         the possibly non-existent tdesc type 'vec128', but the type of raw
2341         register v16 instead.
2342
2343 2018-10-19  Gary Benson <gbenson@redhat.com>
2344
2345         * cli/cli-interp.c (cli_interp::~cli_interp): New function.
2346
2347 2018-10-18  Sergio Durigan Junior  <sergiodj@redhat.com>
2348
2349         PR cli/23785
2350         * cli/cli-dump.c (restore_binary_file): Check if "file" is
2351         NULL.
2352
2353 2018-10-17  Paul Koning  <paul_koning@dell.com>
2354
2355         * charset.c (convert_between_encodings): Fix unsigned overflow.
2356
2357 2018-10-17  John Baldwin  <jhb@FreeBSD.org>
2358
2359         * fbsd-nat.c (fbsd_nat_target::info_proc) Use
2360         fbsd_info_proc_mappings_header and fbsd_info_proc_mappings_entry.
2361         * fbsd-tdep.c (fbsd_vm_map_entry_flags): Mark static.
2362         (fbsd_info_proc_mappings_header, fbsd_info_proc_mappings_entry):
2363         New functions.
2364         (fbsd_core_info_proc_mappings): Use fbsd_info_proc_mappings_header
2365         and fbsd_info_proc_mappings_header.
2366         * fbsd-tdep.h (fbsd_vm_map_entry_flags): Remove.
2367         (fbsd_info_proc_mappings_header, fbsd_info_proc_mappings_entry):
2368         New.
2369
2370 2018-10-17  Joel Brobecker  <brobecker@adacore.com>
2371
2372         * MAINTAINERS (Responsible Maintainers): Add Rainer Orth as
2373         Solaris Maintainer.
2374
2375 2018-10-15  Tom Tromey  <tom@tromey.com>
2376
2377         * tui/tui.c (strcat_to_buf): Remove casts.
2378         * tui/tui-winsource.c (tui_show_source_line)
2379         (tui_set_is_exec_point_at, tui_line_is_displayed): Remove casts.
2380         * tui/tui-wingeneral.c (tui_refresh_win, box_win): Remove casts.
2381         * tui/tui-windata.c (tui_first_data_item_displayed)
2382         (tui_delete_data_content_windows, tui_erase_data_content)
2383         (tui_display_all_data, tui_display_data_from)
2384         (tui_refresh_data_win, tui_vertical_data_scroll): Remove casts.
2385         * tui/tui-win.c (tui_set_win_height)
2386         (make_invisible_and_set_new_height, parse_scrolling_args): Remove
2387         casts.
2388         * tui/tui-win.c (tui_resize_all): Remove casts.
2389         (tui_scroll_backward_command, tui_set_focus)
2390         (tui_set_tab_width_command): Likewise.
2391         * tui/tui-source.c (tui_vertical_source_scroll): Remove cast.
2392         * tui/tui-regs.c (tui_show_register_group): Remove cast.
2393         * tui/tui-layout.c (tui_set_layout_by_name): Remove cast.
2394         * tui/tui-disasm.c (tui_vertical_disassem_scroll): Remove cast.
2395         * tui/tui-data.c (tui_partial_win_by_name, tui_free_win_content):
2396         Remove casts.
2397
2398 2018-10-15  Simon Marchi  <simon.marchi@ericsson.com>
2399
2400         * MAINTAINERS (Responsible Maintainers): Add Alan Hayward as
2401         AArch64/ARM maintainer.
2402
2403 2018-10-11  Gary Benson <gbenson@redhat.com>
2404
2405         * interps.h (interp::m_name): Make private and mutable.
2406         * interps.c (interp::~interp): Free m_name.
2407
2408 2018-10-10  Sergio Durigan Junior  <sergiodj@redhat.com>
2409             Simon Marchi <simark@simark.ca>
2410
2411         * README (`configure' options): Add documentation for new
2412         "--enable-unit-tests" option.
2413         * acinclude.m4: Include "selftest.m4".
2414         * configure: Regenerate.
2415         * configure.ac: Use "GDB_AC_SELFTEST".
2416         * maint.c (maintenance_selftest): Update message informing
2417         that selftests have been disabled.
2418         (maintenance_info_selftests): Likewise.
2419         * selftest.m4: New file.
2420
2421 2018-10-10  Gary Benson <gbenson@redhat.com>
2422
2423         * remote.c (remote_target::remote_send_printf): Add
2424         missing va_end found by Coverity.
2425
2426 2018-10-10  Markus Metzger  <markus.t.metzger@intel.com>
2427
2428         * btrace.c (ftrace_update_function): Add indirect jump heuristic.
2429
2430 2018-10-09  Tom Tromey  <tom@tromey.com>
2431
2432         * configure: Rebuild.
2433         * sanitize.m4 (AM_GDB_UBSAN): Default to no.
2434         * NEWS: Update --enable-ubsan documentation.
2435
2436 2018-10-09  Gary Benson <gbenson@redhat.com>
2437
2438         * dwarf2read.c (create_dwp_hash_table): Fix buffer overrun
2439         found by Coverity.
2440
2441 2018-10-08  Tom Tromey  <tom@tromey.com>
2442
2443         * riscv-fbsd-tdep.c (riscv_fbsd_sigframe_init): Remove unused
2444         variable.
2445         (riscv_fbsd_init_abi): Likewise.
2446
2447 2018-10-08  Weimin Pan  <weimin.pan@oracle.com>
2448         * valops.c (value_struct_elt_for_reference): Rename local variable
2449         to work around the shadowing a previous local warning.
2450
2451 2018-10-08  John Baldwin  <jhb@FreeBSD.org>
2452
2453         * Makefile.in (ALLDEPFILES): Add riscv-fbsd-nat.c.
2454         * NEWS: Mention new FreeBSD/riscv native configuration.
2455         * configure.host: Add riscv*-*-freebsd*.
2456         * configure.nat: Likewise.
2457         * riscv-fbsd-nat.c: New file.
2458
2459 2018-10-08  John Baldwin  <jhb@FreeBSD.org>
2460
2461         * Makefile.in (ALL_TARGET_OBS): Add riscv-fbsd-tdep.o.
2462         (HFILES_NO_SRCDIR): Add riscv-fbsd-tdep.h.
2463         (ALLDEPFILES): Add riscv-fbsd-tdep.c.
2464         * NEWS: Mention new FreeBSD/riscv target.
2465         * configure.tgt: Add riscv*-*-freebsd*.
2466         * riscv-fbsd-tdep.c: New file.
2467         * riscv-fbsd-tdep.h: New file.
2468
2469 2018-10-08  John Baldwin  <jhb@FreeBSD.org>
2470
2471         * regcache.h (struct regcache_map_entry): Note that this type can
2472         be used with traditional frame caches.
2473         * trad-frame.c (trad_frame_set_reg_regmap): New.
2474         * trad-frame.h (trad_frame_set_reg_regmap): New.
2475
2476 2018-10-08  Weimin Pan  <weimin.pan@oracle.com>
2477
2478         PR c++/16841
2479         * valops.c (get_virtual_base_offset): New function.
2480         (value_struct_elt_for_reference): Use it to get virtual base offset
2481         and add it in calculating class member address.
2482
2483 2018-10-08  John Darrington  <john@darrington.wattle.id.au>
2484
2485         * dwarf2read.c (dwarf2_cu) <producer_is_codewarrior>: New field.
2486         (check_producer): Check if the producer is codewarrior.
2487         (producer_is_codewarrior): New function.
2488         (lnp_state_machine::record_line): Ignore is_stmt flag for records
2489         produced by codewarrior.
2490         (dwarf2_cu::dwarf2_cu): Initialize producer_is_codewarrior.
2491
2492 2018-10-06  Tom Tromey  <tom@tromey.com>
2493
2494         PR python/19399:
2495         * python/py-inferior.c: Add "architecture" entry.
2496         (infpy_architecture): New function.
2497
2498 2018-10-06  Tom Tromey  <tom@tromey.com>
2499
2500         PR python/21765:
2501         * python/py-symbol.c (gdbpy_initialize_symbols): Redefine
2502         SYMBOL_VARIABLES_DOMAIN, SYMBOL_FUNCTIONS_DOMAIN,
2503         SYMBOL_TYPES_DOMAIN.  Define SYMBOL_MODULE_DOMAIN,
2504         SYMBOL_COMMON_BLOCK_DOMAIN, SYMBOL_LOC_COMMON_BLOCK.
2505
2506 2018-10-06  Tom Tromey  <tom@tromey.com>
2507
2508         PR build/17077:
2509         * Makefile.in (OPCODES_CFLAGS): Remove "-I$(OPCODES_SRC)/..".
2510         * arc-tdep.c, frv-tdep.c, lm32-tdep.c, mep-tdep.c,
2511         microblaze-tdep.c, or1k-tdep.h: Use ../opcodes, not opcodes, in
2512         #include.
2513
2514 2018-10-06  Tom Tromey  <tom@tromey.com>
2515
2516         * python/py-breakpoint.c (bppy_get_location): Handle a
2517         bp_breakpoint without a location.
2518
2519 2018-10-06  Tom Tromey  <tom@tromey.com>
2520
2521         * python/lib/gdb/function/strfns.py (_MemEq, _StrLen, _StrEq)
2522         (_RegEx): Reformat help text.
2523         * python/lib/gdb/function/caller_is.py (CallerIs, CallerMatches)
2524         (AnyCallerIs, AnyCallerMatches): Reformat help text.
2525         * python/lib/gdb/function/as_string.py (_AsString): Reformat help
2526         text.
2527         * python/lib/gdb/command/xmethods.py (InfoXMethod)
2528         (EnableXMethod, DisableXMethod): Remove help indentation.
2529         Capitalize meta-syntactic variables.
2530         * python/lib/gdb/command/unwinders.py (InfoUnwinder)
2531         (EnableUnwinder, DisableUnwinder): Remove help indentation.
2532         Capitalize meta-syntactic variables.
2533         * python/lib/gdb/command/explore.py (ExploreCommand)
2534         (ExploreValueCommand, ExploreTypeCommand): Reformat help text.
2535         * python/lib/gdb/command/type_printers.py (InfoTypePrinter)
2536         (EnableTypePrinter, DisableTypePrinter): Remove help indentation.
2537         * python/lib/gdb/command/pretty_printers.py (InfoPrettyPrinter):
2538         Remove help indentation.
2539         (EnablePrettyPrinter, DisablePrettyPrinter): Likewise.
2540         * python/lib/gdb/command/frame_filters.py (EnableFrameFilter)
2541         (DisableFrameFilter, SetFrameFilterPriority)
2542         (ShowFrameFilterPriority, InfoFrameFilter): Reword help text.
2543
2544 2018-10-06  Tom Tromey  <tom@tromey.com>
2545
2546         PR tui/28819:
2547         * tui/tui-io.c (gdb_wgetch): New function.
2548         (tui_mld_getc, tui_getc): Use it.
2549
2550 2018-10-05  Tom Tromey  <tom@tromey.com>
2551
2552         * sol-thread.c (sol_thread_target::wait): Rename inner
2553         "save_ptid".
2554
2555 2018-10-04  Tom Tromey  <tom@tromey.com>
2556
2557         * configure: Rebuild.
2558         * warning.m4 (AM_GDB_WARNINGS): Add -Wshadow=local.
2559
2560 2018-10-04  Tom Tromey  <tom@tromey.com>
2561
2562         * guile/scm-frame.c (gdbscm_frame_read_var): Remove inner
2563         declaration of "block".
2564
2565 2018-10-04  Tom Tromey  <tom@tromey.com>
2566
2567         * common/filestuff.c (fdwalk): Remove inner declaration of
2568         "result".
2569
2570 2018-10-04  Tom Tromey  <tom@tromey.com>
2571
2572         * msp430-tdep.c (msp430_push_dummy_call): Rename inner
2573         "structs_addr" and hoist declaration.
2574
2575 2018-10-04  Tom Tromey  <tom@tromey.com>
2576
2577         * linux-tdep.c (linux_make_mappings_corefile_notes): Introduce new
2578         variable "size".
2579
2580 2018-10-04  Tom Tromey  <tom@tromey.com>
2581
2582         * mdebugread.c (parse_partial_symbols): Use std::string.
2583
2584 2018-10-04  Tom Tromey  <tom@tromey.com>
2585
2586         * ctf.c (SET_ARRAY_FIELD): Rename "u32".
2587         * p-valprint.c (pascal_val_print): Split inner "i" variable.
2588         * xtensa-tdep.c (xtensa_push_dummy_call): Declare "i" in loop
2589         header.
2590         * xstormy16-tdep.c (xstormy16_push_dummy_call): Declare "val" in
2591         more inner scope.
2592         * xcoffread.c (read_xcoff_symtab): Rename inner "symbol".
2593         * varobj.c (varobj_update): Rename inner "newobj",
2594         "type_changed".
2595         * valprint.c (generic_emit_char): Rename inner "buf".
2596         * valops.c (find_overload_match): Rename inner "temp".
2597         (value_struct_elt_for_reference): Declare "v" in more inner
2598         scope.
2599         * v850-tdep.c (v850_push_dummy_call): Rename "len".
2600         * unittests/array-view-selftests.c (run_tests): Rename inner
2601         "vec".
2602         * tui/tui-stack.c (tui_show_frame_info): Declare "i" in loop
2603         header.
2604         * tracepoint.c (merge_uploaded_trace_state_variables): Declare
2605         "tsv" in more inner scope.
2606         (print_one_static_tracepoint_marker): Rename inner
2607         "tuple_emitter".
2608         * tic6x-tdep.c (tic6x_analyze_prologue): Declare "inst" lower.
2609         (tic6x_push_dummy_call): Don't redeclare "addr".
2610         * target-float.c: Declare "dto" lower.
2611         * symtab.c (lookup_local_symbol): Rename inner "sym".
2612         (find_pc_sect_line): Rename inner "pc".
2613         * stack.c (print_frame): Don't redeclare "gdbarch".
2614         (return_command): Rename inner "gdbarch".
2615         * s390-tdep.c (s390_prologue_frame_unwind_cache): Renam inner
2616         "sp".
2617         * rust-lang.c (rust_internal_print_type): Declare "i" in loop
2618         header.
2619         * rs6000-tdep.c (ppc_process_record): Rename inner "addr".
2620         * riscv-tdep.c (riscv_push_dummy_call): Declare "info" in inner
2621         scope.
2622         * remote.c (remote_target::update_thread_list): Don't redeclare
2623         "tp".
2624         (remote_target::process_initial_stop_replies): Rename inner
2625         "thread".
2626         (remote_target::remote_parse_stop_reply): Don't redeclare "p".
2627         (remote_target::wait_as): Don't redeclare "stop_reply".
2628         (remote_target::get_thread_local_address): Rename inner
2629         "result".
2630         (remote_target::get_tib_address): Likewise.
2631
2632         * regcache.c (cooked_read_test): Rename "regnum".
2633         * record-btrace.c (cmd_record_btrace_start): Rename inner
2634         "exception".
2635         * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Declare "i" in
2636         loop header.
2637         * ppc-linux-tdep.c (ppc_linux_syscall_record): Declare "i" in loop
2638         header.
2639         (ppu2spu_sniffer): Rename inner "buf".
2640         * parse.c (operator_check_standard): Rename inner "type",
2641         "objfile".
2642         * p-valprint.c (pascal_val_print): Introduce new scope for
2643         "low_bound", "high_bound".
2644         * p-exp.y (yylex): Declare "i" in loop header.
2645         * objfiles.c (objfile_relocate1): Declare "i" in loop header.
2646         Lower declaration of "s".
2647         * nios2-tdep.c (nios2_analyze_prologue): Declare "i" in loop
2648         header.
2649         (nios2_push_dummy_call): Rename "len".
2650         * nat/linux-osdata.c (linux_xfer_osdata_cpus): Rename static
2651         "buf".
2652         (linux_xfer_osdata_fds, linux_xfer_osdata_shm)
2653         (linux_xfer_osdata_sem, linux_xfer_osdata_msg)
2654         (linux_xfer_osdata_modules): Likewise.
2655         * mips-tdep.c (mips_eabi_push_dummy_call): Rename outer "len".
2656         (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
2657         (mips_o64_push_dummy_call): Likewise.
2658         * microblaze-tdep.c (microblaze_analyze_prologue): Rename inner
2659         "op".
2660         * mi/mi-main.c (list_available_thread_groups): Rename inner
2661         "tuple_emitter".
2662         (mi_cmd_data_read_memory): Rename inner "opts".
2663         * mi/mi-cmd-var.c (varobj_update_one): Rename inner
2664         "tuple_emitter".
2665         * mep-tdep.c (mep_analyze_prologue): Declare "rn" in loop header.
2666         * mdebugread.c (parse_symbol): Rename inner "b".  Declare "f" in
2667         more inner scope.
2668         (parse_partial_symbols): Rename inner "pst", "p", "name"
2669         * main.c (captured_main_1): Rename inner "i"s.
2670         * machoread.c (macho_symfile_read_all_oso): Don't redeclare
2671         "oso2".
2672         * linux-tdep.c (linux_info_proc): Rename inner "filename".
2673         * linespec.c (linespec_lexer_lex_string): Rename inner "p".
2674         * infrun.c (handle_no_resumed): Don't redeclare "thread".
2675         (handle_signal_stop): Rename inner "gdbarch".
2676         (handle_command): Declare "signum" in loop header.
2677         * ia64-tdep.c (ia64_pseudo_register_read): Don't redeclare
2678         "status".
2679         (examine_prologue): Rename inner "sol" and "sof".
2680         (ia64_extract_return_value): Rename inner "val".  Declare another
2681         "val" in a more inner scope.
2682         * hppa-bsd-tdep.c (hppabsd_find_global_pointer): Declare "buf" in
2683         inner scope.
2684         * guile/scm-symbol.c (gdbscm_lookup_symbol): Rename inner
2685         "except".
2686         * findvar.c (default_read_var_value): Don't redeclare "addr".
2687         * f-exp.y (yylex): Declare "i" in loop header.
2688         * eval.c (evaluate_subexp_standard): Don't redeclare "type".
2689         Rename inner "type", "expect_type".
2690         (evaluate_subexp_for_sizeof): Rename inner "pc".
2691         * elfread.c (elf_symfile_read): Rename inner "abfd".
2692         * dwarf2read.c (read_debug_names_from_section): Don't redeclare
2693         "bytes_read".
2694         (process_psymtab_comp_unit_reader): Don't redeclare "gdbarch".
2695         (add_partial_subprogram): Rename inner "lowpc" and "highpc".
2696         (dwarf_decode_line_header): Rename inner "lh".
2697         * dwarf2loc.c (dwarf2_compile_expr_to_ax): Don't redeclare
2698         "offset".  Declare "i" in loop header.
2699         (disassemble_dwarf_expression): Rename inner "addr_size".
2700         * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Rename
2701         inner "result".
2702         (dwarf_expr_context::execute_stack_op): Rename inner "offset".
2703         * dwarf2-frame.c (decode_frame_entry_1): Rename inner "length"s.
2704         * disasm.c (do_mixed_source_and_assembly_deprecated): Rename inner
2705         "inner_list_emitter".
2706         (do_mixed_source_and_assembly): Rename inner "tuple_emitter".
2707         * disasm-selftests.c (print_one_insn_test): Wrap "bplen"
2708         declaration in a block.
2709         * csky-tdep.c (csky_analyze_prologue): Declare "offset" lower.
2710         * cp-valprint.c (cp_print_value_fields): Don't redeclare
2711         "obstack_final_size".
2712         * cp-support.c (inspect_type): Declare "i" in loop header.
2713         * compile/compile.c (compile_instance::insert_symbol_error):
2714         Rename inner "e".
2715         * common/agent.c (agent_run_command): Remove inner "ret"
2716         declaration.
2717         * coffread.c (coff_symfile_read): Rename inner "name".
2718         (coff_symfile_read): Rename inner "abfd".
2719         * cli/cli-utils.c (get_number_trailer): Rename inner "val".
2720         * cli/cli-cmds.c (print_disassembly): Rename inner "low" and
2721         "high".
2722         * c-exp.y (lex_one_token): Move "len" declaration lower.
2723         * breakpoint.c (create_longjmp_master_breakpoint): Don't redeclare
2724         "gdbarch".
2725         (create_exception_master_breakpoint): Likewise.  Don't redeclare
2726         "b".
2727         (watch_command_1): Declare "mark" later.
2728         (clear_command): Don't shadow "a" or "b".
2729         (delete_command): Rename inner "b".
2730         (delete_trace_command): Likewise.
2731         * arm-tdep.c (thumb_process_displaced_32bit_insn): Rename inner
2732         "op".
2733         (arm_gdbarch_init): Remove inner "e_flags".
2734         * arch/arm-get-next-pcs.c (thumb_get_next_pcs_raw): Declare
2735         "offset" in inner blocks.
2736
2737 2018-10-04  Simon Marchi  <simon.marchi@ericsson.com>
2738
2739         * dwarf-index-write.c (file_write): Don't write if the vector is
2740         empty.
2741
2742 2018-10-05  Tom de Vries  <tdevries@suse.de>
2743
2744         * python/py-progspace.c (pspy_solib_name): Fix type mismatch in
2745         PyArg_ParseTuple call.
2746
2747 2018-10-05  Tom de Vries  <tdevries@suse.de>
2748
2749         * python/py-record-btrace.c (recpy_bt_goto): Fix type mismatch in
2750         PyArg_ParseTuple call.
2751
2752 2018-10-04  Joel Brobecker  <brobecker@adacore.com>
2753
2754         * psymtab.c (recursively_search_psymtabs): Reformat parameters
2755         to avoid exceeding 80 characters per line limit.
2756
2757 2018-10-04  Tom Tromey  <tom@tromey.com>
2758
2759         * symfile.c (syms_from_objfile_1, finish_new_objfile)
2760         (reread_symbols): Update.
2761         * complaints.h (clear_complaints): Remove argument.
2762         * complaints.c (enum complaint_series): Remove.
2763         (series): Remove global.
2764         (complaint_internal): Update.
2765         (clear_complaints): Remove argument.
2766
2767 2018-10-04  Tom Tromey  <tom@tromey.com>
2768
2769         * symfile.c (symbol_file_add_with_addrs): Do not print "no
2770         debugging symbols" message if there is a separate debug objfile.
2771
2772 2018-10-04  Tom Tromey  <tom@tromey.com>
2773
2774         PR cli/19551:
2775         * symfile.c (symbol_file_add_with_addrs): Update output.
2776         * psymtab.c (require_partial_symbols): Update output.
2777
2778 2018-10-04  Tom Tromey  <tom@tromey.com>
2779
2780         PR cli/22234:
2781         * complaints.c: Emit \n.
2782
2783 2018-10-04  Tom Tromey  <tom@tromey.com>
2784
2785         * symfile.c (symbol_file_add_with_addrs, symbol_file_clear)
2786         (separate_debug_file_exists, find_separate_debug_file)
2787         (add_symbol_file_command, reread_symbols, allocate_symtab)
2788         (allocate_compunit_symtab): Use filtered printing, not
2789         unfiltered.
2790         * psymtab.c (require_partial_symbols, dump_psymtab)
2791         (allocate_psymtab): Use filtered printing, not unfiltered.
2792
2793 2018-10-04  Tom Tromey  <tom@tromey.com>
2794
2795         * complaints.c (complaint_internal): Correctly check complaint
2796         count.
2797
2798 2018-10-04  Tom Tromey  <tom@tromey.com>
2799
2800         * complaints.h (struct complaints): Remove declaration.
2801         * complaints.c (clear_complaints): Remove an unused variable.
2802
2803 2018-10-04  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
2804
2805         * MAINTAINERS (Write After Approval): Add self.
2806
2807 2018-10-03  Tom Tromey  <tom@tromey.com>
2808
2809         * guile/scm-value.c (gdbscm_value_to_string): Initialize
2810         "buffer_contents".
2811         * coffread.c (coff_symtab_read): Initialize "newobj".
2812
2813 2018-10-03  Simon Marchi  <simon.marchi@polymtl.ca>
2814
2815         * dwarf2read.c (read_func_scope): Remove struct keyword in
2816         range-based for.
2817
2818 2018-10-03  Tom Tromey  <tom@tromey.com>
2819
2820         * README: Mention --enable-ubsan.
2821         * NEWS: Mention --enable-ubsan.
2822         * acinclude.m4: Include sanitize.m4.
2823         * configure: Rebuild.
2824         * configure.ac: Call AM_GDB_UBSAN.
2825         * sanitize.m4: New file.
2826
2827 2018-10-03  Tom Tromey  <tom@tromey.com>
2828
2829         * expression.h (enum exp_opcode): Use uint8_t as base type.
2830         * expprint.c (op_name): Handle invalid opcodes.
2831
2832 2018-10-03  Tom Tromey  <tom@tromey.com>
2833
2834         * parse.c (prefixify_expression): Add assert.
2835         (parse_exp_in_context_1): Throw exception if the expression is
2836         empty.
2837
2838 2018-10-03  Tom Tromey  <tom@tromey.com>
2839
2840         * dwarf2read.c (read_signed_leb128): Work in ULONGEST.
2841
2842 2018-10-03  Tom Tromey  <tom@tromey.com>
2843
2844         * c-exp.y (parse_number): Work in unsigned.  Remove casts.
2845
2846 2018-10-03  Tom Tromey  <tom@tromey.com>
2847
2848         * dwarf2read.c (read_subrange_type): Make "negative_mask"
2849         unsigned.
2850
2851 2018-10-03  Tom Tromey  <tom@tromey.com>
2852
2853         * findvar.c (extract_integer): Do work in an unsigned type.
2854
2855 2018-10-03  Tom Tromey  <tom@tromey.com>
2856
2857         * common/enum-flags.h (enum_flags::operator~): Add static assert.
2858         * symfile-add-flags.h (enum symfile_add_flag): Use unsigned as
2859         base type.
2860         * objfile-flags.h (enum objfile_flag): Use unsigned as base type.
2861         * gdbtypes.h (enum type_instance_flag_value): Use unsigned as base
2862         type.
2863         * c-lang.h (enum c_string_type_values): Use unsigned as base
2864         type.
2865         * btrace.h (enum btrace_thread_flag): Use unsigned as base type.
2866
2867 2018-10-03  Tom Tromey  <tom@tromey.com>
2868
2869         * dwarf2-frame.h (dwarf2_frame_state_reg_info)
2870         <~dwarf2_frame_state_reg_info>: Update.
2871         <dwarf2_frame_state_reg_info>: Update.
2872         <alloc_regs>: Add assertion.  Update.
2873         <reg>: Now a std::vector.
2874         <num_regs>: Remove.
2875         <swap>: Update.
2876         * dwarf2-frame.c (dwarf2_restore_rule, execute_cfa_program)
2877         (execute_cfa_program_test, dwarf2_frame_cache): Update.
2878
2879 2018-10-03  Tom Tromey  <tom@tromey.com>
2880
2881         * namespace.c (add_using_directive): Don't pass NULL to memcpy.
2882
2883 2018-10-03  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
2884
2885         * tid-parse.c (tid_is_in_list): Fix wrong 'See' comment.
2886
2887 2018-10-02  Tom Tromey  <tom@tromey.com>
2888
2889         * aarch64-linux-tdep.c (aarch64_linux_sigframe_init): Use pulongest.
2890
2891 2018-10-02  John Darrington  <john@darrington.wattle.id.au>
2892
2893         * NEWS: Mention changed commands.
2894         * ser-uds.c: New file.
2895         * configure.ac (SER_HARDWIRE): Add ser-uds.o.
2896         * configure: Regenerate.
2897         * Makefile.in: Add new file.
2898         * serial.c (serial_open): Check if filename is a socket
2899         and lookup the appropriate interface accordingly.
2900
2901 2018-10-01  Alan Hayward  <alan.hayward@arm.com>
2902
2903         * aarch64-linux-tdep.c (AARCH64_SIGCONTEXT_RESERVED_OFFSET): Add
2904         define.
2905         (AARCH64_EXTRA_MAGIC): Likewise.
2906         (AARCH64_FPSIMD_MAGIC): Likewise.
2907         (AARCH64_SVE_MAGIC): Likewise.
2908         (AARCH64_EXTRA_DATAP_OFFSET): Likewise.
2909         (AARCH64_FPSIMD_FPSR_OFFSET): Likewise.
2910         (AARCH64_FPSIMD_FPCR_OFFSET): Likewise.
2911         (AARCH64_FPSIMD_V0_OFFSET): Likewise.
2912         (AARCH64_FPSIMD_VREG_SIZE): Likewise.
2913         (AARCH64_SVE_CONTEXT_VL_OFFSET): Likewise.
2914         (AARCH64_SVE_CONTEXT_REGS_OFFSET): Likewise.
2915         (AARCH64_SVE_CONTEXT_P_REGS_OFFSET): Likewise.
2916         (AARCH64_SVE_CONTEXT_FFR_OFFSET): Likewise.
2917         (AARCH64_SVE_CONTEXT_SIZE): Likewise.
2918         (read_aarch64_ctx): Add function.
2919         (aarch64_linux_sigframe_init): Detect FP registers.
2920
2921 2018-10-01  Alan Hayward  <alan.hayward@arm.com>
2922
2923         * aarch64-tdep.c (AARCH64_Q0_REGNUM): Move to here.
2924         (AARCH64_D0_REGNUM): Likewise.
2925         (AARCH64_S0_REGNUM): Likewise.
2926         (AARCH64_H0_REGNUM): Likewise.
2927         (AARCH64_B0_REGNUM): Likewise.
2928         (AARCH64_SVE_V0_REGNUM): Likewise.
2929         * arch/aarch64.h (AARCH64_Q0_REGNUM): Move from here.
2930         (AARCH64_D0_REGNUM): Likewise.
2931         (AARCH64_S0_REGNUM): Likewise.
2932         (AARCH64_H0_REGNUM): Likewise.
2933         (AARCH64_B0_REGNUM): Likewise.
2934         (AARCH64_SVE_V0_REGNUM): Likewise.
2935
2936 2018-10-01  Gary Benson <gbenson@redhat.com>
2937
2938         * gdb_proc_service.h (gdb_prfpregset_t): Remove typedef.
2939         * proc-service.c (ps_lgetfpregs, ps_lsetfpregs): Use
2940         prfpregset_t instead of gdb_prfpregset_t.
2941         * configure.ac (PRFPREGSET_T_BROKEN): Remove check.
2942         * configure, config.in: Rebuild.
2943
2944 2018-10-01  Gary Benson <gbenson@redhat.com>
2945
2946         * common/gdb_proc_service.h: New file, factored out from...
2947         * gdb_proc_service.h: Moved common code to the above file.
2948         * Makefile.in (HFILES_NO_SRCDIR): Add the above new file.
2949
2950 2018-10-01  Gary Benson <gbenson@redhat.com>
2951
2952         * gdb_proc_service.h: Use elf_gregset_t if prgregset_t is
2953         undefined.  Use elf_fpregset_t if prfpregset_t is undefined.
2954
2955 2018-10-01  Gary Benson <gbenson@redhat.com>
2956
2957         * configure.ac: Check if sys/procfs.h defines elf_fpregset_t.
2958         (AC_CHECK_HEADERS): Check for linux/elf.h.
2959         * configure, config.in: Rebuild.
2960         * gdb_proc_service.h: Include linux/elf.h if sys/procfs.h
2961         doesn't define elf_fpregset_t.
2962
2963 2018-10-01  Gary Benson <gbenson@redhat.com>
2964
2965         * gdb_proc_service.h: Whitespace change.
2966
2967 2018-10-01  Tom Tromey  <tom@tromey.com>
2968
2969         * unittests/scoped_mmap-selftests.c: Don't check HAVE_UNISTD_H.
2970         * unittests/scoped_fd-selftests.c: Don't check HAVE_UNISTD_H.
2971         * common/scoped_fd.h: Don't check HAVE_UNISTD_H.
2972
2973 2018-10-01  Tom Tromey  <tom@tromey.com>
2974
2975         * README: Minor change.
2976
2977 2018-09-30  Pedro Alves  <palves@redhat.com>
2978
2979         * darwin-nat-info.c (darwin_debug_regions_recurse)
2980         (info_mach_exceptions_command): Remove unused local variables.
2981         * darwin-nat.c (darwin_decode_notify_message)
2982         (darwin_nat_target::resume, darwin_nat_target::mourn_inferior)
2983         (darwin_stop_inferior, darwin_setup_exceptions)
2984         (darwin_nat_target::kill, darwin_attach_pid, darwin_ptrace_him)
2985         (darwin_nat_target::attach, darwin_nat_target::detach)
2986         (darwin_read_write_inferior, darwin_read_dyld_info): Remove unused
2987         local variables.
2988         * i386-darwin-nat.c (i386_darwin_dr_set): Remove unused local
2989         variables.
2990
2991 2018-09-29  Tom Tromey  <tom@tromey.com>
2992
2993         * README: Remove some leftover text.
2994
2995 2018-09-29  Tom Tromey  <tom@tromey.com>
2996
2997         * PROBLEMS: Rewrite.
2998         * README: Update.
2999
3000 2018-09-28  John Baldwin  <jhb@FreeBSD.org>
3001
3002         * disasm-selftests.c (print_one_insn_test): Add bfd_arch_riscv to
3003         case with explicit breakpoint kind.
3004         * riscv-tdep.c (show_use_compressed_breakpoints): Remove
3005         'additional_info' and related logic.
3006         (riscv_debug_breakpoints): New variable.
3007         (riscv_breakpoint_kind_from_pc): Use the length of the existing
3008         instruction to determine the breakpoint kind.
3009         (_initialize_riscv_tdep): Add 'set/show debug riscv breakpoints'
3010         flag.  Update description of 'set/show riscv
3011         use-compressed-breakpoints' flag.
3012
3013 2018-09-28  Andrew Burgess  <andrew.burgess@embecosm.com>
3014
3015         (NEWS): Mention changes to frame related commands.
3016         * cli/cli-decode.c (add_cmd_suppress_notification): New function.
3017         (add_prefix_cmd_suppress_notification): New function.
3018         (add_com_suppress_notification): Call
3019         add_cmd_suppress_notification.
3020         * command.h (add_cmd_suppress_notification): Declare.
3021         (add_prefix_cmd_suppress_notification): Declare.
3022         * mi/mi-cmd-stack.c: Add 'safe-ctype.h' include.
3023         (parse_frame_specification): Moved from stack.c, with
3024         simplification to handle a single argument.
3025         (mi_cmd_stack_select_frame): Use parse_frame_specification, the
3026         switch to the selected frame.  Add a header comment.
3027         * stack.c: Remove 'safe-ctype.h' include.
3028         (find_frame_for_function): Add declaration.
3029         (find_frame_for_address): New function.
3030         (parse_frame_specification): Moved into mi/mi-cmd-stack.c.
3031         (frame_selection_by_function_completer): New function.
3032         (info_frame_command): Rename to...
3033         (info_frame_command_core): ...this, and update parameter types.
3034         (select_frame_command): Rename to...
3035         (select_frame_command_core): ...this, and update parameter types.
3036         (frame_command): Rename to...
3037         (frame_command_core): ...this, and update parameter types.
3038         (class frame_command_helper): New class to wrap implementations of
3039         frame related sub-commands.
3040         (frame_apply_cmd_list): New static global.
3041         (frame_cmd_list): Make static.
3042         (select_frame_cmd_list): New global for sub-commands.
3043         (info_frame_cmd_list): New global for sub-commands.
3044         (_initialize_stack): Register sub-commands for 'frame',
3045         'select-frame', and 'info frame'.  Update 'frame apply' commands
3046         to use frame_apply_cmd_list.  Move function local static
3047         frame_apply_list to file static frame_apply_cmd_list for
3048         consistency.
3049         * stack.h (select_frame_command): Delete declarationn.
3050         (select_frame_for_mi): Declare new function.
3051
3052 2018-09-26  Andrew Burgess  <andrew.burgess@embecosm.com>
3053
3054         * riscv-tdep.c (riscv_insn::decode): Decode c.lui.
3055         (riscv_scan_prologue): Split handling of AUIPC, LUI, ADD, ADDI,
3056         and NOP.
3057
3058 2018-09-26  Simon Marchi  <simon.marchi@ericsson.com>
3059
3060         * elf32-nds32.c (elf32_nds32_allocate_dynrelocs): Remove.
3061
3062 2018-09-26  Tom Tromey  <tom@tromey.com>
3063
3064         * valops.c (auto_abandon): Remove dead code.
3065
3066 2018-09-26  Tom Tromey  <tom@tromey.com>
3067
3068         * tui/tui-win.c (WIN_HEIGHT_USAGE): Remove extra ">"s.
3069
3070 2018-09-24  Tom Tromey  <tom@tromey.com>
3071
3072         * common/pathstuff.c (get_standard_cache_dir): Make
3073         "xdg_cache_home" and "home" const.
3074         * top.c (init_history): Make "tmpenv" const.
3075         * main.c (get_init_files): Make "homedir" const.
3076
3077 2018-09-23  Tom Tromey  <tom@tromey.com>
3078
3079         PR python/18852:
3080         * python/py-param.c (get_set_value): Use gdbpy_handle_exception.
3081
3082 2018-09-23  Tom Tromey  <tom@tromey.com>
3083
3084         * python/py-function.c (fnpy_call): Use gdbpy_handle_exception.
3085         * python/py-cmd.c (cmdpy_function): Use gdbpy_handle_exception.
3086         * python/python-internal.h (gdbpy_handle_exception): Declare.
3087         * python/py-utils.c (gdbpy_handle_exception): New function.
3088
3089 2018-09-23  Tom Tromey  <tom@tromey.com>
3090
3091         PR python/17284:
3092         * python/py-type.c (typy_template_argument): Check for negative
3093         argument number.
3094
3095 2018-09-23  Tom Tromey  <tom@tromey.com>
3096
3097         PR python/14062:
3098         * python/python.c (gdbpy_run_events): Do not ignore exceptions.
3099
3100 2018-09-23  Tom Tromey  <tom@tromey.com>
3101
3102         PR python/18170:
3103         * python/py-value.c (valpy_int): Allow conversion from pointer
3104         type.
3105
3106 2018-09-23  Tom Tromey  <tom@tromey.com>
3107
3108         PR python/20126:
3109         * python/py-value.c (valpy_int): Respect type sign.
3110
3111 2018-09-23  Tom Tromey  <tom@tromey.com>
3112
3113         PR python/18352;
3114         * python/py-value.c (valpy_float): Allow conversions from int or
3115         char.
3116         (valpy_int, valpy_long): Allow conversions from float.
3117
3118 2018-09-23  Tom Tromey  <tom@tromey.com>
3119
3120         * ctf.c (ctf_start): Use gdb_fopen_cloexec.
3121         * common/scoped_mmap.c (mmap_file): Use gdb_open_cloexec.
3122
3123 2018-09-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3124
3125         * amd64-sol2-tdep.c (amd64_sol2_sigtramp_p): Also recognize
3126         __sighndlr.
3127         * i386-sol2-tdep.c (i386_sol2_sigtramp_p): Likewise.
3128
3129 2018-08-02  Jon Turney  <jon.turney@dronecode.org.uk>
3130
3131         * windows-nat.c (windows_nat_target::wait): Remove a spurious
3132         target_terminal::ours().
3133
3134 2018-09-23  Simon Marchi  <simon.marchi@ericsson.com>
3135
3136         * aarch64-linux-tdep.c (aarch64_linux_supply_sve_regset): Change type
3137         of vl to ULONGEST.
3138
3139 2018-09-21  Yacov Simhony  <ysimhony@gmail.com>
3140
3141         * breakpoint.c (update_inserted_breakpoint_locations): Remove
3142         redundant condition.
3143
3144 2018-09-20  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3145
3146         * proc-utils.h (PROC_CTL_WORD_TYPE): Remove.
3147
3148         * procfs.c: Don't check for PR_MODEL_NATIVE definition.
3149         * sparc-sol2-nat.c: Likewise.  Remove Linux, __arch64__ references.
3150         * sol-thread.c (ps_pdmodel): Don't guard definition.
3151
3152         * procfs.c: Fix formatting.
3153
3154         * procfs.c (sysset_t_alloc): Remove.
3155         (create_procinfo): Use XNEW instead of sysset_t_alloc.
3156         (procfs_debug_inferior): Likewise.
3157         (procfs_set_exec_trap): Likewise.
3158         (proc_set_traced_sysentry): Don't allocate argp dynamically.
3159         (proc_set_traced_sysexit): Likewise.
3160
3161         * procfs.c (create_procinfo): Use xsnprintf to fix ARI warning.
3162         (dead_procinfo): Likewise.
3163         (proc_warn): Likewise.
3164         (proc_error): Likewise.
3165         (proc_get_LDT_entry): Likewise.
3166         (do_attach): Likewise.
3167         (procfs_target::pid_to_str): Likewise.
3168         (iterate_over_mappings): Likewise.
3169
3170         * procfs.c (create_procinfo): Fix ARI warning.
3171         (proc_get_status): Likewise.
3172         (proc_stop_process): Likewise.
3173         (proc_run_process): Likewise.
3174         (proc_kill): Likewise.
3175         (proc_get_LDT_entry): Likewise.
3176         (procfs_find_LDT_entry): Likewise.
3177         (proc_update_threads): Likewise.
3178         (proc_iterate_over_threads): Likewise.
3179         (do_attach): Likewise.
3180         (procfs_xfer_memory): Likewise.
3181         (invalidate_cache): Likewise.
3182         (procfs_target::resume): Likewise.
3183         (procfs_init_inferior): Likewise.
3184         (procfs_set_exec_trap): Likewise.
3185         (procfs_target::thread_alive): Likewise.
3186         (procfs_target::pid_to_exec_file): Likewise.
3187         (iterate_over_mappings): Likewise.
3188         (procfs_target::make_corefile_notes): Likewise.
3189         * sol-thread.c (sol_thread_target::thread_alive): Likewise.
3190
3191         * procfs.c (procfs_find_LDT_entry): Silence ARI warning.
3192         (procfs_find_LDT_entry): Likewise.
3193         * sol-thread.c (ps_lgetLDT): Likewise.
3194
3195 2018-09-20  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3196
3197         PR tdep/17903
3198         * procfs.c (procfs_target): Declare pid_to_exec_file.
3199         (procfs_target::pid_to_exec_file): New.
3200
3201 2018-09-20  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3202
3203         * auxv.c (default_print_auxv_entry): Reflect AT_SUN_CAP_HW1
3204         renaming.
3205         Handle AT_SUN_EMULATOR, AT_SUN_BRANDNAME, AT_SUN_BRAND_AUX1,
3206         AT_SUN_BRAND_AUX2, AT_SUN_BRAND_AUX3, AT_SUN_CAP_HW2.
3207
3208 2018-09-20  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3209
3210         * i386-v4-nat.c (regmap, supply_gregset, fill_gregset)
3211         (supply_fpregset, fill_fpregset): Move ...
3212         * i386-sol2-nat.c [PR_MODEL_NATIVE != PR_MODEL_LP64]: ... here.
3213         Remove HAVE_GREGSET_T, HAVE_FPREGET_T guards.
3214         Remove references to ioctl-based procfs.
3215         Include <sys/reg.h>.
3216         Remove PR_MODEL_NATIVE guards.
3217         * configure.nat <sol2, i386> (NATDEPFILES): Remove i386-v4-nat.o.
3218         * Makefile.in (ALLDEPFILES): Remove i386-v4-nat.c.
3219
3220 2018-09-19  Xavier Roirand  <roirand@adacore.com>
3221
3222         PR gdb/20981:
3223         * solib-darwin.c (darwin_get_dyld_bfd): New function.
3224         (darwin_solib_get_all_image_info_addr_at_init): Update call.
3225         (darwin_solib_create_inferior_hook): Handle unrelocated dyld.
3226
3227 2018-09-19  John Baldwin  <jhb@FreeBSD.org>
3228
3229         * fbsd-tdep.c (fbsd_print_sockaddr_in): Style fix.
3230         (fbsd_print_sockaddr_in6): Likewise.
3231
3232 2018-09-19  Richard Bunt  <richard.bunt@arm.com>
3233             Chris January  <chris.january@arm.com>
3234
3235         * eval.c (skip_undetermined_arglist): Skip argument list helper.
3236         (evaluate_subexp_standard): Return a dummy type when
3237         honoring EVAL_SKIP in OP_VAR_VALUE and handle skipping in the
3238         OP_F77_UNDETERMINED_ARGLIST case.
3239         * expression.h (enum noside): Update comment.
3240
3241 2018-09-19  George Vasick <george.vasick@oracle.com>
3242
3243         * solib-svr4.c (svr4_same_1): Also handle amd64 ld.so.1.
3244
3245 2018-09-19  Stefan Teleman <stefan.teleman@oracle.com>
3246             April Chin <april.chin@oracle.com>
3247             Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3248
3249         * procfs.c (MAX_PROC_NAME_SIZE): Allow for 6-digit PID_MAX and
3250         uint_t lwpid_t.
3251         (create_procinfo): Print pids in /proc without leading zeros.
3252
3253 2018-09-18  Sandra Loosemore  <sandra@codesourcery.com>
3254
3255         * nios2-tdep.c (nios2_gcc_target_options): New.
3256         (nios2_gdb_arch_init): Install new hook.
3257
3258 2018-09-18  Simon Marchi  <simon.marchi@ericsson.com>
3259
3260         * patches/0001-Fix-PR-gdb-23558-Use-system-s-getcwd-when-cross-comp.patch:
3261         New file.
3262         * update-gnulib.sh: Apply patch.
3263         * configure: Re-generate.
3264
3265 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
3266
3267         * infcmd.c (_initialize_infcmd): Remove "running" from "info proc"
3268         description.  Make "info proc" command descriptions more
3269         consistent.
3270
3271 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
3272
3273         * NEWS: Mention 'info proc files' command.
3274
3275 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
3276
3277         * fbsd-nat.c (fbsd_nat_target::info_proc): List open file
3278         descriptors for IP_FILES and IP_ALL.
3279
3280 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
3281
3282         * fbsd-tdep.c (KF_FLAGS, KF_OFFSET, KF_VNODE_TYPE, KF_SOCK_DOMAIN)
3283         (KF_SOCK_TYPE, KF_SOCK_PROTOCOL, KF_SA_LOCAL, KF_SA_PEER)
3284         (KINFO_FILE_TYPE_SOCKET, KINFO_FILE_TYPE_PIPE)
3285         (KINFO_FILE_TYPE_FIFO, KINFO_FILE_TYPE_KQUEUE)
3286         (KINFO_FILE_TYPE_CRYPTO, KINFO_FILE_TYPE_MQUEUE)
3287         (KINFO_FILE_TYPE_SHM, KINFO_FILE_TYPE_SEM, KINFO_FILE_TYPE_PTS)
3288         (KINFO_FILE_TYPE_PROCDESC, KINFO_FILE_FD_TYPE_ROOT)
3289         (KINFO_FILE_FD_TYPE_JAIL, KINFO_FILE_FD_TYPE_TRACE)
3290         (KINFO_FILE_FD_TYPE_CTTY, KINFO_FILE_FLAG_READ)
3291         (KINFO_FILE_FLAG_WRITE, KINFO_FILE_FLAG_APPEND)
3292         (KINFO_FILE_FLAG_ASYNC, KINFO_FILE_FLAG_FSYNC)
3293         (KINFO_FILE_FLAG_NONBLOCK, KINFO_FILE_FLAG_DIRECT)
3294         (KINFO_FILE_FLAG_HASLOCK, KINFO_FILE_FLAG_EXEC)
3295         (KINFO_FILE_VTYPE_VREG, KINFO_FILE_VTYPE_VDIR)
3296         (KINFO_FILE_VTYPE_VCHR, KINFO_FILE_VTYPE_VLNK)
3297         (KINFO_FILE_VTYPE_VSOCK, KINFO_FILE_VTYPE_VFIFO, FBSD_AF_UNIX)
3298         (FBSD_AF_INET, FBSD_AF_INET6, FBSD_SOCK_STREAM, FBSD_SOCK_DGRAM)
3299         (FBSD_SOCK_SEQPACKET, FBSD_IPPROTO_ICMP, FBSD_IPPROTO_TCP)
3300         (FBSD_IPPROTO_UDP, FBSD_IPPROTO_SCTP): New defines.
3301         (struct fbsd_sockaddr_in, struct fbsd_sockaddr_in6)
3302         (struct fbsd_sockaddr_un): New types.
3303         (fbsd_file_fd, fbsd_file_type, fbsd_file_flags, fbsd_ipproto)
3304         (fbsd_print_sockaddr_in, fbsd_print_sockaddr_in6)
3305         (fbsd_info_proc_files_header, fbsd_info_proc_files_entry)
3306         (fbsd_core_info_proc_files): New functions.
3307         (fbsd_core_info_proc): List open file descriptors for IP_FILES and
3308         IP_ALL.
3309         * fbsd-tdep.h (fbsd_info_proc_files_header)
3310         (fbsd_info_proc_files_entry): New.
3311
3312 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
3313
3314         * defs.h (enum info_proc_what) [IP_FILES]: New value.
3315         * infcmd.c (info_proc_cmd_files): New function.
3316         (_initialize_infcmd): Register 'info proc files' command.
3317
3318 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
3319
3320         * gnulib/aclocal-m4-deps.mk: Re-generate.
3321         * gnulib/aclocal.m4: Re-generate.
3322         * gnulib/config.in: Re-generate.
3323         * gnulib/configure: Re-generate.
3324         * gnulib/import/Makefile.am: Re-generate.
3325         * gnulib/import/Makefile.in: Re-generate.
3326         * gnulib/import/m4/gnulib-cache.m4: Re-generate.
3327         * gnulib/import/m4/gnulib-comp.m4: Re-generate.
3328         * gnulib/import/arpa_inet.in.h: New file.
3329         * gnulib/import/inet_ntop.c: New file.
3330         * gnulib/import/m4/arpa_inet_h.m4: New file.
3331         * gnulib/import/m4/inet_ntop.m4: New file.
3332         * gnulib/import/m4/netinet_in_h.m4: New file.
3333         * gnulib/import/m4/socklen.m4: New file.
3334         * gnulib/import/m4/sockpfaf.m4: New file.
3335         * gnulib/import/m4/stdalign.m4: New file.
3336         * gnulib/import/m4/sys_uio_h.m4: New file.
3337         * gnulib/import/netinet_in.in.h: New file.
3338         * gnulib/import/stdalign.in.h: New file.
3339         * gnulib/import/sys_socket.c: New file.
3340         * gnulib/import/sys_socket.in.h: New file.
3341         * gnulib/import/sys_uio.in.h: New file.
3342         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add inet_ntop
3343         module.
3344
3345 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
3346
3347         * gnulib/aclocal-m4-deps.mk: New file.
3348         * gnulib/update-gnulib.sh: Generate "aclocal-m4-deps.mk"
3349         deterministically.
3350
3351 2018-09-18  John Baldwin  <jhb@FreeBSD.org>
3352
3353         * fbsd-tdep.c (fbsd_core_vnode_path): Use KF_PATH instead of
3354         KVE_PATH.
3355
3356 2018-09-18  Tom Tromey  <tom@tromey.com>
3357
3358         * compile/compile-object-load.c (struct
3359         link_hash_table_cleanup_data): Add constructor and destructor.
3360         Use DISABLE_COPY_AND_ASSIGN.
3361         (~link_hash_table_cleanup_data): Rename from
3362         link_hash_table_free.  Now a destructor.
3363         (copy_sections): Use gdb::unique_xmalloc_ptr.  Remove cleanups.
3364
3365 2018-09-18  Tom Tromey  <tom@tromey.com>
3366
3367         * compile/compile-object-run.c (do_module_cleanup): Use delete.
3368         * compile/compile-object-load.c (struct munmap_list): Move to
3369         header file.
3370         (munmap_list::add): Rename from munmap_list_add; rewrite.
3371         (munmap_list::~munmap_list): Rename from munmap_list_free.
3372         (munmap_listp_free_cleanup): Remove.
3373         (compile_object_load): Update.
3374         * compile/compile-object-load.h (struct munmap_list): Move from
3375         compile-object-load.c.  Rewrite.
3376
3377 2018-09-18  Alan Hayward  <alan.hayward@arm.com>
3378
3379         * aarch64-tdep.c (pass_in_v): Use register size.
3380         (aarch64_extract_return_value): Likewise.
3381         (aarch64_store_return_value): Likewise.
3382
3383 2018-09-18  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
3384
3385         * utils.c (dump_core) [HAVE_SETRLIMIT]: Cast RLIM_INFINITY to
3386         rlim_t.
3387
3388 2018-09-17  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
3389
3390         * python/lib/gdb/command/frame_filters.py (EnableFrameFilter):
3391         Fix short help line.
3392
3393 2018-09-17  Tom Tromey  <tom@tromey.com>
3394
3395         PR python/20445:
3396         * configure: Rebuild.
3397         * configure.ac: Conditionally use -DNDEBUG for Python.
3398
3399 2018-09-17  Tom Tromey  <tom@tromey.com>
3400
3401         * configure: Rebuild.
3402         * configure.ac: Use gmp as a library dependency when checking for
3403         mpfr.
3404
3405 2018-09-17  Pedro Alves  <palves@redhat.com>
3406
3407         * python/py-inferior.c (find_inferior_object): Delete.
3408
3409 2018-09-17  Simon Marchi  <simon.marchi@ericsson.com>
3410
3411         * compile/compile-cplus-types.c
3412         (compile_cplus_instance::enter_scope): Don't use new_scope after
3413         std::move.
3414
3415 2018-09-17  Tom Tromey  <tom@tromey.com>
3416
3417         * common/pathstuff.c (get_standard_cache_dir): Use
3418         ~/Library/Caches on macOS.
3419         * common/pathstuff.h (get_standard_cache_dir): Update comment.
3420
3421 2018-09-17  Simon Marchi  <simon.marchi@polymtl.ca>
3422
3423         PR python/23669
3424         * breakpoint.c (commands_cmd_element): New.
3425         (_initialize_breakpoint): Assign commands_cmd_element.
3426         * breakpoint.h (commands_cmd_element): New.
3427         * cli/cli-script.c (while_cmd_element, if_command,
3428         define_cmd_element): New.
3429         (command_name_equals): Remove.
3430         (process_next_line): Compare commands by pointer, not by name.
3431         (_initialize_cli_script): Assign the various cmd_list_element
3432         variables.
3433         * compile/compile.c (compile_cmd_element): New.
3434         (_initialize_compile): Assign compile_cmd_element.
3435         * compile/compile.h (compile_cmd_element): New.
3436         * guile/guile.c (guile_cmd_element): New.
3437         (install_gdb_commands): Assign guile_cmd_element.
3438         * guile/guile.h (guile_cmd_element): New.
3439         * python/python.c (python_cmd_element): New.
3440         (_initialize_python): Assign python_cmd_element.
3441         * python/python.h (python_cmd_element): New.
3442         * tracepoint.c (while_stepping_cmd_element): New.
3443         (_initialize_tracepoint): Assign while_stepping_cmd_element.
3444         * tracepoint.h (while_stepping_cmd_element): New.
3445
3446 2018-09-17  Tom Tromey  <tom@tromey.com>
3447
3448         * infrun.c (save_infcall_suspend_state): Return
3449         infcall_suspend_state_up.
3450         (save_infcall_control_state): Return infcall_control_state_up.
3451         * inferior.h (save_infcall_suspend_state)
3452         (save_infcall_control_state): Declare later.  Return unique
3453         pointers.
3454
3455 2018-09-17  Tom Tromey  <tom@tromey.com>
3456
3457         * infrun.c (struct stop_context): Declare constructor,
3458         destructor, "changed" method.
3459         (stop_context::stop_context): Rename from save_stop_context.
3460         (stop_context::~stop_context): Rename from
3461         release_stop_context_cleanup.
3462         (normal_stop): Update.
3463         (stop_context::changed): Rename from stop_context_changed.  Return
3464         bool.
3465
3466 2018-09-17  Tom Tromey  <tom@tromey.com>
3467
3468         * inferior.h (struct infcall_suspend_state_deleter): New.
3469         (infcall_suspend_state_up): New typedef.
3470         (struct infcall_control_state_deleter): New.
3471         (infcall_control_state_up): New typedef.
3472         (make_cleanup_restore_infcall_suspend_state)
3473         (make_cleanup_restore_infcall_control_state): Don't declare.
3474         * infcall.c (call_function_by_hand_dummy): Update.
3475         * infrun.c (do_restore_infcall_suspend_state_cleanup)
3476         (make_cleanup_restore_infcall_suspend_state): Remove.
3477         (do_restore_infcall_control_state_cleanup)
3478         (make_cleanup_restore_infcall_control_state): Remove.
3479
3480 2018-09-17  Tom Tromey  <tom@tromey.com>
3481
3482         * gdbthread.h (struct thread_control_state): Add initializer.
3483         (class thread_info) <control>: Remove initializer.
3484         * inferior.h (struct inferior_control_state): Add initializer.
3485         (class inferior) <control>: Remove initializer.
3486         (exit_inferior_1): Update.
3487         * infrun.c (struct infcall_control_state): Add constructors.
3488         (save_infcall_control_state): Use new.
3489         (restore_infcall_control_state, discard_infcall_control_state):
3490         Use delete.
3491
3492 2018-09-17  Tom Tromey  <tom@tromey.com>
3493
3494         * infrun.c (struct infcall_suspend_state) <registers>: Now a
3495         unique_ptr.
3496         <siginfo_data>: Now a unique_xmalloc_ptr.
3497         (save_infcall_suspend_state, restore_infcall_suspend_state)
3498         (discard_infcall_suspend_state)
3499         (get_infcall_suspend_state_regcache): Update.
3500
3501 2018-09-17  Tom Tromey  <tom@tromey.com>
3502
3503         * gdbthread.h (struct thread_suspend_state): Add initializers.
3504         (class thread_info) <suspend>: Remove initializer.
3505         * infrun.c (struct infcall_suspend_state): Add initializers.
3506         (save_infcall_suspend_state): Use new.
3507         (discard_infcall_suspend_state): Use delete.
3508
3509 2018-09-16  Tom Tromey  <tom@tromey.com>
3510
3511         * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
3512         Remove.
3513         * python/py-varobj.c (py_varobj_iter_ctor): Change pyiter to
3514         rvalue reference.  Remove CPYCHECKER_STEALS_REFERENCE_TO_ARG.
3515         (py_varobj_iter_new): Likewise.
3516         (py_varobj_get_iterator): Use gdbpy_ref.
3517
3518 2018-09-16  Tom Tromey  <tom@tromey.com>
3519
3520         * python/py-threadevent.c (py_get_event_thread): Simplify.
3521         * python/py-inferior.c (infpy_thread_from_thread_handle):
3522         Return immediately after calling thread_to_thread_object.  Use
3523         Py_RETURN_NONE.
3524         (thread_to_thread_object): Set the exception on a NULL return.
3525
3526 2018-09-16  Simon Marchi  <simon.marchi@polymtl.ca>
3527
3528         * Makefile.in (LIBGDB_OBS): Sort COMMON_OBS.
3529
3530 2018-09-16  Tom Tromey  <tom@tromey.com>
3531
3532         * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
3533         Remove.
3534
3535 2018-09-16  Tom Tromey  <tom@tromey.com>
3536
3537         * python/python-internal.h (thread_to_thread_object): Change
3538         return type.
3539         * python/py-inferior.c (thread_to_thread_object): Return a new
3540         reference.
3541         (infpy_thread_from_thread_handle): Update.
3542         * python/py-infthread.c (gdbpy_selected_thread): Update.
3543         * python/py-stopevent.c (create_stop_event_object): Update.
3544         * python/py-threadevent.c (py_get_event_thread): Return a new
3545         reference.
3546         (py_get_event_thread): Update.
3547         * python/py-event.h (py_get_event_thread): Change return type.
3548         * python/py-continueevent.c (create_continue_event_object):
3549         Update.
3550
3551 2018-09-16  Tom Tromey  <tom@tromey.com>
3552
3553         * python/py-progspace.c (pspy_get_objfiles): Update.
3554         * python/python-internal.h (objfile_to_objfile_object): Change
3555         return type.
3556         * python/py-newobjfileevent.c (create_new_objfile_event_object):
3557         Update.
3558         * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
3559         Update.
3560         * python/python.c (gdbpy_get_current_objfile): Update.
3561         (gdbpy_objfiles): Update.
3562         * python/py-objfile.c (objfpy_get_owner, gdbpy_lookup_objfile):
3563         Update.
3564         (objfile_to_objfile_object): Return a new reference.
3565         * python/py-symtab.c (stpy_get_objfile): Update.
3566         * python/py-prettyprint.c (find_pretty_printer_from_objfiles):
3567         Update.
3568
3569 2018-09-16  Tom Tromey  <tom@tromey.com>
3570
3571         * python/py-inferior.c (infpy_get_progspace): Update.
3572         * python/python-internal.h (pspace_to_pspace_object): Change
3573         return type.
3574         * python/py-newobjfileevent.c
3575         (create_clear_objfiles_event_object): Update.
3576         * python/py-xmethods.c (gdbpy_get_matching_xmethod_workers):
3577         Update.
3578         * python/python.c (gdbpy_get_current_progspace): Update.
3579         (gdbpy_progspaces): Update.
3580         * python/py-progspace.c (pspace_to_pspace_object): Return a new
3581         reference.
3582         * python/py-objfile.c (objfpy_get_progspace): Update.
3583         * python/py-prettyprint.c (find_pretty_printer_from_progspace):
3584         Update.
3585
3586 2018-09-16  Tom Tromey  <tom@tromey.com>
3587
3588         * python/lib/gdb/__init__.py (current_progspace, objfiles)
3589         (solib_name, block_for_pc, find_pc_line): New functions.
3590         (execute_unwinders): Update.
3591         * python/py-block.c (gdbpy_block_for_pc): Remove.
3592         * python/py-inferior.c (infpy_get_progspace): New function.
3593         (inferior_object_getset) <progspace>: Add.
3594         * python/py-progspace.c (pspy_objfiles): Rewrite.
3595         (pspy_solib_name, pspy_block_for_pc)
3596         (pspy_find_pc_line, pspy_is_valid): New functions.
3597         (progspace_object_methods): Add entries for solib_name,
3598         block_for_pc, find_pc_line, is_valid.
3599         * python/python-internal.h (gdbpy_block_for_pc)
3600         (build_objfiles_list): Don't declare.
3601         * python/python.c: Don't include solib.h.
3602         (gdbpy_solib_name, gdbpy_find_pc_line)
3603         (gdbpy_get_current_progspace, build_objfiles_list)
3604         (gdbpy_objfiles): Remove.
3605         (GdbMethods) <current_progspace, objfiles, block_for_pc,
3606         solib_name, find_pc_line>: Remove entries.
3607
3608 2018-09-16  Tom Tromey  <tom@tromey.com>
3609
3610         * top.c (new_ui_command): Use GNU style for metasyntactic
3611         variables.
3612         * breakpoint.c (stopat_command): Use GNU style for metasyntactic
3613         variables.
3614         * maint.c (maintenance_translate_address): Remove "<>" around
3615         text.
3616         * interps.c (interpreter_exec_cmd): Use GNU style for
3617         metasyntactic variables.
3618         * nto-procfs.c (nto_procfs_target_info): Use GNU style for
3619         metasyntactic variables.
3620         * tracepoint.c (tfind_range_command): Use GNU style for
3621         metasyntactic variables.
3622         (tfind_outside_command): Likewise.
3623         (_initialize_tracepoint): Likewise.
3624         * remote.c (extended_remote_target::create_inferior): Use GNU
3625         style for metasyntactic variables.
3626         * sparc64-tdep.c (adi_examine_command): Use GNU style for
3627         metasyntactic variables.
3628         (adi_assign_command): Likewise.
3629
3630 2018-09-16  Tom Tromey  <tom@tromey.com>
3631
3632         * disasm.c (show_disassembler_options_sfunc): Use GNU style for
3633         metasyntactic variables.  Print message if no disassembler options
3634         are available.
3635
3636 2018-09-15  Tom Tromey  <tom@tromey.com>
3637
3638         * infcmd.c (get_inferior_args): Return const char *.
3639         * inferior.h (get_inferior_args): Return type now const.
3640         * linux-tdep.c (linux_fill_prpsinfo): Update.
3641         * procfs.c (procfs_target::make_corefile_notes): Update.
3642
3643 2018-09-07  Tom Tromey  <tom@tromey.com>
3644
3645         * python/python.c (execute_gdb_command): Call bpstat_do_actions
3646         inside the TRY.
3647
3648 2018-09-14  Sandra Loosemore  <sandra@codesourcery.com>
3649
3650         * nios2-tdep.c (nios2_type_align): New.
3651         (nios2_gdb_arch_init): Install type_align hook.
3652
3653 2018-09-10  Andrew Burgess  <andrew.burgess@embecosm.com>
3654
3655         * eval.c (fake_method::fake_method): Call xzalloc directly for a
3656         type that is neither object file owned, nor gdbarch owned.
3657         * gdbtypes.c (get_type_gdbarch): Add an assert that returned
3658         gdbarch is non-NULL.
3659         (alloc_type_instance): Allocate non-objfile owned types on the
3660         gdbarch obstack.
3661         (copy_type_recursive): Allocate TYPE_FIELDS and TYPE_RANGE_DATA
3662         using TYPE_ALLOC to ensure memory is allocated on the correct
3663         obstack.
3664         * gdbtypes.h (TYPE_ALLOC): Allocate space on either the objfile
3665         obstack, or the gdbarch obstack.
3666         (TYPE_ZALLOC): Rewrite using TYPE_ALLOC.
3667
3668 2018-09-14  Tom Tromey  <tom@tromey.com>
3669
3670         * infcall.c (call_function_by_hand_dummy): Remove unnecessary
3671         block.
3672
3673 2018-09-14  Tom Tromey  <tom@tromey.com>
3674
3675         * nat/fork-inferior.c (get_startup_shell): Remove "static".
3676
3677 2018-09-13  Tom Tromey  <tom@tromey.com>
3678
3679         * python/py-inferior.c (infpy_thread_from_thread_handle): Now
3680         static.
3681
3682 2018-09-13  Tom Tromey  <tom@tromey.com>
3683
3684         * exec.c (try_open_exec_file): Use std::string.
3685
3686 2018-09-13  Tom Tromey  <tom@tromey.com>
3687
3688         * utils.h (gdb_bfd_errmsg): Return std::string.
3689         * exec.c (exec_file_attach): Update.
3690         * compile/compile-object-load.c (compile_object_load): Update.
3691         * utils.c (gdb_bfd_errmsg): Return std::string.
3692
3693 2018-09-13  Tom Tromey  <tom@tromey.com>
3694
3695         * procfs.c (struct procinfo_deleter): New.
3696         (procinfo_up): New typedef.
3697         (do_destroy_procinfo_cleanup): Remove.
3698         (procfs_target::info_proc): Use procinfo_up.  Remove cleanups.
3699
3700 2018-09-13  Tom Tromey  <tom@tromey.com>
3701
3702         * source.c (add_path): Use gdb::unique_xmalloc_ptr.
3703
3704 2018-09-13  Simon Marchi  <simon.marchi@ericsson.com>
3705 2018-09-13  Tom Tromey  <tom@tromey.com>
3706
3707         * python/py-progspace.c (PSPY_REQUIRE_VALID): New macro.
3708         (pspy_get_objfiles): New function.
3709         (progspace_object_methods): New.
3710         (pspace_object_type): Add tp_methods callback.
3711         * python/python-internal.h (build_objfiles_list): New
3712         declaration.
3713         * python/python.c (build_objfiles_list): New function.
3714         (gdbpy_objfiles): Implement using build_objfiles_list.
3715         * NEWS: Mention the Progspace.objfiles method.
3716
3717 2018-09-13  Simon Marchi  <simon.marchi@ericsson.com>
3718
3719         * python/py-inferior.c (infpy_get_progspace): New function.
3720         (inferior_object_getset): Add progspace property.
3721         * NEWS: Mention the new property.
3722
3723 2018-09-13  Tom Tromey  <tom@tromey.com>
3724
3725         PR rust/23650:
3726         * rust-lang.c (rust_evaluate_subexp): Use field name, not "foo".
3727
3728 2018-09-13  Tom Tromey  <tom@tromey.com>
3729
3730         PR rust/23626:
3731         * rust-lang.c (rust_enum_variant): Now static.
3732         (rust_empty_enum_p): New function.
3733         (rust_print_enum, rust_evaluate_subexp, rust_print_struct_def):
3734         Handle empty enum.
3735
3736 2018-09-13  Simon Marchi  <simon.marchi@ericsson.com>
3737
3738         * python/py-inferior.c (infpy_repr): New.
3739         (inferior_object_type): Register infpy_repr.
3740         * python/py-objfile.c (objfpy_repr): New.
3741         (objfile_object_type): Register objfpy_repr.
3742
3743 2018-09-12  John Baldwin  <jhb@FreeBSD.org>
3744
3745         * fbsd-nat.c (fbsd_nat_target::info_proc): Remove unused variable.
3746
3747 2018-09-12  John Baldwin  <jhb@FreeBSD.org>
3748
3749         * aarch64-fbsd-tdep.h (AARCH64_FBSD_SIZEOF_GREGSET): Fix comment
3750         typo.
3751
3752 2018-09-12  Sergio Durigan Junior  <sergiodj@redhat.com>
3753
3754         * common/common-utils.c: Don't include '<sys/stat.h>'.
3755         (is_regular_file): Move to...
3756         * common/filestuff.c (is_regular_file): ... here.
3757         * common/common-utils.h (is_regular_file): Move to...
3758         * common/filestuff.h (is_regular_file): ... here.
3759
3760 2018-09-12  Simon Marchi  <simon.marchi@ericsson.com>
3761
3762         * skip.c (debug_skip): New variable.
3763         (skiplist_entry::do_skip_file_p): Add debug output.
3764         (skiplist_entry::do_skip_gfile_p): Likewise.
3765         (skiplist_entry::skip_function_p): Likewise.
3766         (_initialize_step_skip): Create debug command.
3767         * NEWS: Mention set/show debug skip.
3768
3769 2018-09-11  Xavier Roirand  <roirand@adacore.com>
3770
3771         * darwin-nat.c (should_disable_startup_with_shell):
3772         New function.
3773         (darwin_nat_target::create_inferior): Add call.
3774
3775 2018-09-11  Xavier Roirand  <roirand@adacore.com>
3776
3777         * darwin-nat.h (struct darwin_thread_info) <gdb_port,
3778         inf_port, msg_state>: Initialize.
3779         (struct darwin_thread_info) <signaled, single_step>: Change
3780         type and initialize.
3781         (struct darwin_thread_info) <event>: Initialize.
3782
3783 2018-09-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3784
3785         PR gdb/23555
3786         PR gdb/23558
3787         * gnulib/import/m4/getcwd-path-max.m4: Add cross-compilation
3788         guesses.
3789
3790 2018-09-10  Sergio Durigan Junior  <sergiodj@redhat.com>
3791
3792         Revert:
3793         2018-08-29  Sergio Durigan Junior  <sergiodj@redhat.com>
3794
3795         PR gdb/23555
3796         PR gdb/23558
3797         * gnulib/aclocal.m4: Regenerate.
3798         * gnulib/config.in: Regenerate.
3799         * gnulib/configure: Regenerate.
3800         * gnulib/import/Makefile.am: Update.
3801         * gnulib/import/Makefile.in: Update.
3802         * gnulib/import/extra/snippet/_Noreturn.h: Rename to...
3803         * gnulib/import/_Noreturn.h: ... this.
3804         * gnulib/import/alloca.in.h: Update.
3805         * gnulib/import/extra/snippet/arg-nonnull.h: Rename to...
3806         * gnulib/import/arg-nonnull.h: ... this.
3807         * gnulib/import/assure.h: Update.
3808         * gnulib/import/at-func.c: Update.
3809         * gnulib/import/basename-lgpl.c: Update.
3810         * gnulib/import/extra/snippet/c++defs.h: Rename to...
3811         * gnulib/import/c++defs.h: ... this.
3812         * gnulib/import/canonicalize-lgpl.c: Update.
3813         * gnulib/import/cdefs.h: Update.
3814         * gnulib/import/chdir-long.c: Update.
3815         * gnulib/import/chdir-long.h: Update.
3816         * gnulib/import/cloexec.c: Update.
3817         * gnulib/import/cloexec.h: Update.
3818         * gnulib/import/close.c: Update.
3819         * gnulib/import/closedir.c: Update.
3820         * gnulib/import/config.charset: Update.
3821         * gnulib/import/dirent-private.h: Update.
3822         * gnulib/import/dirent.in.h: Update.
3823         * gnulib/import/dirfd.c: Update.
3824         * gnulib/import/dirname-lgpl.c: Update.
3825         * gnulib/import/dirname.h: Update.
3826         * gnulib/import/dosname.h: Update.
3827         * gnulib/import/dup-safer-flag.c: Update.
3828         * gnulib/import/dup-safer.c: Update.
3829         * gnulib/import/dup.c: Update.
3830         * gnulib/import/dup2.c: Update.
3831         * gnulib/import/errno.in.h: Update.
3832         * gnulib/import/error.c: Update.
3833         * gnulib/import/error.h: Update.
3834         * gnulib/import/exitfail.c: Update.
3835         * gnulib/import/exitfail.h: Update.
3836         * gnulib/import/extra/update-copyright: Update.
3837         * gnulib/import/fchdir.c: Update.
3838         * gnulib/import/fcntl.c: Update.
3839         * gnulib/import/fcntl.in.h: Update.
3840         * gnulib/import/fd-hook.c: Update.
3841         * gnulib/import/fd-hook.h: Update.
3842         * gnulib/import/fd-safer-flag.c: Update.
3843         * gnulib/import/fd-safer.c: Update.
3844         * gnulib/import/fdopendir.c: Update.
3845         * gnulib/import/filename.h: Update.
3846         * gnulib/import/filenamecat-lgpl.c: Update.
3847         * gnulib/import/filenamecat.h: Update.
3848         * gnulib/import/flexmember.h: Update.
3849         * gnulib/import/float+.h: Update.
3850         * gnulib/import/float.c: Update.
3851         * gnulib/import/float.in.h: Update.
3852         * gnulib/import/fnmatch.c: Update.
3853         * gnulib/import/fnmatch.in.h: Update.
3854         * gnulib/import/fnmatch_loop.c: Update.
3855         * gnulib/import/fpucw.h: Update.
3856         * gnulib/import/frexp.c: Update.
3857         * gnulib/import/frexpl.c: Update.
3858         * gnulib/import/fstat.c: Update.
3859         * gnulib/import/fstatat.c: Update.
3860         * gnulib/import/getcwd-lgpl.c: Update.
3861         * gnulib/import/getcwd.c: Update.
3862         * gnulib/import/getdtablesize.c: Update.
3863         * gnulib/import/getlogin_r.c: Update.
3864         * gnulib/import/getprogname.c: Update.
3865         * gnulib/import/getprogname.h: Update.
3866         * gnulib/import/gettext.h: Update.
3867         * gnulib/import/gettimeofday.c: Update.
3868         * gnulib/import/glob-libc.h: Update.
3869         * gnulib/import/glob.c: Update.
3870         * gnulib/import/glob.in.h: Update.
3871         * gnulib/import/glob_internal.h: Update.
3872         * gnulib/import/glob_pattern_p.c: Update.
3873         * gnulib/import/globfree.c: Update.
3874         * gnulib/import/hard-locale.c: Update.
3875         * gnulib/import/hard-locale.h: Update.
3876         * gnulib/import/intprops.h: Update.
3877         * gnulib/import/inttypes.in.h: Update.
3878         * gnulib/import/isnan.c: Update.
3879         * gnulib/import/isnand-nolibm.h: Update.
3880         * gnulib/import/isnand.c: Update.
3881         * gnulib/import/isnanl-nolibm.h: Update.
3882         * gnulib/import/isnanl.c: Update.
3883         * gnulib/import/itold.c: Update.
3884         * gnulib/import/libc-config.h: Update.
3885         * gnulib/import/limits.in.h: Update.
3886         * gnulib/import/localcharset.c: Update.
3887         * gnulib/import/localcharset.h: Update.
3888         * gnulib/import/localtime-buffer.c: Update.
3889         * gnulib/import/localtime-buffer.h: Update.
3890         * gnulib/import/lstat.c: Update.
3891         * gnulib/import/m4/00gnulib.m4: Update.
3892         * gnulib/import/m4/__inline.m4: Update.
3893         * gnulib/import/m4/absolute-header.m4: Update.
3894         * gnulib/import/m4/alloca.m4: Update.
3895         * gnulib/import/m4/builtin-expect.m4: Update.
3896         * gnulib/import/m4/canonicalize.m4: Update.
3897         * gnulib/import/m4/chdir-long.m4: Update.
3898         * gnulib/import/m4/close.m4: Update.
3899         * gnulib/import/m4/closedir.m4: Update.
3900         * gnulib/import/m4/configmake.m4: Update.
3901         * gnulib/import/m4/d-ino.m4: Update.
3902         * gnulib/import/m4/d-type.m4: Update.
3903         * gnulib/import/m4/dirent_h.m4: Update.
3904         * gnulib/import/m4/dirfd.m4: Update.
3905         * gnulib/import/m4/dirname.m4: Update.
3906         * gnulib/import/m4/double-slash-root.m4: Update.
3907         * gnulib/import/m4/dup.m4: Update.
3908         * gnulib/import/m4/dup2.m4: Update.
3909         * gnulib/import/m4/eealloc.m4: Update.
3910         * gnulib/import/m4/environ.m4: Update.
3911         * gnulib/import/m4/errno_h.m4: Update.
3912         * gnulib/import/m4/error.m4: Update.
3913         * gnulib/import/m4/exponentd.m4: Update.
3914         * gnulib/import/m4/exponentl.m4: Update.
3915         * gnulib/import/m4/extensions.m4: Update.
3916         * gnulib/import/m4/extern-inline.m4: Update.
3917         * gnulib/import/m4/fchdir.m4: Update.
3918         * gnulib/import/m4/fcntl-o.m4: Update.
3919         * gnulib/import/m4/fcntl.m4: Update.
3920         * gnulib/import/m4/fcntl_h.m4: Update.
3921         * gnulib/import/m4/fdopendir.m4: Update.
3922         * gnulib/import/m4/filenamecat.m4: Update.
3923         * gnulib/import/m4/flexmember.m4: Update.
3924         * gnulib/import/m4/float_h.m4: Update.
3925         * gnulib/import/m4/fnmatch.m4: Update.
3926         * gnulib/import/m4/fnmatch_h.m4: Update.
3927         * gnulib/import/m4/fpieee.m4: Update.
3928         * gnulib/import/m4/frexp.m4: Update.
3929         * gnulib/import/m4/frexpl.m4: Update.
3930         * gnulib/import/m4/fstat.m4: Update.
3931         * gnulib/import/m4/fstatat.m4: Update.
3932         * gnulib/import/m4/getcwd-abort-bug.m4: Update.
3933         * gnulib/import/m4/getcwd-path-max.m4: Update.
3934         * gnulib/import/m4/getcwd.m4: Update.
3935         * gnulib/import/m4/getdtablesize.m4: Update.
3936         * gnulib/import/m4/getlogin.m4: Update.
3937         * gnulib/import/m4/getlogin_r.m4: Update.
3938         * gnulib/import/m4/getpagesize.m4: Update.
3939         * gnulib/import/m4/getprogname.m4: Update.
3940         * gnulib/import/m4/gettimeofday.m4: Update.
3941         * gnulib/import/m4/glibc21.m4: Update.
3942         * gnulib/import/m4/glob.m4: Update.
3943         * gnulib/import/m4/glob_h.m4: Update.
3944         * gnulib/import/m4/gnulib-cache.m4: Update.
3945         * gnulib/import/m4/gnulib-common.m4: Update.
3946         * gnulib/import/m4/gnulib-comp.m4: Update.
3947         * gnulib/import/m4/gnulib-tool.m4: Update.
3948         * gnulib/import/m4/hard-locale.m4: Update.
3949         * gnulib/import/m4/include_next.m4: Update.
3950         * gnulib/import/m4/inttypes-pri.m4: Update.
3951         * gnulib/import/m4/inttypes.m4: Update.
3952         * gnulib/import/m4/isnand.m4: Update.
3953         * gnulib/import/m4/isnanl.m4: Update.
3954         * gnulib/import/m4/largefile.m4: Update.
3955         * gnulib/import/m4/limits-h.m4: Update.
3956         * gnulib/import/m4/localcharset.m4: Update.
3957         * gnulib/import/m4/locale-fr.m4: Update.
3958         * gnulib/import/m4/locale-ja.m4: Update.
3959         * gnulib/import/m4/locale-zh.m4: Update.
3960         * gnulib/import/m4/localtime-buffer.m4: Update.
3961         * gnulib/import/m4/longlong.m4: Update.
3962         * gnulib/import/m4/lstat.m4: Update.
3963         * gnulib/import/m4/malloc.m4: Update.
3964         * gnulib/import/m4/malloca.m4: Update.
3965         * gnulib/import/m4/math_h.m4: Update.
3966         * gnulib/import/m4/mbrtowc.m4: Update.
3967         * gnulib/import/m4/mbsinit.m4: Update.
3968         * gnulib/import/m4/mbsrtowcs.m4: Update.
3969         * gnulib/import/m4/mbstate_t.m4: Update.
3970         * gnulib/import/m4/memchr.m4: Update.
3971         * gnulib/import/m4/memmem.m4: Update.
3972         * gnulib/import/m4/mempcpy.m4: Update.
3973         * gnulib/import/m4/memrchr.m4: Update.
3974         * gnulib/import/m4/mkdir.m4: Update.
3975         * gnulib/import/m4/mkstemp.m4: Update.
3976         * gnulib/import/m4/mmap-anon.m4: Update.
3977         * gnulib/import/m4/mode_t.m4: Update.
3978         * gnulib/import/m4/msvc-inval.m4: Update.
3979         * gnulib/import/m4/msvc-nothrow.m4: Update.
3980         * gnulib/import/m4/multiarch.m4: Update.
3981         * gnulib/import/m4/nocrash.m4: Update.
3982         * gnulib/import/m4/off_t.m4: Update.
3983         * gnulib/import/m4/onceonly.m4: Update.
3984         * gnulib/import/m4/open-cloexec.m4: Update.
3985         * gnulib/import/m4/open.m4: Update.
3986         * gnulib/import/m4/openat.m4: Update.
3987         * gnulib/import/m4/opendir.m4: Update.
3988         * gnulib/import/m4/pathmax.m4: Update.
3989         * gnulib/import/m4/rawmemchr.m4: Update.
3990         * gnulib/import/m4/readdir.m4: Update.
3991         * gnulib/import/m4/readlink.m4: Update.
3992         * gnulib/import/m4/realloc.m4: Update.
3993         * gnulib/import/m4/rename.m4: Update.
3994         * gnulib/import/m4/rewinddir.m4: Update.
3995         * gnulib/import/m4/rmdir.m4: Update.
3996         * gnulib/import/m4/save-cwd.m4: Update.
3997         * gnulib/import/m4/secure_getenv.m4: Update.
3998         * gnulib/import/m4/setenv.m4: Update.
3999         * gnulib/import/m4/signal_h.m4: Update.
4000         * gnulib/import/m4/ssize_t.m4: Update.
4001         * gnulib/import/m4/stat-time.m4: Update.
4002         * gnulib/import/m4/stat.m4: Update.
4003         * gnulib/import/m4/std-gnu11.m4: Update.
4004         * gnulib/import/m4/stdbool.m4: Update.
4005         * gnulib/import/m4/stddef_h.m4: Update.
4006         * gnulib/import/m4/stdint.m4: Update.
4007         * gnulib/import/m4/stdio_h.m4: Update.
4008         * gnulib/import/m4/stdlib_h.m4: Update.
4009         * gnulib/import/m4/strchrnul.m4: Update.
4010         * gnulib/import/m4/strdup.m4: Update.
4011         * gnulib/import/m4/strerror.m4: Update.
4012         * gnulib/import/m4/string_h.m4: Update.
4013         * gnulib/import/m4/strstr.m4: Update.
4014         * gnulib/import/m4/strtok_r.m4: Update.
4015         * gnulib/import/m4/sys_socket_h.m4: Update.
4016         * gnulib/import/m4/sys_stat_h.m4: Update.
4017         * gnulib/import/m4/sys_time_h.m4: Update.
4018         * gnulib/import/m4/sys_types_h.m4: Update.
4019         * gnulib/import/m4/tempname.m4: Update.
4020         * gnulib/import/m4/time_h.m4: Update.
4021         * gnulib/import/m4/unistd-safer.m4: Update.
4022         * gnulib/import/m4/unistd_h.m4: Update.
4023         * gnulib/import/m4/warn-on-use.m4: Update.
4024         * gnulib/import/m4/wchar_h.m4: Update.
4025         * gnulib/import/m4/wchar_t.m4: Update.
4026         * gnulib/import/m4/wctype_h.m4: Update.
4027         * gnulib/import/m4/wint_t.m4: Update.
4028         * gnulib/import/malloc.c: Update.
4029         * gnulib/import/malloc/scratch_buffer.h: Update.
4030         * gnulib/import/malloc/scratch_buffer_grow.c: Update.
4031         * gnulib/import/malloc/scratch_buffer_grow_preserve.c: Update.
4032         * gnulib/import/malloc/scratch_buffer_set_array_size.c: Update.
4033         * gnulib/import/malloca.c: Update.
4034         * gnulib/import/malloca.h: Update.
4035         * gnulib/import/malloca.valgrind: Update.
4036         * gnulib/import/math.in.h: Update.
4037         * gnulib/import/mbrtowc.c: Update.
4038         * gnulib/import/mbsinit.c: Update.
4039         * gnulib/import/mbsrtowcs-impl.h: Update.
4040         * gnulib/import/mbsrtowcs-state.c: Update.
4041         * gnulib/import/mbsrtowcs.c: Update.
4042         * gnulib/import/memchr.c: Update.
4043         * gnulib/import/memmem.c: Update.
4044         * gnulib/import/mempcpy.c: Update.
4045         * gnulib/import/memrchr.c: Update.
4046         * gnulib/import/mkdir.c: Update.
4047         * gnulib/import/mkstemp.c: Update.
4048         * gnulib/import/msvc-inval.c: Update.
4049         * gnulib/import/msvc-inval.h: Update.
4050         * gnulib/import/msvc-nothrow.c: Update.
4051         * gnulib/import/msvc-nothrow.h: Update.
4052         * gnulib/import/open.c: Update.
4053         * gnulib/import/openat-die.c: Update.
4054         * gnulib/import/openat-priv.h: Update.
4055         * gnulib/import/openat-proc.c: Update.
4056         * gnulib/import/openat.c: Update.
4057         * gnulib/import/openat.h: Update.
4058         * gnulib/import/opendir.c: Update.
4059         * gnulib/import/pathmax.h: Update.
4060         * gnulib/import/pipe-safer.c: Update.
4061         * gnulib/import/rawmemchr.c: Update.
4062         * gnulib/import/readdir.c: Update.
4063         * gnulib/import/readlink.c: Update.
4064         * gnulib/import/realloc.c: Update.
4065         * gnulib/import/ref-add.sin: Update.
4066         * gnulib/import/ref-del.sin: Update.
4067         * gnulib/import/rename.c: Update.
4068         * gnulib/import/rewinddir.c: Update.
4069         * gnulib/import/rmdir.c: Update.
4070         * gnulib/import/same-inode.h: Update.
4071         * gnulib/import/save-cwd.c: Update.
4072         * gnulib/import/save-cwd.h: Update.
4073         * gnulib/import/scratch_buffer.h: Update.
4074         * gnulib/import/secure_getenv.c: Update.
4075         * gnulib/import/setenv.c: Update.
4076         * gnulib/import/signal.in.h: Update.
4077         * gnulib/import/stat-time.c: Update.
4078         * gnulib/import/stat-time.h: Update.
4079         * gnulib/import/stat-w32.c: Update.
4080         * gnulib/import/stat-w32.h: Update.
4081         * gnulib/import/stat.c: Update.
4082         * gnulib/import/stdbool.in.h: Update.
4083         * gnulib/import/stddef.in.h: Update.
4084         * gnulib/import/stdint.in.h: Update.
4085         * gnulib/import/stdio.in.h: Update.
4086         * gnulib/import/stdlib.in.h: Update.
4087         * gnulib/import/str-two-way.h: Update.
4088         * gnulib/import/strchrnul.c: Update.
4089         * gnulib/import/strdup.c: Update.
4090         * gnulib/import/streq.h: Update.
4091         * gnulib/import/strerror-override.c: Update.
4092         * gnulib/import/strerror-override.h: Update.
4093         * gnulib/import/strerror.c: Update.
4094         * gnulib/import/string.in.h: Update.
4095         * gnulib/import/stripslash.c: Update.
4096         * gnulib/import/strnlen1.c: Update.
4097         * gnulib/import/strnlen1.h: Update.
4098         * gnulib/import/strstr.c: Update.
4099         * gnulib/import/strtok_r.c: Update.
4100         * gnulib/import/sys_stat.in.h: Update.
4101         * gnulib/import/sys_time.in.h: Update.
4102         * gnulib/import/sys_types.in.h: Update.
4103         * gnulib/import/tempname.c: Update.
4104         * gnulib/import/tempname.h: Update.
4105         * gnulib/import/time.in.h: Update.
4106         * gnulib/import/unistd--.h: Update.
4107         * gnulib/import/unistd-safer.h: Update.
4108         * gnulib/import/unistd.in.h: Update.
4109         * gnulib/import/unsetenv.c: Update.
4110         * gnulib/import/verify.h: Update.
4111         * gnulib/import/extra/snippet/warn-on-use.h: Update.
4112         * gnulib/import/wchar.in.h: Update.
4113         * gnulib/import/wctype.in.h: Update.
4114         * gnulib/import/xalloc-oversized.h: Update.
4115         * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
4116         "53e2c179f26a890fa6685af4b6c1397ee370433b".
4117
4118 2018-09-10  Simon Marchi  <simon.marchi@ericsson.com>
4119
4120         * record-btrace.c (get_thread_current_frame): Remove
4121         old_inferior_ptid.
4122
4123 2018-09-10  Jerome Guitton  <guitton@adacore.com>
4124
4125         * ada-lang.c (ada_value_struct_elt): Call ada_to_fixed_type
4126         with check_tag to 1 if and only if the type is tagged and the
4127         component being searched cannot been found in the current
4128         view. Otherwise, always call ada_to_fixed_type with
4129         check_tag to 0.
4130
4131 2018-09-10  Xavier Roirand  <roirand@adacore.com>
4132
4133         * ada-lang.c (ada_is_access_to_unconstrained_array): Remove static
4134         declaration.
4135         * ada-lang.h: add ada_is_access_to_unconstrained_array prototype.
4136         * ada-varobj.c (ada_varobj_get_number_of_children,
4137         ada_varobj_describe_child, ada_value_is_changeable_p): Cleanup code.
4138
4139 2018-09-10  Xavier Roirand  <roirand@adacore.com>
4140
4141         * ada-valprint.c (ada_value_print): Use type instead of
4142         enclosing type.
4143
4144 2018-09-10  Xavier Roirand  <roirand@adacore.com>
4145
4146         * ada-lang.c (ada_value_subscript): Handle case when parameter is
4147         an array of access to unconstrained array.
4148
4149 2018-09-10  Xavier Roirand  <roirand@adacore.com>
4150
4151         * ada-lang.c (ada_is_access_to_unconstrained_array): New function.
4152         (ada_check_typedef): Use it.
4153
4154 2018-09-10  Xavier Roirand  <roirand@adacore.com>
4155
4156         * ada-varobj.c (ada_varobj_describe_struct_child)
4157         (ada_varobj_describe_child): Handle union case like struct one.
4158
4159 2018-09-10  Tom Tromey  <tom@tromey.com>
4160
4161         PR python/18380:
4162         * python/python.c (_initialize_python): Make example in "python"
4163         help work in Python 3.
4164
4165 2018-09-10  Eli Zaretskii  <eliz@gnu.org>
4166
4167         * Makefile.in (transformed_name): Use INSTALL_SCRIPT instead of
4168         INSTALL_PROGRAM to install gdb-add-index.sh.  Don't append
4169         $(EXEEXT) to the script, as it is not a program.
4170
4171 2018-09-09  Simon Marchi  <simon.marchi@ericsson.com>
4172
4173         * python/py-prettyprint.c (pretty_print_one_value): Return
4174         gdbpy_ref<>.
4175         (print_string_repr): Adjust.
4176         (apply_varobj_pretty_printer): Return gdbpy_ref<>.
4177         * python/python-internal.h (apply_varobj_pretty_printer): Return
4178         gdbpy_ref<>.
4179         * varobj.c (varobj_value_get_print_value): Adjust.
4180
4181 2018-09-08  Tom Tromey  <tom@tromey.com>
4182
4183         PR python/16047:
4184         * python/py-prettyprint.c (pretty_print_one_value): Check for
4185         to_string method.
4186
4187 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
4188
4189         * ada-lang.c (resolve_subexp): Pass correct OPLEN in call to
4190         replace_operator_with_call.
4191
4192 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
4193
4194         * ada-lang.c (ada_value_cast): Remove unnecessary parentheses.
4195
4196 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
4197
4198         * ada-typeprint.c (print_range): Print the bounds using TYPE
4199         rather than its TYPE_TARGET_TYPE.
4200
4201 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
4202
4203         * ada-lang.c (ada_to_fixed_value): Minor reformatting in
4204         call to ada_to_fixed_value_create.
4205
4206 2018-09-08  Jerome Guitton  <guitton@adacore.com>
4207
4208         * ada-lang.c (ada_decode): strip dot prefix in symbol name.
4209
4210 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
4211
4212         * ada-lang.c (ada_exception_sal): Replace gdb_assert calls
4213         by calls to error.
4214
4215 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
4216
4217         * ada-lang.c (ada_unhandled_exception_name_addr_from_raise):
4218         Move update of loop variable "fi".
4219
4220 2018-09-08  Joel Brobecker  <brobecker@adacore.com>
4221
4222         * ada-lang.c (value_assign_to_component): In the case of
4223         big-endian targets, extract the bits of the given VAL
4224         using an src_offset of zero if container is not a scalar.
4225
4226 2018-09-06  Simon Ser  <contact@emersion.fr>
4227
4228         PR gdb/23105
4229         * fbsd-nat.c (fbsd_nat_target::xfer_partial): Add support for
4230         TARGET_OBJECT_FREEBSD_VMMAP and TARGET_OBJECT_FREEBSD_PS_STRINGS.
4231         * fbsd-tdep.c (fbsd_make_note_desc): New.
4232         (fbsd_make_corefile_notes): Write NT_PROCSTAT_AUXV,
4233         NT_PROCSTAT_VMMAP and NT_PROCSTAT_PS_STRINGS notes.
4234         * target.h (enum target_object) Add FreeBSD-specific
4235         TARGET_OBJECT_FREEBSD_VMMAP and TARGET_OBJECT_FREEBSD_PS_STRINGS.
4236
4237 2018-09-06  Simon Marchi  <simon.marchi@ericsson.com>
4238
4239         * compile/compile-c.h (generate_c_for_variable_locations):
4240         Change reference to pointer.
4241         * compile/compile-c-support.c (compile_program) <compute>:
4242         Likewise.
4243         * compile/compile-c-symbols.c (generate_vla_size): Likewise.
4244         (generate_c_for_for_one_variable): Likewise
4245         (generate_c_for_variable_locations): Likewise
4246         * compile/compile-c-types.c (compile_c_instance::convert_type):
4247         Likewise
4248         * compile/compile-cplus-symbols.c (convert_one_symbol):
4249         std::move the scope passed to enter_scope.
4250         * compile/compile-cplus-types.c
4251         (compile_cplus_instance::enter_scope): Make parameter
4252         rvalue-reference.
4253         (compile_cplus_instance::new_scope): Change reference to
4254         pointer.
4255         (compile_cplus_instance::convert_type): Likewise
4256         (compile_cplus_convert_typedef): std::move the scope passed to
4257         enter_scope.
4258         (compile_cplus_convert_struct_or_union): Likewise.
4259         (compile_cplus_convert_enum): Likewise.
4260         (compile_cplus_convert_namespace): Likewise.
4261         * compile/compile-cplus.h (compile_cplus_instance)
4262         <enter_scope>: Make parameter rvalue-reference.
4263         * compile/compile-internal.h (compile_instance)
4264         <get_cached_type>: Likewise
4265         * compile/compile-loc2c.c (push): Likewise
4266         (pushf): Likewise
4267         (unary): Likewise
4268         (binary): Likewise
4269         (print_label): Likewise
4270         (pushf_register_address): Likewise
4271         (pushf_register): Likewise
4272         (do_compile_dwarf_expr_to_c): Likewise
4273         (compile_dwarf_expr_to_c): Likewise
4274         (compile_dwarf_bounds_to_c): Likewise
4275         * compile/compile.c (compile_instance::get_cached_type):
4276         Likewise
4277         * compile/compile.h (compile_dwarf_expr_to_c): Likewise.
4278         (compile_dwarf_bounds_to_c): Likewise
4279         * dwarf2loc.c (locexpr_generate_c_location): Likewise.
4280         (dwarf2_compile_property_to_c): Likewise
4281         * dwarf2loc.h (dwarf2_compile_property_to_c): Likewise
4282         * symtab.h (struct symbol_computed_ops) <generate_c_location>:
4283         Likewise
4284
4285 2018-09-06  Simon Marchi  <simon.marchi@ericsson.com>
4286
4287         * tui/tui-data.h (struct tui_win_element) <highlight>: Remove.
4288         * tui/tui-data.c (init_content_element): Don't initialize it.
4289
4290 2018-09-06  Simon Marchi  <simon.marchi@ericsson.com>
4291
4292         * tui/tui-data.h (struct tui_win_info)
4293         <detail::opaque>: Remove.
4294         * tui/tui-data.c (init_win_info): Remove assignment.
4295
4296 2018-09-05  Tom Tromey  <tom@tromey.com>
4297
4298         * warning.m4 (AM_GDB_WARNINGS): Add -Wformat when testing
4299         -Wformat-nonliteral.
4300         * target-float.c (host_float_ops<T>::to_string)
4301         (host_float_ops<T>::from_string): Use
4302         DIAGNOSTIC_IGNORE_FORMAT_NONLITERAL.
4303         * configure: Rebuild.
4304
4305 2018-09-05  Simon Marchi  <simon.marchi@ericsson.com>
4306
4307         * printcmd.c (printf_c_string): Use
4308         DIAGNOSTIC_IGNORE_FORMAT_NONLITERAL.
4309         (printf_wide_c_string, printf_pointer, ui_printf): Likewise.
4310
4311 2018-09-05  Tom Tromey  <tom@tromey.com>
4312
4313         * cli/cli-cmds.c (shell_escape, edit_command): Remove cast.
4314
4315 2018-09-05  Tom de Vries  <tdevries@suse.de>
4316
4317         * dwarf2loc.c (sect_variable_value): Call indirect_synthetic_pointer
4318         with resolve_abstract_p == true.
4319         (indirect_synthetic_pointer): Add resolve_abstract_p parameter,
4320         defaulting to false. Propagate resolve_abstract_p to
4321         dwarf2_fetch_die_loc_sect_off.
4322         * dwarf2loc.h (dwarf2_fetch_die_loc_sect_off): Add resolve_abstract_p
4323         parameter, defaulting to false.
4324         * dwarf2read.c (read_variable): Add variable to abstract_to_concrete.
4325         (dwarf2_fetch_die_loc_sect_off): Add and handle resolve_abstract_p
4326         parameter.
4327         * dwarf2read.h (struct die_info): Forward-declare.
4328         (die_info_ptr): New typedef.
4329         (struct dwarf2_per_objfile): Add abstract_to_concrete field.
4330
4331 2018-09-05  Joel Brobecker  <brobecker@adacore.com>
4332
4333         GDB 8.2 released.
4334
4335 2018-09-04  Sergio Durigan Junior  <sergiodj@redhat.com>
4336             Pedro Alves  <palves@redhat.com>
4337
4338         * gnulib/Makefile.in (aclocal_m4_deps): Move to
4339         "aclocal-m4-deps.mk".  Include file here.
4340         $(srcdir)/aclocal.m4: Add "configure.ac".
4341         * gnulib/aclocal-m4-deps.mk: New file.
4342         * gnulib/update-gnulib.sh: Automatically update
4343         "aclocal-m4-deps.mk".
4344
4345 2018-09-04  Tom Tromey  <tom@tromey.com>
4346
4347         * configure: Rebuild.
4348         * configure.ac: Remove multi-ice code.
4349
4350 2018-09-04  Tom Tromey  <tom@tromey.com>
4351
4352         * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS): Remove.
4353         (ada-exp.o): Update.
4354
4355 2018-09-04  Tom Tromey  <tom@tromey.com>
4356
4357         * Makefile.in (printcmd.o, target-float.o): Remove.
4358         (GDB_WARN_CFLAGS_NO_FORMAT): Remove.
4359
4360 2018-09-04  Tom Tromey  <tom@tromey.com>
4361
4362         * gnulib/Makefile.in: Remove obsolete comment.
4363         * Makefile.in: Remove obsolete comment.
4364
4365 2018-09-04  Andrew Burgess  <andrew.burgess@embecosm.com>
4366
4367         * riscv-tdep.c (riscv_frame_cache): Fix ARI warning, don't end a
4368         line with '+'.
4369
4370 2018-09-03  Andrew Burgess  <andrew.burgess@embecosm.com>
4371
4372         * riscv-tdep.c: Add 'prologue-value.h' include.
4373         (struct riscv_unwind_cache): New struct.
4374         (riscv_debug_unwinder): New global.
4375         (riscv_scan_prologue): Update arguments, capture register details
4376         from prologue scan.
4377         (riscv_skip_prologue): Reformat arguments line, move end of
4378         prologue calculation into riscv_scan_prologue.
4379         (riscv_frame_cache): Update return type, create
4380         riscv_unwind_cache, scan the prologue, and fill in remaining cache
4381         details.
4382         (riscv_frame_this_id): Use frame id computed in riscv_frame_cache.
4383         (riscv_frame_prev_register): Use the trad_frame within the
4384         riscv_unwind_cache.
4385         (_initialize_riscv_tdep): Add 'set/show debug riscv unwinder'
4386         flag.
4387
4388 2018-09-03  Andrew Burgess  <andrew.burgess@embecosm.com>
4389
4390         * trad-frame.h (trad_frame_set_realreg): Declare.
4391         (trad_frame_set_addr): Declare.
4392         * trad-frame.c (trad_frame_set_realreg): Define new function.
4393         (trad_frame_set_addr): Define new function.
4394         (trad_frame_set_reg_realreg): Use new function.
4395         (trad_frame_set_reg_addr): Use new function.
4396
4397 2018-09-01  Keith Seitz  <keiths@redhat.com>
4398
4399         * compile/compile-cplus-types.c (compile_cplus_debug_output_1): Use
4400         pulongest instead of "%lld".
4401         * compile/compile-cplus-symbols.c (gcc_cplus_convert_symbol): Remove
4402         ATTRIBUTE_UNUSED.
4403
4404 2018-08-31  Tom Tromey  <tom@tromey.com>
4405
4406         * dwarf2read.c (dwarf2_add_field): Set the TYPE_LENGTH of the
4407         variant part type.
4408
4409 2018-08-31  Pedro Alves  <palves@redhat.com>
4410
4411         * gdbarch.h: Regenerate.
4412
4413 2018-08-31  Pedro Alves  <palves@redhat.com>
4414
4415         * gdbarch.sh (have_nonsteppable_watchpoint): Add comment.
4416         * target.h (Hardware watchpoint interfaces): Describe
4417         continuable/steppable/non-steppable watchpoints.
4418         * gdbarch.h, gdbarch.c: Regenerate.
4419
4420 2018-08-31  Pedro Alves  <palves@redhat.com>
4421
4422         * nto-procfs.c (nto_procfs_target::have_continuable_watchpoint):
4423         Delete.
4424         * s390-linux-nat.c
4425         (s390_linux_nat_target::have_continuable_watchpoint): Delete.
4426         * target.h (target_ops::have_continuable_watchpoint): Delete.
4427         (target_have_continuable_watchpoint): Delete.
4428         * x86-nat.h (x86_nat_target::have_continuable_watchpoint): Delete.
4429         * target-delegates.c: Regenerate.
4430
4431 2018-08-31  Sergio Durigan Junior  <sergiodj@redhat.com>
4432
4433         * gnulib/Makefile.in (aclocal_m4_deps): Update according to
4434         the files present in "gnulib/import/m4/".
4435
4436 2018-08-30  Andrew Burgess  <andrew.burgess@embecosm.com>
4437
4438         * riscv-tdep.c (riscv_insn::decode): Decode c.addi4spn, c.sd,
4439         c.sw, c.swsp, and c.sdsp.
4440
4441 2018-08-30  Andrew Burgess  <andrew.burgess@embecosm.com>
4442
4443         * riscv-tdep.c (struct riscv_inferior_data): Delete.
4444         (riscv_read_misa_reg): Don't cache value read into inferior data.
4445         (riscv_new_inferior_data): Delete.
4446         (riscv_inferior_data_cleanup): Delete.
4447         (riscv_inferior_data): Delete.
4448         (riscv_invalidate_inferior_data): Delete.
4449         (_initialize_riscv_tdep): Remove initialisation of inferior data.
4450
4451 2018-08-30  Simon Marchi  <simon.marchi@ericsson.com>
4452
4453         * compile/compile-cplus-types.c
4454         (compile_cplus_instance::leave_scope): Take the address of scope
4455         object.
4456         (compile_cplus_instance::convert_qualified_base): Compare quals
4457         to 0.
4458
4459 2018-08-30  Keith Seitz  <keiths@redhat.com>
4460
4461         * compile/compile-cplus-types.c (compile_cplus_instance::enter_scope):
4462         Use "%s" and host_address_to_string instead of "%p" in printf.
4463
4464 2018-08-29  Keith Seitz  <keiths@redhat.com>
4465
4466         * Makefile.in (SUBDIR_GCC_COMPILE_SRCS): Add compile-cplus-symbols.c
4467         and compile-cplus-types.c.
4468         (HFILES_NO_SRCDIR): Add gcc-cp-plugin.h.
4469         * c-lang.c (cplus_language_defn): Set C++ compile functions.
4470         * c-lang.h (cplus_get_compile_context, cplus_compute_program):
4471         Declare.
4472         * compile/compile-c-support.c: Include compile-cplus.h.
4473         (load_libcompile): Templatize.
4474         (get_compile_context): "New" function.
4475         (c_get_compile_context): Use get_compile_context.
4476         (cplus_get_compile_context): New function.
4477         (cplus_push_user_expression, cplus_pop_user_expression)
4478         (cplus_add_code_header, cplus_add_input, cplus_compile_program)
4479         (cplus_compute_program): Define new structs/functions.
4480         * compile/compile-cplus-symmbols.c: New file.
4481         * compile/compile-cplus-types.c: New file.
4482         * compile/compile-cplus.h: New file.
4483         * compile/compile-internal.h (debug_compile_oracle, GCC_TYPE_NONE):
4484         Declare.
4485         * compile/compile-object-load.c (get_out_value_type): Use
4486         strncmp_iw when comparing symbol names.
4487         (compile_object_load): Add mst_bss and mst_data.
4488         * compile/compile.c (_initialize_compile): Remove
4489         -Wno-implicit-function-declaration from `compile_args'.
4490         * compile/gcc-cp-plugin.h: New file.
4491         * NEWS: Mention C++ compile support and new debug options.
4492
4493 2018-08-29  Keith Seitz  <keiths@redhat.com>
4494
4495         * linespec.c (collect_info::add_symbol): Make virtual.
4496         (struct symbol_searcher_collect_info): New struct.
4497         (symbol_searcher::find_all_symbols): New method.
4498         * symtab.h (class symbol_searcher): New class.
4499
4500 2018-08-29  Keith Seitz  <keiths@redhat.com>
4501
4502         * linespec.c (struct linespec) <function_symbols, label_symbols>:
4503         Change to vector of block_symbol.  Update all users.
4504         (struct collect_info) <symbols>: Likewise.
4505         (collect_info::add_symbol): Take block_symbol as argument.
4506         Update all callers.
4507         (decode_compound_collector) <m_symbols>: Change type to vector
4508         of block_symbol.  Update all users.
4509         (decode_compound_collector::operator ()): Change parameter type
4510         to block_symbol.
4511         (find_method, find_function_symbols, find_linespec_symbols)
4512         (find_label_symbols_in_block, find_label_symbols): Change symbol
4513         vectors to block_symbol vectors.
4514         * symtab.h (symbol_found_callback_ftype): Change parameter type to
4515         block_symbol.
4516
4517 2018-08-29  Keith Seitz  <keiths@redhat.com>
4518
4519         * linespec.c (symbolp): Remove typedef and VEC definitions.
4520         (bound_minimal_symbol_d): Likewise.
4521
4522 2018-08-29  Keith Seitz  <keiths@redhat.com>
4523
4524         * linespec.c (decode_compound_collector::decode_compound_collector):
4525         Remove initialization for `m_symtabs'.
4526         (decode_compound_collector::release_symbols): Change return type
4527         to std::vector.  Update all callers.
4528         (class decode_compound_collector) <m_symbols>: Change type to
4529         std::vector.
4530         (lookup_prefix_sym): Change return type to std::vector.  Update all
4531         callers.
4532         (compare_symbols): Remove.
4533         (std_compare_symbols): Rename to `compare_symbols'.
4534         (find_method): Change `sym_classes' parameter to std::vector.
4535         Update all callers.  Use std::sort to sort sym_classes.
4536         (find_linespec_symbols): Remove cleanup.
4537
4538 2018-08-29  Keith Seitz  <keiths@redhat.com>
4539
4540         * linespec.c (struct linespec) <minimal_symbols>: Change type to
4541         std::vector.  Update all users.
4542         (convert_linespec_to_sals): Use std::sort to sort minimal symbols.
4543         (struct collect_info) <minimal_symbols>: Likewise.
4544         (compare_msymbols): Return bool.  Change parameters to const
4545         bound_minimal_symbol references.
4546         (find_method, find_function_symbols, find_linespec_symbols): Change
4547         `minsyms' parameter to std::vector.  Update all callers.
4548
4549 2018-08-29  Keith Seitz  <keiths@redhat.com>
4550
4551         * linespec.c (struct linespec) <label_symbols>: Change type to
4552         std::vector.  Update all users.
4553         (find_label_symbols_in_block): Change `result' parameter to
4554         std::vector.  Update all callers.
4555         (find_label_symbols): Return std::vector.  Update all callers.
4556
4557 2018-08-29  Keith Seitz  <keiths@redhat.com>
4558
4559         * linespec.c (struct linespec) <function_symbols>: Change type to
4560         std::vector.  Update all users.
4561         (struct collect_info) <function_symbols>: Likewise.
4562         (convert_linespec_to_sals): Use std::sort to sort function_symbols.
4563         (std_compare_symbols): New function.
4564         (find_method, find_function_symbols, find_linespec_symbols)
4565         (find_label_symbols_in_block): Change `symbols' parameter to
4566         std::vector.  Update all callers.
4567         (find_label_symbols): Likewise for `function_symbols' and
4568         `label_funcs_ret'.
4569
4570 2018-08-29  Keith Seitz  <keiths@redhat.com>
4571
4572         * linespec.c (symtab_vector_up): Define.
4573         (struct linespec) <file_symtabs>: Change type to std::vector *.
4574         Update all uses.
4575         (struct collect_info) <file_symtabs>: Likewise.
4576         (collect_symtabs_from_filename): Return symtab_vector_up.
4577         Update all callers.
4578         (decode_objc): Remove cleanup.
4579         (symtab_collector::symtab_collector): Initialize `m_symtabs'.
4580         (symtab_collector::release_symtabs): Return symtab_vector_up.
4581         Update all callers.
4582         (class symtab_collector) <m_symtabs>: Change type to symtab_vector_up.
4583         Update all users.
4584         (collect_symtabs_from_filename, symtabs_from_filename): Return
4585         symtab_vector_up.  Update all callers.
4586
4587 2018-08-29  Tom Tromey  <tom@tromey.com>
4588
4589         * csky-tdep.c (csky_analyze_prologue): Use
4590         core_addr_to_string_nz.
4591
4592 2018-08-29  Tom Tromey  <tom@tromey.com>
4593
4594         * windows-nat.c (struct xlate_exception) <them>: Change type to
4595         DWORD.
4596         (xlate): Fix formatting.  Remove last entry.
4597         (struct xlate_exception, xlate): Comment out.
4598         (windows_nat_target::resume): Use ranged for.
4599
4600 2018-08-29  Jim Wilson  <jimw@sifive.com>
4601
4602         * riscv-linux-nat.c: Include elf/common.h instead of elf.h.
4603         (riscv_linux_nat_target::fetch_registers): Use NT_FPREGSET instead
4604         of NT_PRFPREG.
4605         (riscv_linux_nat_target::store_registers): Likewise.
4606
4607 2018-08-29  Sergio Durigan Junior  <sergiodj@redhat.com>
4608
4609         PR gdb/23555
4610         PR gdb/23558
4611         * gnulib/aclocal.m4: Regenerate.
4612         * gnulib/config.in: Regenerate.
4613         * gnulib/configure: Regenerate.
4614         * gnulib/import/Makefile.am: Update.
4615         * gnulib/import/Makefile.in: Update.
4616         * gnulib/import/extra/snippet/_Noreturn.h: Rename to...
4617         * gnulib/import/_Noreturn.h: ... this.
4618         * gnulib/import/alloca.in.h: Update.
4619         * gnulib/import/extra/snippet/arg-nonnull.h: Rename to...
4620         * gnulib/import/arg-nonnull.h: ... this.
4621         * gnulib/import/assure.h: Update.
4622         * gnulib/import/at-func.c: Update.
4623         * gnulib/import/basename-lgpl.c: Update.
4624         * gnulib/import/extra/snippet/c++defs.h: Rename to...
4625         * gnulib/import/c++defs.h: ... this.
4626         * gnulib/import/canonicalize-lgpl.c: Update.
4627         * gnulib/import/cdefs.h: Update.
4628         * gnulib/import/chdir-long.c: Update.
4629         * gnulib/import/chdir-long.h: Update.
4630         * gnulib/import/cloexec.c: Update.
4631         * gnulib/import/cloexec.h: Update.
4632         * gnulib/import/close.c: Update.
4633         * gnulib/import/closedir.c: Update.
4634         * gnulib/import/config.charset: Update.
4635         * gnulib/import/dirent-private.h: Update.
4636         * gnulib/import/dirent.in.h: Update.
4637         * gnulib/import/dirfd.c: Update.
4638         * gnulib/import/dirname-lgpl.c: Update.
4639         * gnulib/import/dirname.h: Update.
4640         * gnulib/import/dosname.h: Update.
4641         * gnulib/import/dup-safer-flag.c: Update.
4642         * gnulib/import/dup-safer.c: Update.
4643         * gnulib/import/dup.c: Update.
4644         * gnulib/import/dup2.c: Update.
4645         * gnulib/import/errno.in.h: Update.
4646         * gnulib/import/error.c: Update.
4647         * gnulib/import/error.h: Update.
4648         * gnulib/import/exitfail.c: Update.
4649         * gnulib/import/exitfail.h: Update.
4650         * gnulib/import/extra/update-copyright: Update.
4651         * gnulib/import/fchdir.c: Update.
4652         * gnulib/import/fcntl.c: Update.
4653         * gnulib/import/fcntl.in.h: Update.
4654         * gnulib/import/fd-hook.c: Update.
4655         * gnulib/import/fd-hook.h: Update.
4656         * gnulib/import/fd-safer-flag.c: Update.
4657         * gnulib/import/fd-safer.c: Update.
4658         * gnulib/import/fdopendir.c: Update.
4659         * gnulib/import/filename.h: Update.
4660         * gnulib/import/filenamecat-lgpl.c: Update.
4661         * gnulib/import/filenamecat.h: Update.
4662         * gnulib/import/flexmember.h: Update.
4663         * gnulib/import/float+.h: Update.
4664         * gnulib/import/float.c: Update.
4665         * gnulib/import/float.in.h: Update.
4666         * gnulib/import/fnmatch.c: Update.
4667         * gnulib/import/fnmatch.in.h: Update.
4668         * gnulib/import/fnmatch_loop.c: Update.
4669         * gnulib/import/fpucw.h: Update.
4670         * gnulib/import/frexp.c: Update.
4671         * gnulib/import/frexpl.c: Update.
4672         * gnulib/import/fstat.c: Update.
4673         * gnulib/import/fstatat.c: Update.
4674         * gnulib/import/getcwd-lgpl.c: Update.
4675         * gnulib/import/getcwd.c: Update.
4676         * gnulib/import/getdtablesize.c: Update.
4677         * gnulib/import/getlogin_r.c: Update.
4678         * gnulib/import/getprogname.c: Update.
4679         * gnulib/import/getprogname.h: Update.
4680         * gnulib/import/gettext.h: Update.
4681         * gnulib/import/gettimeofday.c: Update.
4682         * gnulib/import/glob-libc.h: Update.
4683         * gnulib/import/glob.c: Update.
4684         * gnulib/import/glob.in.h: Update.
4685         * gnulib/import/glob_internal.h: Update.
4686         * gnulib/import/glob_pattern_p.c: Update.
4687         * gnulib/import/globfree.c: Update.
4688         * gnulib/import/hard-locale.c: Update.
4689         * gnulib/import/hard-locale.h: Update.
4690         * gnulib/import/intprops.h: Update.
4691         * gnulib/import/inttypes.in.h: Update.
4692         * gnulib/import/isnan.c: Update.
4693         * gnulib/import/isnand-nolibm.h: Update.
4694         * gnulib/import/isnand.c: Update.
4695         * gnulib/import/isnanl-nolibm.h: Update.
4696         * gnulib/import/isnanl.c: Update.
4697         * gnulib/import/itold.c: Update.
4698         * gnulib/import/libc-config.h: Update.
4699         * gnulib/import/limits.in.h: Update.
4700         * gnulib/import/localcharset.c: Update.
4701         * gnulib/import/localcharset.h: Update.
4702         * gnulib/import/localtime-buffer.c: Update.
4703         * gnulib/import/localtime-buffer.h: Update.
4704         * gnulib/import/lstat.c: Update.
4705         * gnulib/import/m4/00gnulib.m4: Update.
4706         * gnulib/import/m4/__inline.m4: Update.
4707         * gnulib/import/m4/absolute-header.m4: Update.
4708         * gnulib/import/m4/alloca.m4: Update.
4709         * gnulib/import/m4/builtin-expect.m4: Update.
4710         * gnulib/import/m4/canonicalize.m4: Update.
4711         * gnulib/import/m4/chdir-long.m4: Update.
4712         * gnulib/import/m4/close.m4: Update.
4713         * gnulib/import/m4/closedir.m4: Update.
4714         * gnulib/import/m4/configmake.m4: Update.
4715         * gnulib/import/m4/d-ino.m4: Update.
4716         * gnulib/import/m4/d-type.m4: Update.
4717         * gnulib/import/m4/dirent_h.m4: Update.
4718         * gnulib/import/m4/dirfd.m4: Update.
4719         * gnulib/import/m4/dirname.m4: Update.
4720         * gnulib/import/m4/double-slash-root.m4: Update.
4721         * gnulib/import/m4/dup.m4: Update.
4722         * gnulib/import/m4/dup2.m4: Update.
4723         * gnulib/import/m4/eealloc.m4: Update.
4724         * gnulib/import/m4/environ.m4: Update.
4725         * gnulib/import/m4/errno_h.m4: Update.
4726         * gnulib/import/m4/error.m4: Update.
4727         * gnulib/import/m4/exponentd.m4: Update.
4728         * gnulib/import/m4/exponentl.m4: Update.
4729         * gnulib/import/m4/extensions.m4: Update.
4730         * gnulib/import/m4/extern-inline.m4: Update.
4731         * gnulib/import/m4/fchdir.m4: Update.
4732         * gnulib/import/m4/fcntl-o.m4: Update.
4733         * gnulib/import/m4/fcntl.m4: Update.
4734         * gnulib/import/m4/fcntl_h.m4: Update.
4735         * gnulib/import/m4/fdopendir.m4: Update.
4736         * gnulib/import/m4/filenamecat.m4: Update.
4737         * gnulib/import/m4/flexmember.m4: Update.
4738         * gnulib/import/m4/float_h.m4: Update.
4739         * gnulib/import/m4/fnmatch.m4: Update.
4740         * gnulib/import/m4/fnmatch_h.m4: Update.
4741         * gnulib/import/m4/fpieee.m4: Update.
4742         * gnulib/import/m4/frexp.m4: Update.
4743         * gnulib/import/m4/frexpl.m4: Update.
4744         * gnulib/import/m4/fstat.m4: Update.
4745         * gnulib/import/m4/fstatat.m4: Update.
4746         * gnulib/import/m4/getcwd-abort-bug.m4: Update.
4747         * gnulib/import/m4/getcwd-path-max.m4: Update.
4748         * gnulib/import/m4/getcwd.m4: Update.
4749         * gnulib/import/m4/getdtablesize.m4: Update.
4750         * gnulib/import/m4/getlogin.m4: Update.
4751         * gnulib/import/m4/getlogin_r.m4: Update.
4752         * gnulib/import/m4/getpagesize.m4: Update.
4753         * gnulib/import/m4/getprogname.m4: Update.
4754         * gnulib/import/m4/gettimeofday.m4: Update.
4755         * gnulib/import/m4/glibc21.m4: Update.
4756         * gnulib/import/m4/glob.m4: Update.
4757         * gnulib/import/m4/glob_h.m4: Update.
4758         * gnulib/import/m4/gnulib-cache.m4: Update.
4759         * gnulib/import/m4/gnulib-common.m4: Update.
4760         * gnulib/import/m4/gnulib-comp.m4: Update.
4761         * gnulib/import/m4/gnulib-tool.m4: Update.
4762         * gnulib/import/m4/hard-locale.m4: Update.
4763         * gnulib/import/m4/include_next.m4: Update.
4764         * gnulib/import/m4/inttypes-pri.m4: Update.
4765         * gnulib/import/m4/inttypes.m4: Update.
4766         * gnulib/import/m4/isnand.m4: Update.
4767         * gnulib/import/m4/isnanl.m4: Update.
4768         * gnulib/import/m4/largefile.m4: Update.
4769         * gnulib/import/m4/limits-h.m4: Update.
4770         * gnulib/import/m4/localcharset.m4: Update.
4771         * gnulib/import/m4/locale-fr.m4: Update.
4772         * gnulib/import/m4/locale-ja.m4: Update.
4773         * gnulib/import/m4/locale-zh.m4: Update.
4774         * gnulib/import/m4/localtime-buffer.m4: Update.
4775         * gnulib/import/m4/longlong.m4: Update.
4776         * gnulib/import/m4/lstat.m4: Update.
4777         * gnulib/import/m4/malloc.m4: Update.
4778         * gnulib/import/m4/malloca.m4: Update.
4779         * gnulib/import/m4/math_h.m4: Update.
4780         * gnulib/import/m4/mbrtowc.m4: Update.
4781         * gnulib/import/m4/mbsinit.m4: Update.
4782         * gnulib/import/m4/mbsrtowcs.m4: Update.
4783         * gnulib/import/m4/mbstate_t.m4: Update.
4784         * gnulib/import/m4/memchr.m4: Update.
4785         * gnulib/import/m4/memmem.m4: Update.
4786         * gnulib/import/m4/mempcpy.m4: Update.
4787         * gnulib/import/m4/memrchr.m4: Update.
4788         * gnulib/import/m4/mkdir.m4: Update.
4789         * gnulib/import/m4/mkstemp.m4: Update.
4790         * gnulib/import/m4/mmap-anon.m4: Update.
4791         * gnulib/import/m4/mode_t.m4: Update.
4792         * gnulib/import/m4/msvc-inval.m4: Update.
4793         * gnulib/import/m4/msvc-nothrow.m4: Update.
4794         * gnulib/import/m4/multiarch.m4: Update.
4795         * gnulib/import/m4/nocrash.m4: Update.
4796         * gnulib/import/m4/off_t.m4: Update.
4797         * gnulib/import/m4/onceonly.m4: Update.
4798         * gnulib/import/m4/open-cloexec.m4: Update.
4799         * gnulib/import/m4/open.m4: Update.
4800         * gnulib/import/m4/openat.m4: Update.
4801         * gnulib/import/m4/opendir.m4: Update.
4802         * gnulib/import/m4/pathmax.m4: Update.
4803         * gnulib/import/m4/rawmemchr.m4: Update.
4804         * gnulib/import/m4/readdir.m4: Update.
4805         * gnulib/import/m4/readlink.m4: Update.
4806         * gnulib/import/m4/realloc.m4: Update.
4807         * gnulib/import/m4/rename.m4: Update.
4808         * gnulib/import/m4/rewinddir.m4: Update.
4809         * gnulib/import/m4/rmdir.m4: Update.
4810         * gnulib/import/m4/save-cwd.m4: Update.
4811         * gnulib/import/m4/secure_getenv.m4: Update.
4812         * gnulib/import/m4/setenv.m4: Update.
4813         * gnulib/import/m4/signal_h.m4: Update.
4814         * gnulib/import/m4/ssize_t.m4: Update.
4815         * gnulib/import/m4/stat-time.m4: Update.
4816         * gnulib/import/m4/stat.m4: Update.
4817         * gnulib/import/m4/std-gnu11.m4: Update.
4818         * gnulib/import/m4/stdbool.m4: Update.
4819         * gnulib/import/m4/stddef_h.m4: Update.
4820         * gnulib/import/m4/stdint.m4: Update.
4821         * gnulib/import/m4/stdio_h.m4: Update.
4822         * gnulib/import/m4/stdlib_h.m4: Update.
4823         * gnulib/import/m4/strchrnul.m4: Update.
4824         * gnulib/import/m4/strdup.m4: Update.
4825         * gnulib/import/m4/strerror.m4: Update.
4826         * gnulib/import/m4/string_h.m4: Update.
4827         * gnulib/import/m4/strstr.m4: Update.
4828         * gnulib/import/m4/strtok_r.m4: Update.
4829         * gnulib/import/m4/sys_socket_h.m4: Update.
4830         * gnulib/import/m4/sys_stat_h.m4: Update.
4831         * gnulib/import/m4/sys_time_h.m4: Update.
4832         * gnulib/import/m4/sys_types_h.m4: Update.
4833         * gnulib/import/m4/tempname.m4: Update.
4834         * gnulib/import/m4/time_h.m4: Update.
4835         * gnulib/import/m4/unistd-safer.m4: Update.
4836         * gnulib/import/m4/unistd_h.m4: Update.
4837         * gnulib/import/m4/warn-on-use.m4: Update.
4838         * gnulib/import/m4/wchar_h.m4: Update.
4839         * gnulib/import/m4/wchar_t.m4: Update.
4840         * gnulib/import/m4/wctype_h.m4: Update.
4841         * gnulib/import/m4/wint_t.m4: Update.
4842         * gnulib/import/malloc.c: Update.
4843         * gnulib/import/malloc/scratch_buffer.h: Update.
4844         * gnulib/import/malloc/scratch_buffer_grow.c: Update.
4845         * gnulib/import/malloc/scratch_buffer_grow_preserve.c: Update.
4846         * gnulib/import/malloc/scratch_buffer_set_array_size.c: Update.
4847         * gnulib/import/malloca.c: Update.
4848         * gnulib/import/malloca.h: Update.
4849         * gnulib/import/malloca.valgrind: Update.
4850         * gnulib/import/math.in.h: Update.
4851         * gnulib/import/mbrtowc.c: Update.
4852         * gnulib/import/mbsinit.c: Update.
4853         * gnulib/import/mbsrtowcs-impl.h: Update.
4854         * gnulib/import/mbsrtowcs-state.c: Update.
4855         * gnulib/import/mbsrtowcs.c: Update.
4856         * gnulib/import/memchr.c: Update.
4857         * gnulib/import/memmem.c: Update.
4858         * gnulib/import/mempcpy.c: Update.
4859         * gnulib/import/memrchr.c: Update.
4860         * gnulib/import/mkdir.c: Update.
4861         * gnulib/import/mkstemp.c: Update.
4862         * gnulib/import/msvc-inval.c: Update.
4863         * gnulib/import/msvc-inval.h: Update.
4864         * gnulib/import/msvc-nothrow.c: Update.
4865         * gnulib/import/msvc-nothrow.h: Update.
4866         * gnulib/import/open.c: Update.
4867         * gnulib/import/openat-die.c: Update.
4868         * gnulib/import/openat-priv.h: Update.
4869         * gnulib/import/openat-proc.c: Update.
4870         * gnulib/import/openat.c: Update.
4871         * gnulib/import/openat.h: Update.
4872         * gnulib/import/opendir.c: Update.
4873         * gnulib/import/pathmax.h: Update.
4874         * gnulib/import/pipe-safer.c: Update.
4875         * gnulib/import/rawmemchr.c: Update.
4876         * gnulib/import/readdir.c: Update.
4877         * gnulib/import/readlink.c: Update.
4878         * gnulib/import/realloc.c: Update.
4879         * gnulib/import/ref-add.sin: Update.
4880         * gnulib/import/ref-del.sin: Update.
4881         * gnulib/import/rename.c: Update.
4882         * gnulib/import/rewinddir.c: Update.
4883         * gnulib/import/rmdir.c: Update.
4884         * gnulib/import/same-inode.h: Update.
4885         * gnulib/import/save-cwd.c: Update.
4886         * gnulib/import/save-cwd.h: Update.
4887         * gnulib/import/scratch_buffer.h: Update.
4888         * gnulib/import/secure_getenv.c: Update.
4889         * gnulib/import/setenv.c: Update.
4890         * gnulib/import/signal.in.h: Update.
4891         * gnulib/import/stat-time.c: Update.
4892         * gnulib/import/stat-time.h: Update.
4893         * gnulib/import/stat-w32.c: Update.
4894         * gnulib/import/stat-w32.h: Update.
4895         * gnulib/import/stat.c: Update.
4896         * gnulib/import/stdbool.in.h: Update.
4897         * gnulib/import/stddef.in.h: Update.
4898         * gnulib/import/stdint.in.h: Update.
4899         * gnulib/import/stdio.in.h: Update.
4900         * gnulib/import/stdlib.in.h: Update.
4901         * gnulib/import/str-two-way.h: Update.
4902         * gnulib/import/strchrnul.c: Update.
4903         * gnulib/import/strdup.c: Update.
4904         * gnulib/import/streq.h: Update.
4905         * gnulib/import/strerror-override.c: Update.
4906         * gnulib/import/strerror-override.h: Update.
4907         * gnulib/import/strerror.c: Update.
4908         * gnulib/import/string.in.h: Update.
4909         * gnulib/import/stripslash.c: Update.
4910         * gnulib/import/strnlen1.c: Update.
4911         * gnulib/import/strnlen1.h: Update.
4912         * gnulib/import/strstr.c: Update.
4913         * gnulib/import/strtok_r.c: Update.
4914         * gnulib/import/sys_stat.in.h: Update.
4915         * gnulib/import/sys_time.in.h: Update.
4916         * gnulib/import/sys_types.in.h: Update.
4917         * gnulib/import/tempname.c: Update.
4918         * gnulib/import/tempname.h: Update.
4919         * gnulib/import/time.in.h: Update.
4920         * gnulib/import/unistd--.h: Update.
4921         * gnulib/import/unistd-safer.h: Update.
4922         * gnulib/import/unistd.in.h: Update.
4923         * gnulib/import/unsetenv.c: Update.
4924         * gnulib/import/verify.h: Update.
4925         * gnulib/import/extra/snippet/warn-on-use.h: Update.
4926         * gnulib/import/wchar.in.h: Update.
4927         * gnulib/import/wctype.in.h: Update.
4928         * gnulib/import/xalloc-oversized.h: Update.
4929         * gnulib/update-gnulib.sh (GNULIB_COMMIT_SHA1): Set to
4930         "53e2c179f26a890fa6685af4b6c1397ee370433b".
4931
4932 2018-08-16  Gary Benson <gbenson@redhat.com>
4933
4934         PR gdb/13000:
4935         * gdb/main.c (captured_main_1): Exit with nonzero status
4936         in batch mode if the last command to be executed failed.
4937         * NEWS: Mention the above.
4938
4939 2018-08-29  Simon Marchi  <simon.marchi@ericsson.com>
4940
4941         * csky-tdep.c (csky_memory_insert_breakpoint): Remove newline at
4942         end of warning message.
4943
4944 2018-08-29  Alan Hayward  <alan.hayward@arm.com>
4945
4946         PR gdb/22943:
4947         * aarch64-tdep.c (is_hfa_or_hva): Remove function.
4948         (aarch64_extract_return_value): Use
4949         aapcs_is_vfp_call_or_return_candidate.
4950         (aarch64_return_in_memory): Likewise.
4951         (aarch64_store_return_value): Likewise.
4952
4953 2018-08-29  Alan Hayward  <alan.hayward@arm.com>
4954
4955         * aarch64-tdep.c
4956         (aapcs_is_vfp_call_or_return_candidate): Make static
4957         (pass_in_v_or_stack): Remove function.
4958         (pass_in_v_vfp_candidate): New function.
4959         (aarch64_push_dummy_call): Check for float register candidates.
4960
4961 2018-08-29  Alan Hayward  <alan.hayward@arm.com>
4962
4963         * aarch64-tdep.c (HA_MAX_NUM_FLDS): New macro.
4964         (aapcs_is_vfp_call_or_return_candidate_1): New function.
4965         (aapcs_is_vfp_call_or_return_candidate): Likewise.
4966
4967 2018-08-28  Simon Marchi  <simon.marchi@polymtl.ca>
4968
4969         PR build/23399
4970         * common/agent.c (IPA_SYM_STRUCT_NAME): Define.
4971         (struct ipa_sym_addresses): Rename to...
4972         (struct ipa_sym_addresses_common): ... this.
4973         * common/agent.h (IPA_SYM): Use IPA_SYM_STRUCT_NAME.
4974
4975 2018-08-28  Tom Tromey  <tom@tromey.com>
4976
4977         * c-exp.y (struct token_and_value): Remove typedef and DEF_VEC.
4978         (token_fifo): Now a std::vector.
4979         (yylex, c_parse): Update.
4980         * d-exp.y (struct token_and_value): Remove typedef and DEF_VEC.
4981         (token_fifo): Now a std::vector.
4982         (yylex, d_parse): Update.
4983         * go-exp.y (struct token_and_value): Remove typedef and DEF_VEC.
4984         (token_fifo): Now a std::vector.
4985         (yylex, go_parse): Update.
4986
4987 2018-08-28  Simon Marchi  <simon.marchi@ericsson.com>
4988
4989         * parser-defs.h (struct type_stack) <elements>: Change type to
4990         std::vector<union type_stack_elt>.
4991         <depth, size>: Remove.
4992         * parse.c (parse_exp_in_context_1): Adjust.
4993         (type_stack_reserve): Remove.
4994         (check_type_stack_depth): Remove.
4995         (insert_into_type_stack): Adjust to std::vector.
4996         (insert_type): Likewise.
4997         (push_type): Likewise.
4998         (push_type_int): Likewise.
4999         (insert_type_address_space): Likewise.
5000         (pop_type): Likewise.
5001         (pop_type_int): Likewise.
5002         (pop_typelist): Likewise.
5003         (pop_type_stack): Likewise.
5004         (append_type_stack): Likewise.
5005         (push_type_stack): Likewise.
5006         (get_type_stack): Likewise.
5007         (type_stack_cleanup): Likewise.
5008         (push_typelist): Likewise.
5009         (follow_types): Likewise.
5010         (_initialize_parse): Likewise.
5011
5012 2018-08-28  Hafiz Abid Qadeer  <abidh@codesourcery.com>
5013
5014         * NEWS: Mention csky target.
5015
5016 2018-08-28  Jiangshuai Li  <jiangshuai_li@c-sky.com>
5017             Hafiz Abid Qadeer  <abidh@codesourcery.com>
5018             Don Breazeal  <donb@codesourcery.com>
5019
5020         * csky-linux-tdep.c: New file.
5021         * csky-tdep.c: Likewise.
5022         * csky-tdep.h: Likewise.
5023         * Makefile.in (ALL_TARGET_OBS): Add csky-linux-tdep.o and
5024         csky-tdep.o.
5025         (HFILES_NO_SRCDIR): Add csky-tdep.h.
5026         (ALLDEPFILES): Add csky-linux-tdep.c and csky-tdep.c
5027         * configure.tgt: Add csky support.
5028
5029 2018-08-27  Jan Vrany  <jan.vrany@fit.cvut.cz>
5030
5031         * python/py-framefilter.c (py_print_frame): Print frame architecture
5032         when printing on an MI output.
5033
5034 2018-08-27  Tom Tromey  <tom@tromey.com>
5035
5036         PR build/23087:
5037         * configure: Rebuild.
5038         * warning.m4 (AM_GDB_WARNINGS): Remove -Wno-narrowing.
5039
5040 2018-08-27  Tom Tromey  <tom@tromey.com>
5041
5042         * aarch64-linux-tdep.c
5043         (aarch64_linux_iterate_over_regset_sections) <sve_regmap>: Add
5044         casts to int.
5045
5046 2018-08-27  Tom Tromey  <tom@tromey.com>
5047
5048         * ppc64-tdep.c (insn_d, insn_ds, insn_xfx): Add casts to
5049         unsigned.
5050         (ppc64_standard_linkage1, ppc64_standard_linkage2)
5051         (ppc64_standard_linkage3, ppc64_standard_linkage4)
5052         (ppc64_standard_linkage5, ppc64_standard_linkage6)
5053         (ppc64_standard_linkage7, ppc64_standard_linkage8): Add casts to
5054         unsigned.
5055
5056 2018-08-27  Tom Tromey  <tom@tromey.com>
5057
5058         * xtensa-tdep.h (XTREG_END): Add cast to unsigned.
5059         (XTENSA_GDBARCH_TDEP_INSTANTIATE): Likewise.
5060
5061 2018-08-27  Tom Tromey  <tom@tromey.com>
5062
5063         * tramp-frame.h (TRAMP_SENTINEL_INSN): Redefine.
5064         * tilegx-linux-tdep.c (tilegx_linux_rt_sigframe): Use
5065         ULONGEST_MAX.
5066         * tic6x-linux-tdep.c (tic6x_linux_rt_sigreturn_tramp_frame): Use
5067         ULONGEST_MAX.
5068         * sparc64-linux-tdep.c (sparc64_linux_rt_sigframe): Use
5069         ULONGEST_MAX.
5070         * sparc-linux-tdep.c (sparc32_linux_sigframe)
5071         (sparc32_linux_rt_sigframe): Use ULONGEST_MAX.
5072         * ppc-nbsd-tdep.c (ppcnbsd_sigtramp, ppcnbsd2_sigtramp): Use
5073         ULONGEST_MAX.
5074         * ppc-linux-tdep.c (ppc32_linux_sigaction_tramp_frame)
5075         (ppc64_linux_sigaction_tramp_frame)
5076         (ppc32_linux_sighandler_tramp_frame)
5077         (ppc64_linux_sighandler_tramp_frame): Use ULONGEST_MAX.
5078         * nios2-linux-tdep.c (nios2_r1_linux_rt_sigreturn_tramp_frame)
5079         (nios2_r2_linux_rt_sigreturn_tramp_frame): Use ULONGEST_MAX.
5080         * mn10300-linux-tdep.c (am33_linux_sigframe)
5081         (am33_linux_rt_sigframe): Use ULONGEST_MAX.
5082         * mips64-obsd-tdep.c (mips64obsd_sigframe): Use ULONGEST_MAX.
5083         * mips-linux-tdep.c (mips_linux_o32_sigframe)
5084         (mips_linux_o32_rt_sigframe, mips_linux_n32_rt_sigframe)
5085         (mips_linux_n64_rt_sigframe, micromips_linux_o32_sigframe)
5086         (micromips_linux_o32_rt_sigframe, micromips_linux_n32_rt_sigframe)
5087         (micromips_linux_n64_rt_sigframe): Use ULONGEST_MAX.
5088         * mips-fbsd-tdep.c (mips_fbsd_sigframe, mipsn32_fbsd_sigframe)
5089         (mips64_fbsd_sigframe): Use ULONGEST_MAX.
5090         * microblaze-linux-tdep.c
5091         (microblaze_linux_sighandler_tramp_frame): Use ULONGEST_MAX.
5092         * i386-nbsd-tdep.c (i386nbsd_sigtramp_sc16, i386nbsd_sigtramp_sc2)
5093         (i386nbsd_sigtramp_si2, i386nbsd_sigtramp_si31)
5094         (i386nbsd_sigtramp_si4): Use ULONGEST_MAX.
5095         * hppa-nbsd-tdep.c (hppanbsd_sigtramp_si4): Use ULONGEST_MAX.
5096         * common/common-types.h (ULONGEST_MAX): New define.
5097         (CORE_ADDR_MAX): Fix formatting.
5098         * bfin-linux-tdep.c (bfin_linux_sigframe): Use ULONGEST_MAX.
5099         * arm-obsd-tdep.c (armobsd_sigframe): Use ULONGEST_MAX.
5100         * arm-linux-tdep.c (arm_linux_sigreturn_tramp_frame)
5101         (arm_linux_rt_sigreturn_tramp_frame)
5102         (arm_eabi_linux_sigreturn_tramp_frame)
5103         (arm_eabi_linux_rt_sigreturn_tramp_frame)
5104         (thumb2_eabi_linux_sigreturn_tramp_frame)
5105         (thumb2_eabi_linux_rt_sigreturn_tramp_frame)
5106         (arm_linux_restart_syscall_tramp_frame)
5107         (arm_kernel_linux_restart_syscall_tramp_frame): Use ULONGEST_MAX.
5108         * arm-fbsd-tdep.c (arm_fbsd_sigframe): Use ULONGEST_MAX.
5109         * aarch64-linux-tdep.c (aarch64_linux_rt_sigframe): Use
5110         ULONGEST_MAX.
5111         * aarch64-fbsd-tdep.c (aarch64_fbsd_sigframe): Use ULONGEST_MAX.
5112
5113 2018-08-27  Tom Tromey  <tom@tromey.com>
5114
5115         * rs6000-tdep.c (ppc_deal_with_atomic_sequence): Use
5116         CORE_ADDR_MAX.
5117         * mips-tdep.c (mips_deal_with_atomic_sequence)
5118         (micromips_deal_with_atomic_sequence): Use CORE_ADDR_MAX.
5119         * arch/arm-get-next-pcs.c (thumb_deal_with_atomic_sequence_raw)
5120         (arm_deal_with_atomic_sequence_raw): Use CORE_ADDR_MAX.
5121         * alpha-tdep.c (alpha_deal_with_atomic_sequence): Use
5122         CORE_ADDR_MAX.
5123         * aarch64-tdep.c (aarch64_software_single_step): Use
5124         CORE_ADDR_MAX.
5125
5126 2018-08-27  Tom Tromey  <tom@tromey.com>
5127
5128         * linespec.c (complete_linespec_component): Add cast to "char".
5129         * completer.c (completion_tracker::build_completion_result): Add
5130         cast to "char".
5131
5132 2018-08-26  Simon Marchi  <simon.marchi@polymtl.ca>
5133
5134         * solist.h (struct solist, struct target_so_ops): Fix
5135         indentation.
5136
5137 2018-08-26  Simon Marchi  <simon.marchi@polymtl.ca>
5138
5139         * ada-tasks.c (ada_task_info_s): Remove typedef.
5140         (DEF_VEC_O(ada_task_info_s)): Remove.
5141         (struct ada_tasks_inferior_data): Initialize fields.
5142         <task_list>: Make an std::vector.
5143         (get_ada_tasks_inferior_data): Allocate with new.
5144         (ada_get_task_number): Adjust.
5145         (get_task_number_from_id): Likewise.
5146         (valid_task_id): Likewise.
5147         (ada_get_task_info_from_ptid): Likewise.
5148         (iterate_over_live_ada_tasks): Likewise.
5149         (add_ada_task): Likewise.
5150         (read_known_tasks): Likewise.
5151         (ada_build_task_list): Likewise.
5152         (print_ada_task_info): Likewise.
5153         (info_task): Likewise.
5154         (task_command_1): Likewise.
5155
5156 2018-08-26  Simon Marchi  <simon.marchi@polymtl.ca>
5157
5158         * ada-lang.c (add_angle_brackets): Return std::string.
5159
5160 2018-08-25  Simon Marchi  <simon.marchi@polymtl.ca>
5161
5162         * python/py-threadevent.c (py_get_event_thread): Initialize
5163         pythread.
5164
5165 2018-08-24  Pedro Alves  <palves@redhat.com>
5166
5167         * python/py-bpevent.c (create_breakpoint_event_object): Use
5168         copy-initialization.
5169         * python/py-continueevent.c (emit_continue_event): Use
5170         copy-initialization.
5171         * python/py-exitedevent.c (create_exited_event_object): Return a
5172         gdbpy_ref<>.
5173         (emit_exited_event): Use copy-initialization.
5174         * python/py-inferior.c (python_new_inferior)
5175         (python_inferior_deleted, add_thread_object): Use
5176         copy-initialization.
5177         * python/py-infevents.c (create_inferior_call_event_object)
5178         (create_register_changed_event_object)
5179         (create_memory_changed_event_object): Return a gdbpy_ref<>.
5180         (emit_inferior_call_event, emit_memory_changed_event)
5181         (emit_register_changed_event): Use copy-initialization.
5182         * python/py-newobjfileevent.c (create_new_objfile_event_object):
5183         Return a gdbpy_ref<>.
5184         (emit_new_objfile_event): Use copy-initialization.
5185         (create_clear_objfiles_event_object): Return a gdbpy_ref<>.
5186         (emit_clear_objfiles_event): Use copy-initialization.
5187         * python/py-signalevent.c (create_signal_event_object): Use
5188         copy-initialization.
5189         * python/py-threadevent.c (create_thread_event_object): Use
5190         copy-initialization.
5191
5192 2018-08-24  Pedro Alves  <palves@redhat.com>
5193             Simon Marchi  <simon.marchi@ericsson.com>
5194
5195         PR gdb/23379
5196         * python/py-continueevent.c: Include "gdbthread.h".
5197         (create_continue_event_object): Add intro comment.  Add 'ptid'
5198         parameter.  Use it to find thread to pass to
5199         create_thread_event_object.
5200         (emit_continue_event): Pass PTID down to
5201         create_continue_event_object.
5202         * python/py-event.h (py_get_event_thread): Declare.
5203         (create_thread_event_object): Remove default from 'thread'
5204         parameter.
5205         * python/py-stopevent.c (create_stop_event_object): Use
5206         py_get_event_thread.
5207         * python/py-threadevent.c (get_event_thread): Rename to ...
5208         (py_get_event_thread): ... this, make extern, add 'ptid' parameter
5209         and use it to find the thread.
5210         (create_thread_event_object): Assert that THREAD isn't null.
5211         Don't find the event thread here.
5212
5213 2018-08-23  Kevin Buettner  <kevinb@redhat.com>
5214
5215         * block.h (blockrange, blockranges): New struct declarations.
5216         (struct block): Add new field named `ranges'.
5217         (BLOCK_RANGES, BLOCK_NRANGES, BLOCK_RANGE, BLOCK_CONTIGUOUS_P)
5218         (BLOCK_RANGE_START, BLOCK_RANGE_END, BLOCK_ENTRY_PC): New
5219         macros for accessing ranges in struct block.
5220         (make_blockranges): New declaration.
5221         block.c (make_blockranges): New function.
5222         * dwarf2read.c (dwarf2_record_block_ranges): Fill in BLOCK_RANGES
5223         for block.
5224         * symtab.h (find_pc_partial_function): Add new parameter `block'.
5225         * blockframe.c (cache_pc_function_block): New static global.
5226         (clear_pc_function_cache): Clear cache_pc_function_block.
5227         (find_pc_partial_function): Move comment to symtab.h.  Add
5228         support for non-contiguous blocks.
5229         * cli/cli-cmds.c (block.h): Include.
5230         (print_disassembly): Handle printing of non-contiguous blocks.
5231         (disassemble_current_function): Likewise.
5232         (disassemble_command): Likewise.
5233
5234         * ax-gdb.c (gen_var_ref): Use BLOCK_ENTRY_PC in place of
5235         BLOCK_START.
5236         * blockframe.c (get_pc_function_start): Likewise.
5237         * compile/compile-c-symbols.c (convert_one_symbol): Likewise.
5238         (gcc_symbol_address): Likewise.
5239         * compile/compile-object-run.c (compile_object_run): Likewise.
5240         * compile/compile.c (get_expr_block_and_pc): Likewise.
5241         * dwarf2loc.c (dwarf2_find_location_expression): Likewise.
5242         (func_addr_to_tail_call_list): Likewise.
5243         * findvar.c (default_read_var_value): Likewise.
5244         * inline-frame.c (inline_frame_this_id): Likewise.
5245         (skip-inline_frames): Likewise.
5246         * infcmd.c (until_next_command): Likewise.
5247         * linespec.c (convert_linespec_to_sals): Likewise.
5248         * parse.c (parse_exp_in_context_1): Likewise.
5249         * printcmd.c (build_address_symbolic): likewise.
5250         (info_address_command): Likewise.
5251         symtab.c (find_function_start_sal): Likewise.
5252         (skip_prologue_sal): Likewise.
5253         (find_function_alias_target): Likewise.
5254         (find_gnu_ifunc): Likewise.
5255         * stack.c (find_frame_funname): Likewise.
5256         * symtab.c (fixup_symbol_section): Likewise.
5257         (find_function_start_sal): Likewise.
5258         (skip_prologue_sal): Likewsie.
5259         (find_function_alias_target): Likewise.
5260         (find_gnu_ifunc): Likewise.
5261         * tracepoint.c (info_scope_command): Likewise.
5262         * value.c (value_fn_field): Likewise.
5263
5264         * infrun.c (fill_in_stop_func): Use find_function_entry_range_from_pc
5265         in place of find_pc_partial_function.
5266         * blockframe.c (find_function_entry_range_from_pc): New function.
5267         * symtab.h (find_function_entry_range_from_pc): Declare and document.
5268         * objfiles.c (objfile_relocate1): Relocate start and end addresses
5269         for each range in a block.
5270
5271
5272 2018-08-23  Xavier Roirand  <roirand@adacore.com>
5273
5274         * machoread.c (macho_symfile_read_all_oso): Remove uneeded
5275         incrementation.
5276
5277 2018-08-22  Simon Marchi  <simon.marchi@polymtl.ca>
5278
5279         * solib-svr4.c (read_program_headers_from_bfd): Return
5280         gdb::optional<gdb::byte_vector>.
5281         (svr4_exec_displacement): Adjust.
5282
5283 2018-08-22  Simon Marchi  <simon.marchi@polymtl.ca>
5284
5285         * solib-svr4.c (read_program_header): Return
5286         gdb::optional<gdb::byte_vector>, remove p_sect_size param.
5287         (find_program_interpreter): Return
5288         gdb::optional<gdb::byte_vector>.
5289         (scan_dyntag_auxv): Adjust.
5290         (enable_break): Adjust.
5291         (svr4_exec_displacement): Adjust.
5292
5293 2018-08-22  Simon Marchi  <simon.marchi@polymtl.ca>
5294
5295         * inf-child.h (inf_child_target) <terminal_save_inferior>: New.
5296         * inf-child.c (inf_child_target::terminal_save_inferior): New.
5297
5298 2018-08-22  Simon Marchi  <simon.marchi@polymtl.ca>
5299
5300         * guile/scm-string.c (gdbscm_scm_from_printf): Use
5301         string_vprintf.
5302         * guile/scm-utils.c (gdbscm_printf): Likewise.
5303         * serial.c (serial_printf): Likewise.
5304         * xml-support.c (gdb_xml_parser::vdebug): Likewise.
5305
5306 2018-08-22  Jan Vrany  <jan.vrany@fit.cvut.cz>
5307
5308         * stack.c (print_frame): Print frame architecture when printing on
5309         an MI output.
5310         * NEWS: Mention new "arch" attribute in frame output.
5311
5312 2018-08-21  Alan Hayward  <alan.hayward@arm.com>
5313
5314         * arch/aarch64.h (aarch64_regnum): Update comment.
5315
5316 2018-08-21  Alan Hayward  <alan.hayward@arm.com>
5317
5318         * NEWS: Add SVE to 8.2 section.
5319
5320 2018-08-21  Pedro Alves  <palves@redhat.com>
5321
5322         * guile/scm-utils.c (gdbscm_parse_function_args_1): New, factored
5323         out from gdbscm_parse_function_args.
5324         (gdbscm_parse_function_args): Rework to use gdbscm_wrap and
5325         gdbscm_parse_function_args_1.
5326
5327 2018-08-21  Simon Marchi  <simon.marchi@ericsson.com>
5328
5329         PR gdb/17816
5330         * m32c-tdep.c (m32c_decode_srcdest4): Remove unnecessary ternary
5331         operator.
5332
5333 2018-08-19  Simon Marchi  <simon.marchi@polymtl.ca>
5334
5335         * solib-svr4.c (svr4_exec_displacement): Fix formatting.
5336
5337 2018-08-19  Michael Spang  <spang@google.com>
5338
5339         PR gdb/11786
5340         * solib-svr4.c (svr4_exec_displacement): Ignore memsz fields
5341         for PT_TLS segments.
5342
5343 2018-08-18  Kevin Buettner  <kevinb@redhat.com>
5344
5345         * dwarf2expr.h (struct dwarf_expr_context): Add virtual method
5346         dwarf_variable_value.
5347         * dwarf2-frame.c (class dwarf_expr_executor):
5348         Add override for dwarf_variable_value.
5349         * dwarf2loc.c (class dwarf_evaluate_loc_desc): Likewise.
5350         (class symbol_needs_eval_context): Likewise.
5351         (indirect_synthetic_pointer): Add forward declaration.
5352         (sect_variable_value): New function.
5353         (dwarf2_compile_expr_to_ax): Add case for DW_OP_GNU_variable_value.
5354         * dwarf2expr.c (dwarf_expr_context::execute_stack_op): Add case
5355         for DW_OP_GNU_variable_value.
5356
5357 2018-08-16  Tom Tromey  <tom@tromey.com>
5358
5359         * top.c (read_command_file): Update.
5360         (command_line_input): Remove "repeat" argument.
5361         * ada-lang.c (get_selections): Update.
5362         * linespec.c (decode_line_2): Update.
5363         * defs.h (command_line_input): Remove argument.
5364         * cli/cli-script.c (read_next_line): Update.
5365         * python/py-gdb-readline.c: Update.
5366
5367 2018-08-17  Tom Tromey  <tom@tromey.com>
5368
5369         * cli/cli-script.c (read_next_line): Pass 0 as repeat argument to
5370         command_line_input.
5371
5372 2018-08-15  Tom Tromey  <tom@tromey.com>
5373
5374         * aarch64-linux-tdep.c (aarch64_linux_core_read_vq): Use pulongest.
5375
5376 2018-08-14  Jan Vrany  <jan.vrany@fit.cvut.cz>
5377
5378         * mi/mi-cmd-disas.c (mi_cmd_disassemble): Add -a option.
5379         If used, use find_pc_partial_function to find address range
5380         to disassemble.
5381         * mi/mi-main.c (mi_cmd_list_features): Report
5382         "data-disassemble-a-option" feature.
5383         * NEWS: Mention new -data-disassemble option -a.
5384
5385 2018-08-13  Tom Tromey  <tom@tromey.com>
5386
5387         * common/common-defs.h (_FORTIFY_SOURCE): Define.
5388
5389 2018-08-13  Alan Hayward  <alan.hayward@arm.com>
5390
5391         * aarch64-linux-tdep.c (aarch64_linux_supply_sve_regset): New function.
5392         (aarch64_linux_collect_sve_regset): Likewise.
5393         (aarch64_linux_iterate_over_regset_sections): Check for SVE.
5394         * regcache.h (regcache_map_entry_size): New function.
5395
5396 2018-08-13  Alan Hayward  <alan.hayward@arm.com>
5397
5398         * aarch64-linux-tdep.c (SVE_HEADER_SIZE_LENGTH): Add define.
5399         (SVE_HEADER_MAX_SIZE_LENGTH): Likewise.
5400         (SVE_HEADER_VL_LENGTH): Likewise.
5401         (SVE_HEADER_MAX_VL_LENGTH): Likewise.
5402         (SVE_HEADER_FLAGS_LENGTH): Likewise.
5403         (SVE_HEADER_RESERVED_LENGTH): Likewise.
5404         (SVE_HEADER_SIZE_OFFSET): Likewise.
5405         (SVE_HEADER_MAX_SIZE_OFFSET): Likewise.
5406         (SVE_HEADER_VL_OFFSET): Likewise.
5407         (SVE_HEADER_MAX_VL_OFFSET): Likewise.
5408         (SVE_HEADER_FLAGS_OFFSET): Likewise.
5409         (SVE_HEADER_RESERVED_OFFSET): Likewise.
5410         (SVE_HEADER_SIZE): Likewise.
5411         (aarch64_linux_core_read_vq): Add function.
5412         (aarch64_linux_core_read_description): Check for SVE section.
5413
5414 2018-08-13  Alan Hayward  <alan.hayward@arm.com>
5415
5416         * aarch64-fbsd-tdep.c
5417         (aarch64_fbsd_iterate_over_regset_sections): Add supply_size and
5418         collect_size.
5419         * aarch64-linux-tdep.c
5420         (aarch64_linux_iterate_over_regset_sections): Likewise.
5421         * alpha-linux-tdep.c
5422         (alpha_linux_iterate_over_regset_sections):
5423         * alpha-nbsd-tdep.c
5424         (alphanbsd_iterate_over_regset_sections): Likewise.
5425         * amd64-fbsd-tdep.c
5426         (amd64fbsd_iterate_over_regset_sections): Likewise.
5427         * amd64-linux-tdep.c
5428         (amd64_linux_iterate_over_regset_sections): Likewise.
5429         * arm-bsd-tdep.c
5430         (armbsd_iterate_over_regset_sections): Likewise.
5431         * arm-fbsd-tdep.c
5432         (arm_fbsd_iterate_over_regset_sections): Likewise.
5433         * arm-linux-tdep.c
5434         (arm_linux_iterate_over_regset_sections): Likewise.
5435         * corelow.c (get_core_registers_cb): Likewise.
5436         (core_target::fetch_registers): Likewise.
5437         * fbsd-tdep.c (fbsd_collect_regset_section_cb): Likewise.
5438         * frv-linux-tdep.c (frv_linux_iterate_over_regset_sections): Likewise.
5439         * gdbarch.h (void): Regenerate.
5440         * gdbarch.sh: Add supply_size and collect_size.
5441         * hppa-linux-tdep.c (hppa_linux_iterate_over_regset_sections): Likewise.
5442         * hppa-nbsd-tdep.c (hppanbsd_iterate_over_regset_sections): Likewise.
5443         * hppa-obsd-tdep.c (hppaobsd_iterate_over_regset_sections): Likewise.
5444         * i386-fbsd-tdep.c (i386fbsd_iterate_over_regset_sections): Likewise.
5445         * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections): Likewise.
5446         * i386-tdep.c (i386_iterate_over_regset_sections): Likewise.
5447         * ia64-linux-tdep.c (ia64_linux_iterate_over_regset_sections): Likewise.
5448         * linux-tdep.c (linux_collect_regset_section_cb): Likewise.
5449         * m32r-linux-tdep.c (m32r_linux_iterate_over_regset_sections): Likewise.
5450         * m68k-bsd-tdep.c (m68kbsd_iterate_over_regset_sections): Likewise.
5451         * m68k-linux-tdep.c (m68k_linux_iterate_over_regset_sections): Likewise.
5452         * mips-fbsd-tdep.c (mips_fbsd_iterate_over_regset_sections): Likewise.
5453         * mips-linux-tdep.c (mips_linux_iterate_over_regset_sections): Likewise.
5454         * mips-nbsd-tdep.c (mipsnbsd_iterate_over_regset_sections): Likewise.
5455         * mips64-obsd-tdep.c (mips64obsd_iterate_over_regset_sections):
5456         Likewise.
5457         * mn10300-linux-tdep.c (am33_iterate_over_regset_sections): Likewise.
5458         * nios2-linux-tdep.c (nios2_iterate_over_regset_sections): Likewise.
5459         * ppc-fbsd-tdep.c (ppcfbsd_iterate_over_regset_sections): Likewise.
5460         * ppc-linux-tdep.c (ppc_linux_iterate_over_regset_sections): Likewise.
5461         * ppc-nbsd-tdep.c (ppcnbsd_iterate_over_regset_sections): Likewise.
5462         * ppc-obsd-tdep.c (ppcobsd_iterate_over_regset_sections): Likewise.
5463         * riscv-linux-tdep.c (riscv_linux_iterate_over_regset_sections):
5464         Likewise.
5465         * rs6000-aix-tdep.c (rs6000_aix_iterate_over_regset_sections): Likewise.
5466         * s390-linux-tdep.c (s390_iterate_over_regset_sections): Likewise.
5467         * score-tdep.c (score7_linux_iterate_over_regset_sections): Likewise.
5468         * sh-tdep.c (sh_iterate_over_regset_sections): Likewise.
5469         * sparc-tdep.c (sparc_iterate_over_regset_sections): Likewise.
5470         * tilegx-linux-tdep.c (tilegx_iterate_over_regset_sections): Likewise.
5471         * vax-tdep.c (vax_iterate_over_regset_sections): Likewise.
5472         * xtensa-tdep.c (xtensa_iterate_over_regset_sections): Likewise.
5473
5474 2018-08-10  Simon Marchi  <simon.marchi@ericsson.com>
5475
5476         * nat/linux-osdata.c (commandline_from_pid): Replace xstrprintf
5477         with string_printf.
5478
5479 2018-08-10  Keith Seitz  <keiths@redhat.com>
5480
5481         * compile/compile-c-support.c (add_code_header, add_code_footer):
5482         Move into policy class.
5483         (c_push_user_expression, pop_user_expression_nop)
5484         (c_add_code_header, c_add_code_footer, c_add_input): New policy class.
5485         (compile_program): New host class.
5486         (c_compile_program): New typedef.
5487         (c_compute_porgram): Use c_compile_program.
5488
5489 2018-08-10  Keith Seitz  <keiths@redhat.com>
5490
5491         * compile/compile-internal.h (compile_instance::~compile_instance):
5492         Remove calls to htab_delete.
5493         <m_type_map, m_symbol_err_map>: Switch type to htab_up.
5494         * compile.c (compile_instance::compile_instance): Initialize
5495         htab unique pointers.
5496         (compile_instance::get_cached_type, compile_instance::insert_type)
5497         (compile_instance::error_symbol_once): Update for unique_ptr.
5498
5499 2018-08-10  Keith Seitz  <keiths@redhat.com>
5500
5501         * compile/compile-c-symbols.c (struct symbol_error)
5502         (hash_symbol_error, eq_symbol_error, del_symbol_error)
5503         (compile_instance::insert_symbol_error)
5504         (compile_instance::error_symbol_once): Move to ...
5505         * compile/compile.c: ... here.
5506
5507 2018-08-10  Keith Seitz  <keiths@redhat.com>
5508
5509         * compile/compile-c-support.c (c_get_compile_context): Use `new'
5510         instead of `new_compile_instance'.
5511         * compile/compile-c-symbols.c (compile_instance::insert_symbol_error):
5512         Update description.
5513         If the symbol error map is not initialized, create it.
5514         (generate_c_for_for_one_symbol): Do not check/initialize
5515         the symbol error map.
5516         * compile/compile-c-types.c (compile_c_instance): Make a class.
5517         Update all callers.
5518         (compile_instance::compile_instance): Initialize the type cache.
5519         (get_cached_type): New function.
5520         (insert_type): Update description.
5521         (compile_c_instance::m_default_cflags): Define.
5522         (convert_type): Update description.  Use get_cached_type.
5523         (delete_instance): Moved to destructor.
5524         (new_compile_instance): Moved to constructor.
5525         * compile/compile-c.h (compile_c_instance): Make class inheriting
5526         from compile_instance.
5527         <base>: Remove field.
5528         <type_map, symbol_err_map>: Move to base class.
5529         <c_plugin>: Rename to `m_plugin' and remove pointer type.
5530         * compile/compile-internal.h (compile_instance): Make class.
5531         <type_map_t, symbol_err_map_t>: Define.
5532         <fe>: Rename to `m_gcc_fe'.
5533         <scope, block, gcc_target_options>: Add `m_' prefix.
5534         <m_type_map, m_symbol_err_map>: New fields, moved from
5535         compile_c_instance.
5536         <destroy>: Remove.
5537         (convert_type, new_compile_instance): Remove.
5538         * compile/compile.c (cleanup_compile_instance): Remove.
5539         (compile_to_object): Use unique_ptr to eliminate cleanups.
5540         (compile_instance::set_print_callback, compile_instance::version)
5541         (compile_instance::set_verbose)
5542         (compile_instance::set_driver_filename)
5543         (compile_instance::set_triplet_regexp)
5544         (compile_instance::set_arguments)
5545         (compile_instance::set_source_file)
5546         (compile_instance::compile): Define.
5547
5548 2018-08-10  Keith Seitz  <keiths@redhat.com>
5549
5550         * Makefile.in (HFILES_NO_SRCDIR): Add compile/gcc-c-plugin.h.
5551         * compile/compile-c-types.c: Define GCC_METHODN macros and include
5552         gcc-c-fe.def to define C plugin.
5553         (delete_instance): Delete `c_plugin'.
5554         (new_compile_instance): Initialize `c_plugin'.
5555         * compile/compile-c.h: Include gcc_c_plugin.h.
5556         (struct compile_c_instance) <c_plugin>: New member.
5557         * gcc-c-plugin.h: New file.
5558         Update all callers with API change.
5559
5560 2018-08-10  Keith Seitz  <keiths@redhat.com>
5561
5562         * Makefile.in (SUBDIR_GCC_COMPILE_SRCS): Move header files ...
5563         (HFILES_NO_SRCDIR): ... to here.
5564         Add compile-internal.h and compile-c.h.
5565         * compile/compile-c-support.c: Include compile-c.h.
5566         * compile/compile-c-symbols.c: Include compile-c.h.
5567         (generate_c_for_variable_locations): Update comment.
5568         * compile/compile-c-types.c: Include compile-c.h.
5569         * compile/compile-c.h: New file -- moved C language declarations
5570         from other files here.
5571         * compile/compile-internal.h: Do not include hashtab.h or
5572         common/enum-flags.h.
5573         (gcc_qualifiers_flags, struct compile_c_instance, C_CTX)
5574         (gcc_convert_symbol, gcc_symbol_address)
5575         (generate_c_for_variable_locations, c_get_mode_for_size)
5576         (c_get_range_decl_name): Definitions moved to compile-c.h.
5577         * compile/compile-loc2c.c: Include compile-c.h.
5578
5579 2018-08-10  Keith Seitz  <keiths@redhat.com>
5580
5581         * compile/compile-c-symbols.c (symbol_substitution_name): Rename to ...
5582         (c_symbol_substitution_name): ... this.
5583         Update all callers.
5584
5585 2018-08-10  Keith Seitz  <keiths@redhat.com>
5586
5587         * compile/compile-c-support.c (c_compute_program): Use
5588         unique_xmalloc_ptr to eliminate cleanup.
5589         * compile/compile-c-symbols.c (generate_c_for_variable_locations):
5590         Return a unique_xmalloc_ptr and eliminate cleanup.
5591         * compile/compile-internal.h (generate_c_for_variable_locations):
5592         Return unique_xmalloc_ptr and update description.
5593
5594 2018-08-10  Alan Hayward  <alan.hayward@arm.com>
5595
5596         * corelow.c (core_target::get_core_register_section): Rename
5597         min_size to section_min_size.
5598
5599 2018-08-09  Jim Wilson  <jimw@sifive.com>
5600
5601         * Makefile.in (ALL_TARGET_OBS): Add riscv-linux-tdep.c.
5602         (ALLDEPFILES): Add riscv-linux-nat.c, and riscv-linux-tdep.c.
5603         * NEWS: Mention new GNU/Linux RISC-V target.
5604         * configure.host: Add riscv*-*-linux*.
5605         * configure.nat: Add riscv*.
5606         * configure.tgt: Add riscv*-*-linux*.
5607         * riscv-linux-nat.c: New file.
5608         * riscv-linux-tdep.c: New file.
5609
5610 2018-08-09  Andrew Burgess  <andrew.burgess@embecosm.com>
5611
5612         * infrun.c (resume): Make static, add forward declaration.
5613         (proceed): Update header comment.
5614         * infrun.h (resume): Delete declaration.
5615
5616 2018-08-09  Tom Tromey  <tom@tromey.com>
5617
5618         * riscv-tdep.h: Minor formatting fixes.
5619
5620 2018-08-09  Simon Marchi  <simon.marchi@ericsson.com>
5621
5622         * common/scoped_mmap.c (mmap_file): Silence ARI warning.
5623         * dwarf-index-cache.c (create_dir_and_check): Likewise.
5624         (test_mkdir_recursive): Likewise.
5625         * dwarf-index-write.c (write_psymtabs_to_index): Likewise.
5626
5627 2018-08-09  Andrew Burgess  <andrew.burgess@embecosm.com>
5628
5629         * valarith.c (value_subscripted_rvalue): If an array is not in
5630         memory, and we don't know the upper bound, then we can't know that
5631         the requested element exists or not.
5632
5633 2018-08-08  Simon Marchi  <simon.marchi@ericsson.com>
5634
5635         * target.c (str_comma_list_concat_elem): Fix typo in comment.
5636         (target_options_to_string): Add comment.
5637
5638 2018-08-08  Tom Tromey  <tom@tromey.com>
5639
5640         * unittests/scoped_mmap-selftests.c: Check result of "write".
5641
5642 2018-08-08  Jim Wilson  <jimw@sifive.com>
5643
5644         * riscv-tdep.c (enum opcode): Add jump, branch, lr, and sc opcodes.
5645         (decode_register_index_short): New.
5646         (decode_j_type_insn, decode_cj_type_insn): New.
5647         (decode_b_type_insn, decode_cb_type_insn): New.
5648         (riscv_insn::decode): Add support for jumps, branches, lr, and sc.  New
5649         local xlen.  Check xlen when decoding ambiguous compressed insns.  In
5650         compressed decode, use is_c_lui_insn instead of is_lui_insn, and
5651         is_c_sw_insn instead of is_sw_insn.
5652         (riscv_next_pc, riscv_next_pc_atomic_sequence): New.
5653         (riscv_software_single_step): New.
5654         * riscv-tdep.h (riscv_software_single_step): Declare.
5655
5656         * riscv-tdep.c (riscv_isa_xlen): Drop static.
5657         * riscv-tdep.h (riscv_isa_xlen): Add extern declaration.
5658
5659 2018-08-08  Andrew Burgess  <andrew.burgess@embecosm.com>
5660
5661         PR gdb/18050:
5662         * target.c (dispose_inferior): Don't dispose of inferiors that are
5663         already killed.
5664
5665 2018-08-08  Szabolcs Nagy  <szabolcs.nagy@arm.com>
5666
5667         * remote.c (remote_target::download_tracepoint): Change char* to
5668         const char*.
5669
5670 2018-08-07  Simon Marchi  <simon.marchi@polymtl.ca>
5671
5672         * target.h (target_options_to_string): Return an std::string.
5673         * target.c (str_comma_list_concat_elem): Return void, use
5674         std::string.
5675         (do_option): Likewise.
5676         (target_options_to_string): Return an std::string.
5677         * linux-nat.c (linux_nat_target::wait): Adjust.
5678         * target-debug.h (target_debug_print_options): Adjust.
5679
5680 2018-08-07  Tom Tromey  <tom@tromey.com>
5681
5682         * Makefile.in (CPPFLAGS): New variable.
5683         (INTERNAL_CPPFLAGS): Use it.
5684
5685 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5686
5687         * NEWS: Mention the index cache.
5688
5689 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5690
5691         * common/pathstuff.h (get_standard_cache_dir): New.
5692         * common/pathstuff.c (get_standard_cache_dir): New.
5693         * build-id.h (build_id_to_string): New.
5694         * dwarf-index-common.h (INDEX4_SUFFIX, INDEX5_SUFFIX,
5695         DEBUG_STR_SUFFIX): Move to here.
5696         * dwarf-index-write.c (INDEX4_SUFFIX, INDEX5_SUFFIX,
5697         DEBUG_STR_SUFFIX): Move from there.
5698         (write_psymtabs_to_index): Make non-static, add basename
5699         parameter.  Write to temporary files, rename when done.
5700         (save_gdb_index_command): Adjust call to
5701         write_psymtabs_to_index.
5702         * dwarf2read.h (dwarf2_per_objfile) <index_cache_res>: New
5703         field.
5704         * dwarf2read.c (dwz_file) <index_cache_res>: New field.
5705         (get_gdb_index_contents_from_cache): New.
5706         (get_gdb_index_contents_from_cache_dwz): New.
5707         (dwarf2_initialize_objfile): Read index from cache.
5708         (dwarf2_build_psymtabs): Save to index.
5709         * dwarf-index-cache.h: New file.
5710         * dwarf-index-cache.c: New file.
5711         * dwarf-index-write.h: New file.
5712
5713 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5714
5715         * gnulib/aclocal.m4: Re-generate.
5716         * gnulib/config.in: Re-generate.
5717         * gnulib/configure: Re-generate.
5718         * gnulib/import/Makefile.am: Re-generate.
5719         * gnulib/import/Makefile.in: Re-generate.
5720         * gnulib/import/m4/gnulib-cache.m4: Re-generate.
5721         * gnulib/import/m4/gnulib-comp.m4: Re-generate.
5722         * gnulib/import/m4/mkdir.m4: New file.
5723         * gnulib/import/mkdir.c: New file.
5724         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add mkdir
5725         module.
5726
5727 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5728
5729         * Makefile.in (COMMON_SFILES): Add common/scoped_mmap.c.
5730         * common/scoped_mmap.c: New file.
5731         * common/scoped_mmap.h (destroy): New method.
5732         (~scoped_mmap, reset): Use destroy.
5733         (scoped_mmap): New move constructor.
5734         (mmap_file): New declaration.
5735         * unittests/scoped_mmap-selftests.c (test_normal,
5736         test_invalid_filename, run_tests): New functions.
5737         (_initialize_scoped_mmap_selftests): Register selftest.
5738
5739 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5740
5741         * dwarf2read.c (read_gdb_index_from_section): Rename to...
5742         (read_gdb_index_from_buffer): ... this.  Remove section
5743         parameter, add buffer parameter.
5744         (get_gdb_index_contents_ftype,
5745         get_gdb_index_contents_dwz_ftype): New typedefs.
5746         (dwarf2_read_gdb_index): Add callback parameters to get the
5747         index contents.
5748         (get_gdb_index_contents_from_section): New.
5749         (dwarf2_initialize_objfile): Update call to
5750         dwarf2_read_gdb_index.
5751
5752 2018-08-07  Simon Marchi  <simon.marchi@ericsson.com>
5753
5754         * common/filestuff.h (gdb_fopen_cloexec): New overload.
5755         (gdb_open_cloexec): Likewise.
5756         * nat/linux-osdata.c (command_from_pid): Use string_printf.
5757         (commandline_from_pid): Likewise.
5758         (linux_xfer_osdata_threads): Likewise.
5759         (linux_xfer_osdata_fds): Likewise.
5760         * ada-lang.c (is_package_name): Likewise.
5761         * auxv.c (procfs_xfer_auxv): Likewise.
5762         * breakpoint.c (print_one_breakpoint_location): Use
5763         uiout::field_fmt.
5764         (print_one_catch_solib): Use string_printf.
5765         * coff-pe-read.c (add_pe_exported_sym): Likewise.
5766         (add_pe_forwarded_sym): Likewise.
5767         * dwarf2read.c (create_type_unit_group): Likewise.
5768         (build_error_marker_type): Likewise.
5769         * infcall.c (get_function_name): Likewise.
5770         * valprint.c (print_converted_chars_to_obstack): Likewise.
5771         * xtensa-tdep.c (xtensa_register_type): Likewise.
5772
5773 2018-08-06  Simon Marchi  <simon.marchi@ericsson.com>
5774
5775         * remote.c (remote_target::download_tracepoint): Fix format
5776         string errors.
5777
5778 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5779
5780         * tracefile.c: Include common/byte-vector.h.
5781         (trace_save): Change type of buf to gdb::byte_vector.  Initialize
5782         with trace_regblock_size if needed.  Update uses of buf.
5783
5784 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5785
5786         * tracepoint.h (collection_list) <m_regs_mask>: Change type to
5787         std::vector<unsigned char>.
5788         * tracepoint.c (collection_list::collection_list): Remove
5789         m_regs_mask initializer from initializer list.  Resize
5790         m_regs_mask using the largest remote register number.
5791         (collection_list::add_remote_register): Remove size check on
5792         m_regs_mask.  Use at to access element.
5793         (collection_list::stringify): Change type of temp_buf to
5794         gdb::char_vector.  Update uses of temp_buf.  Resize if needed to
5795         stringify the register mask.  Use pack_hex_byte for the register
5796         mask.
5797
5798 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5799
5800         * tracepoint.h (class collection_list) <add_register>: Remove.
5801         <add_remote_register, add_ax_registers, add_local_register>:
5802         Declare.
5803         <add_memrange>: Add scope parameter.
5804         * tracepoint.c (encode_actions_1): Likewise.
5805         (collection_list::add_register): Rename to ...
5806         (collection_list::add_remote_register): ... this.  Update
5807         comment.
5808         (collection_list::add_ax_registers, add_local_register): New
5809         methods.
5810         (collection_list::add_memrange): Add scope parameter.  Call
5811         add_local_register instead of add_register.
5812         (finalize_tracepoint_aexpr): New function.
5813         (collection_list::collect_symbol): Update calls to add_memrange.
5814         Call add_local_register instead of add_register.  Call
5815         add_ax_registers.  Call finalize_tracepoint_aexpr.
5816         (encode_actions_1): Get remote regnos for $reg action.  Call
5817         add_remote_register, add_ax_registers, and add_local_register.
5818         Update call to add_memrange.  Call finalize_tracepoint_aexpr.
5819         (validate_actionline): Call finalize_tracepoint_aexpr.
5820
5821 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5822
5823         * remote.c (remote_target::download_tracepoint): Remove BUF_SIZE.
5824         Replace array buf with gdb::char_vector buf, of size
5825         get_remote_packet_size ().  Replace references to buf and
5826         BUF_SIZE to buf.data () and buf.size ().  Replace strcpy, strcat
5827         and xsnprintf with snprintf.  Raise errors if the buffer is too
5828         small.
5829
5830 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5831
5832         * remote.c (remote_target::download_tracepoint): Fix the has_more
5833         predicate in the QTDP action list iteration.
5834
5835 2018-08-06  Pedro Franco de Carvalho  <pedromfc@linux.ibm.com>
5836
5837         * remote.c (remote_target::download_tracepoint): Fix indentation
5838         in for block.
5839
5840 2018-08-06  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
5841
5842         * proc-api.c (_initialize_proc_api): Remove c, unused.
5843         * procfs.c (procfs_init_inferior): Remove signals, unused.
5844         (procfs_target::make_corefile_notes): Remove old_chain, fpregs,
5845         unused.
5846
5847 2018-08-06  Sergey Korolev  <s.korolev@ndmsystems.com>
5848             Andrew Burgess  <andrew.burgess@embecosm.com>
5849
5850         * linux-nat.c (linux_nat_target::follow_fork): Avoid using
5851         'W_STOPCODE (0)' as this could be ambiguous.
5852
5853 2018-08-03  Sergio Durigan Junior  <sergiodj@redhat.com>
5854
5855         * ser-tcp.c (net_open): Fix thinko when deciding whether to
5856         disable TCP's Nagle algorithm (use "ai_protocol" instead of
5857         "ai_socktype").
5858
5859 2018-08-02  Tom Tromey  <tom@tromey.com>
5860
5861         PR symtab/16842.
5862         * dwarf2read.c (read_func_scope): Set symtab on template parameter
5863         symbols.
5864         (process_structure_scope): Likewise.
5865
5866 2018-08-02  Xavier Roirand  <roirand@adacore.com>
5867
5868         PR gdb/22629:
5869         * darwin-nat.c (darwin_kill_inferior): Fix handling of
5870         kill inferior.
5871
5872 2018-08-02  Tom Tromey  <tom@tromey.com>
5873
5874         * darwin-nat.c (find_inferior_task_it, darwin_find_thread)
5875         (darwin_suspend_inferior, darwin_resume_inferior)
5876         (darwin_decode_notify_message, darwin_resume_inferior_threads)
5877         (darwin_check_new_threads): Check result of get_darwin_inferior.
5878
5879 2018-07-31  Joel Brobecker  <brobecker@adacore.com>
5880
5881         GDB 8.1.1 released.
5882
5883 2018-07-31  Jan Vrany  <jan.vrany@fit.cvut.cz>
5884
5885         * varobj.c (varobj_get_path_expr_parent): Report an error if
5886         parent is a dynamic varobj.
5887
5888 2018-07-31  Simon Marchi  <simon.marchi@ericsson.com>
5889
5890         * gnulib/aclocal.m4: Re-generate.
5891         * gnulib/config.in: Re-generate.
5892         * gnulib/configure: Re-generate.
5893         * gnulib/import/Makefile.in: Re-generate.
5894         * gnulib/import/m4/gnulib-comp.m4: Re-generate.
5895         * gnulib/import/m4/onceonly.m4: Re-generate.
5896
5897 2018-07-31  Simon Marchi  <simon.marchi@ericsson.com>
5898
5899         * target-descriptions.c (struct xml_test_tdesc): New.
5900         (xml_tdesc): Change type to std::vector<xml_test_tdesc>.
5901         (record_xml_tdesc): Update.
5902         (maintenance_check_xml_descriptions): Update.
5903         * target-descriptions.h (record_xml_tdesc): Update comment.
5904
5905 2018-07-30  Andrew Burgess  <andrew.burgess@embecosm.com>
5906
5907         * eval.c (evaluate_subexp_for_sizeof): Check for array type before
5908         checking array bounds are defined.
5909
5910 2018-07-30  Tom Tromey  <tom@tromey.com>
5911
5912         * nat/linux-osdata.c (pid_pgid_entry::operator<): Fix
5913         irreflexivity violation.
5914
5915 2018-07-30  Tom Tromey  <tom@tromey.com>
5916
5917         * cli/cli-decode.c (lookup_cmd): Remove lint code.
5918         * value.c (unpack_long): Remove lint code.
5919         * valops.c (value_ind): Remove lint code.
5920         * valarith.c (value_x_binop, value_x_unop, value_equal)
5921         (value_pos): Remove lint code.
5922
5923 2018-07-28  Tom de Vries  <tdevries@suse.de>
5924
5925         * eval.c (evaluate_subexp_for_sizeof): Interpret size of dynamic type
5926         with undefined upper bound as <optimized out>.
5927
5928 2018-07-27  Sergio Durigan Junior  <sergiodj@redhat.com>
5929
5930         * gcore.in: Rename variable "name" to "prefix".  Expand
5931         "usage" text.
5932
5933 2018-07-14  Jon Turney  <jon.turney@dronecode.org.uk>
5934
5935         * windows-nat.c (windows_nat_target::create_inferior): Update to
5936         call close() in global namespace.
5937
5938 2018-07-26  Tom Tromey  <tom@tromey.com>
5939
5940         * dwarf-index-write.c (add_address_entry): Don't add objfile
5941         offsets.
5942         * dbxread.c (find_stab_function): Rename from
5943         find_stab_function_addr.  Return a bound_minimal_symbol.
5944         (read_dbx_symtab): Use raw_text_low, raw_text_high.
5945         Don't add objfile offsets.
5946         (end_psymtab): Use raw_text_low, raw_text_high,
5947         MSYMBOL_VALUE_RAW_ADDRESS.
5948         (read_ofile_symtab): Update.
5949         (process_one_symbol): Update.
5950         * dwarf2read.c (create_addrmap_from_index): Don't add objfile
5951         offsets.
5952         (dw2_relocate): Remove.
5953         (dw2_find_pc_sect_symtab): Bias PC by the text offset before
5954         searching addrmap.
5955         (dwarf2_gdb_index_functions, dwarf2_debug_names_functions):
5956         Update.
5957         (process_psymtab_comp_unit_reader, add_partial_symbol)
5958         (add_partial_subprogram, dwarf2_ranges_read): Update.
5959         (load_partial_dies): Update.
5960         (add_address_entry): Don't add objfile offsets.
5961         (dwarf2_build_include_psymtabs): Update.
5962         (create_addrmap_from_aranges): Don't add objfile offsets.
5963         (dw2_find_pc_sect_compunit_symtab): Update.
5964         * mdebugread.c (parse_symbol): Don't add objfile offsets.
5965         (parse_lines): Remove 'pst' parameter, replace with 'textlow'.
5966         Update.
5967         (parse_partial_symbols): Don't add objfile offsets.  Use
5968         raw_text_low, raw_text_high.  Update.
5969         (handle_psymbol_enumerators, psymtab_to_symtab_1): Update.
5970         * objfiles.c (objfile_relocate1): Don't relocate psymtabs_addrmap
5971         or call 'relocate' quick function.  Clear psymbol_map.
5972         * psympriv.h (struct partial_symbol) <address>: Add section
5973         offset.
5974         <set_unrelocated_address>: Rename from set_address.
5975         <raw_text_low, raw_text_high>: New methods.
5976         <text_low, text_high>: Add objfile parameter.
5977         (add_psymbol_to_bcache): Add 'section' parameter.  Call
5978         set_unrelocated_address.
5979         * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab)
5980         (find_pc_psymbol): Update.
5981         (fixup_psymbol_section, relocate_psymtabs): Remove.
5982         (dump_psymtab, psym_functions): Update.
5983         (add_psymbol_to_bcache, add_psymbol_to_list): Add 'section'
5984         parameter.
5985         (maintenance_info_psymtabs, maintenance_check_psymtabs): Update.
5986         (start_psymtab_common): Update.
5987         * symfile-debug.c (debug_qf_relocate): Remove.
5988         (debug_sym_quick_functions): Update.
5989         * symfile.h (struct quick_symbol_functions) <relocate>: Remove.
5990         * xcoffread.c (scan_xcoff_symtab): Don't add objfile offsets.
5991         Update.
5992
5993 2018-07-26  Tom Tromey  <tromey@redhat.com>
5994
5995         * dbxread.c (end_psymtab): Use text_high_valid and
5996         text_low_valid.
5997         * mdebugread.c (parse_partial_symbols): Use text_low_valid.
5998         (psymtab_to_symtab_1): Use text_high_valid and text_low_valid.
5999         * psympriv.h (struct partial_symtab) <m_text_low, m_text_high>:
6000         Update comment.
6001         <text_low_valid, text_high_valid>: New fields.
6002         <set_text_low, set_text_high>: Update.
6003         * xcoffread.c (scan_xcoff_symtab): Use text_low_valid.
6004
6005 2018-07-26  Tom Tromey  <tom@tromey.com>
6006
6007         * dbxread.c (read_dbx_symtab, end_psymtab, read_ofile_symtab):
6008         Update.
6009         * dwarf2read.c (dwarf2_create_include_psymtab): Don't initialize
6010         textlow and texthigh fields.
6011         (process_psymtab_comp_unit_reader, dwarf2_build_include_psymtabs):
6012         Update.
6013         * mdebugread.c (parse_lines, parse_partial_symbols)
6014         (psymtab_to_symtab_1): Update.
6015         * psympriv.h (struct partial_symtab) <m_text_low, m_text_high>:
6016         Rename fields.  Update comment.  Now private.
6017         <text_low, text_high, set_text_low, set_text_high>: New methods.
6018         * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab)
6019         (find_pc_sect_psymbol, relocate_psymtabs, dump_psymtab)
6020         (start_psymtab_common, maintenance_info_psymtabs)
6021         (maintenance_check_psymtabs): Update.
6022         * xcoffread.c (xcoff_end_psymtab): Don't initialize textlow and
6023         texthigh fields.
6024         (scan_xcoff_symtab): Update.
6025
6026 2018-07-26  Tom Tromey  <tromey@redhat.com>
6027
6028         * psympriv.h (struct partial_symbol) <unrelocated_address,
6029         address, set_address>: New methods.
6030         * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymbol)
6031         (fixup_psymbol_section, relocate_psymtabs): Update.
6032         (print_partial_symbols): Add 'objfile' parameter.  Update.
6033         (dump_psymtab, add_psymbol_to_bcache, psym_fill_psymbol_map):
6034         Update.
6035
6036 2018-07-26  Tom Tromey  <tom@tromey.com>
6037
6038         * dwarf-index-write.c (write_psymbols, debug_names::insert)
6039         (debug_names::write_psymbols): Update.
6040         * psympriv.h (struct partial_symbol): Derive from
6041         general_symbol_info.
6042         <obj_section>: New method.
6043         (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.n
6044         * psymtab.c (find_pc_sect_psymtab_closer, find_pc_sect_psymtab)
6045         (find_pc_sect_psymbol, fixup_psymbol_section)
6046         (match_partial_symbol, lookup_partial_symbol, relocate_psymtabs)
6047         (print_partial_symbols, recursively_search_psymtabs)
6048         (compare_psymbols, psymbol_hash, psymbol_compare)
6049         (add_psymbol_to_bcache, maintenance_check_psymtabs)
6050         (psymbol_name_matches, psym_fill_psymbol_map): Update.
6051
6052 2018-07-26  Tom Tromey  <tromey@redhat.com>
6053
6054         * dbxread.c (end_psymtab): Remove dead code.
6055
6056 2018-07-26  Andrew Burgess  <andrew.burgess@embecosm.com>
6057
6058         * dwarf2-frame-tailcall.c (tailcall_frame_sniffer): Exit early if
6059         DWARF unwinders are disabled.
6060         * dwarf2-frame.c: Add dwarf2read.h include.
6061         (dwarf2_frame_sniffer): Exit early if DWARF unwinders are
6062         disabled.
6063         (dwarf2_frame_unwinders_enabled_p): Define.
6064         (show_dwarf_unwinders_enabled_p): New function.
6065         (_initialize_dwarf2_frame): Register switch to control DWARF
6066         unwinder use.
6067         * dwarf2-frame.h (dwarf2_frame_unwinders_enabled_p): Declare.
6068         * dwarf2read.c (set_dwarf_cmdlist): Remove static keyword.
6069         (show_dwarf_cmdlist): Remove static keyword.
6070         * dwarf2read.h (set_dwarf_cmdlist): Declare.
6071         (show_dwarf_cmdlist): Declare.
6072         * NEWS: Document new feature.
6073
6074 2018-07-26  Tom de Vries  <tdevries@suse.de>
6075
6076         PR breakpoints/23366
6077         * infcmd.c (info_program_command): Handle ptid == minus_one_ptid.
6078
6079 2018-07-26  Tom de Vries  <tdevries@suse.de>
6080
6081         * dwarf2read.c (read_subrange_type): Warn if DW_AT_upper_bound or
6082         DW_AT_count can't be translated to a dynamic prop.
6083
6084 2018-07-25  Tom de Vries  <tdevries@suse.de>
6085
6086         * dwarf2loc.c (dwarf2_locexpr_baton_eval): Wrap ctx.eval call in
6087         try/catch.
6088
6089 2018-07-25  Jan Vrany  <jan.vrany@fit.cvut.cz>
6090
6091         * breakpoint.c (enable_disable_bp_num_loc): Notify observers.
6092
6093 2018-07-25  Joel Brobecker  <brobecker@adacore.com>
6094
6095         * MAINTAINERS (Global Maintainers): Add Tom Tromey.
6096
6097 2018-07-24  Keith Seitz  <keiths@redhat.comt
6098
6099         PR symtab/23010
6100         * dwarf2read.c (dw2_add_symbol_to_list): New function.
6101         (fixup_go_packaging, new_symbol): Use dw2_add_symbol_to_list
6102         instead of add_symbol_to_list.
6103         (read_file_scope): Call prepare_one_comp_unit before reading
6104         any other DIEs.
6105
6106 2018-07-24  Simon Marchi  <simon.marchi@ericsson.com>
6107
6108         * common/scoped_mmap.h (class scoped_mmap): Fix indentation.
6109
6110 2018-07-24  Tom Tromey  <tom@tromey.com>
6111
6112         * utils.c (malloc, realloc, free): Don't declare.
6113         * configure, config.in: Rebuild.
6114         * configure.ac: Don't check for declarations of free, malloc, or
6115         realloc.
6116
6117 2018-07-22  Simon Marchi  <simon.marchi@polymtl.ca>
6118
6119         * aarch64-linux-nat.c
6120         (aarch64_linux_nat_target::stopped_data_address): Remove unused
6121         variable.
6122         * arm-linux-nat.c (fetch_regs): Likewise.
6123         (store_regs): Likewise.
6124         (fetch_vfp_regs): Likewise.
6125         (store_vfp_regs): Likewise.
6126         (arm_linux_nat_target::insert_hw_breakpoint): Likewise.
6127         (arm_linux_nat_target::remove_hw_breakpoint): Likewise.
6128         (arm_linux_nat_target::insert_watchpoint): Likewise.
6129         (arm_linux_nat_target::remove_watchpoint): Likewise.
6130         * mips-linux-nat.c (mips_linux_nat_target::insert_watchpoint):
6131         Likewise.
6132         * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_get_sveregs):
6133         Likewise.
6134         * ppc-linux-nat.c (fetch_register): Likewise.
6135         (fetch_all_gp_regs): Likewise.
6136         (fetch_ppc_registers): Likewise.
6137         (store_all_gp_regs): Likewise.
6138         (store_ppc_registers): Likewise.
6139         (hwdebug_insert_point): Likewise.
6140         (can_use_watchpoint_cond_accel): Likewise.
6141         * remote-sim.c (gdb_os_write_stdout): Likewise.
6142
6143 2018-07-22  Simon Marchi  <simon.marchi@polymtl.ca>
6144             Tom Tromey  <tom@tromey.com>
6145
6146         * warning.m4 (AM_GDB_WARNINGS): Add -Wunused-variable and special
6147         test for it.
6148         * configure: Rebuild.
6149
6150 2018-07-22  Tom Tromey  <tom@tromey.com>
6151
6152         * regformats/regdat.sh: Define xmltarget_${name} inside
6153         #ifndef IN_PROCESS_AGENT.
6154
6155 2018-07-22  Tom Tromey  <tom@tromey.com>
6156
6157         * value.c (value_fetch_lazy_bitfield): Remove unused variable.
6158
6159 2018-07-22  Tom Tromey  <tom@tromey.com>
6160
6161         * symfile.c (reread_symbols): Notify iter, not objfile.
6162
6163 2018-07-22  Tom Tromey  <tom@tromey.com>
6164
6165         * ravenscar-thread.c (ravenscar_thread_target::store_registers):
6166         Use arch_ops.
6167         (ravenscar_thread_target::prepare_to_store): Likewise.
6168
6169 2018-07-22  Tom Tromey  <tom@tromey.com>
6170
6171         * python/py-prettyprint.c (gdbpy_apply_val_pretty_printer): Remove
6172         unused variable.  Call value_fetch_lazy when needed.
6173         * guile/scm-pretty-print.c (gdbscm_apply_val_pretty_printer):
6174         Remove unused variable.  Call value_fetch_lazy when needed.
6175
6176 2018-07-22  Tom Tromey  <tom@tromey.com>
6177
6178         * m32c-tdep.c (mark_dma): Return void.
6179         (make_regs): Remove unused declarations.
6180
6181 2018-07-22  Tom Tromey  <tom@tromey.com>
6182
6183         * guile/scm-cmd.c (gdbscm_dont_repeat): Call
6184         cmdscm_get_valid_command_smob_arg_unsafe for effect.
6185         * guile/scm-block.c (gdbscm_make_block_syms_iter): Call
6186         bkscm_get_valid_block_smob_arg_unsafe for effect.
6187
6188 2018-07-22  Tom Tromey  <tom@tromey.com>
6189
6190         * bfin-tdep.c (bfin_push_dummy_call): Use arg_type, not
6191         value_type.
6192
6193 2018-07-22  Tom Tromey  <tom@tromey.com>
6194
6195         * windows-nat.c (saved_context): Conditionally define.
6196         * remote.c (remote_target::remote_btrace_maybe_reopen):
6197         Conditionally declare "warned".
6198         * inflow.c (sigquit_ours): Conditionally define.
6199         (new_tty): Move "tty" declaration inside #if.
6200         * guile/guile.c (guile_datadir): Conditionally define.
6201         * charset.c (set_be_le_names): Move some declarations inside #if.
6202         * btrace.c (parse_xml_btrace): Move "errcode" declaration inside
6203         #if.
6204         (parse_xml_btrace_conf): Likewise.
6205
6206 2018-07-22  Tom Tromey  <tom@tromey.com>
6207
6208         * spu-tdep.c (spu_get_overlay_table): Remove unused variable.
6209
6210 2018-07-22  Tom Tromey  <tom@tromey.com>
6211
6212         * guile/scm-value.c (gdbscm_value_call): Remove unused variables.
6213         * guile/scm-math.c (vlscm_unop_gdbthrow, vlscm_binop_gdbthrow)
6214         (vlscm_convert_typed_value_from_scheme): Remove unused variable.
6215         * buildsym-legacy.c (get_macro_table): Remove unused variable.
6216         * stack.c (frame_apply_level_command): Remove unused variable.
6217         * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused variable.
6218         * sparc64-tdep.c (adi_examine_command): Remove unused variable.
6219         * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Remove
6220         unused variable.
6221         * nios2-tdep.c (nios2_push_dummy_call): Remove unused variable.
6222         * mep-tdep.c (mep_push_dummy_call): Remove unused variable.
6223         * ada-lang.c (ada_lookup_symbol_list_worker): Remove unused
6224         variable.
6225         * amd64-tdep.c (amd64_supply_xsave): Remove unused variable.
6226         * arm-tdep.c (arm_record_data_proc_misc_ld_str): Remove unused
6227         variable.
6228         * breakpoint.c (check_no_tracepoint_commands, update_watchpoint):
6229         Remove unused variable.
6230         * cli/cli-script.c (recurse_read_control_structure): Remove unused
6231         variable.
6232         * common/tdesc.c (print_xml_feature::visit): Remove unused
6233         variable.
6234         * compile/compile-object-load.c (store_regs): Remove unused
6235         variables.
6236         * complaints.c (clear_complaints): Remove unused variable.
6237         * corelow.c (core_target_open): Remove unused variable.
6238         * fbsd-tdep.c (fbsd_core_info_proc_status): Remove unused
6239         variable.
6240         * guile/scm-frame.c (gdbscm_frame_read_var): Remove unused
6241         variable.
6242         * guile/scm-symtab.c (stscm_print_sal_smob): Remove unused
6243         variable.
6244         * guile/scm-type.c (gdbscm_field_baseclass_p): Remove unused
6245         variable.
6246         * guile/scm-utils.c (gdbscm_parse_function_args): Remove unused
6247         variable.
6248         * hppa-tdep.c (hppa_stub_frame_unwind_cache): Remove unused
6249         variable.
6250         * ia64-tdep.c (examine_prologue): Remove unused variable.
6251         * infcall.c (run_inferior_call): Remove unused variable.
6252         * inferior.c (exit_inferior): Remove unused variable.
6253         * infrun.c (infrun_thread_ptid_changed): Remove unused variable.
6254         * linespec.c (decode_line_2): Remove unused variable.
6255         * linux-nat.c (super_close): Remove.
6256         * linux-tdep.c (linux_info_proc): Remove unused variable.
6257         * mi/mi-main.c (mi_execute_command): Remove unused variable.
6258         * microblaze-linux-tdep.c (microblaze_linux_sigtramp_cache):
6259         Remove unused variable.
6260         * parse.c (find_minsym_type_and_address): Remove unused variable.
6261         * printcmd.c (info_symbol_command, printf_floating): Remove unused
6262         variable.
6263         * python/py-breakpoint.c (bppy_set_commands): Remove unused
6264         variable.
6265         * python/py-unwind.c (unwind_infopy_dealloc): Remove unused
6266         variables.
6267         * record-btrace.c (record_btrace_target::store_registers): Remove
6268         unused variable.
6269         (cmd_show_record_btrace_cpu): Remove unused variable.
6270         * riscv-tdep.c (riscv_register_reggroup_p)
6271         (riscv_push_dummy_call, riscv_return_value): Remove unused
6272         variable.
6273         * rust-exp.y (literal): Remove unused variable.
6274         * rust-lang.c (rust_evaluate_subexp) <OP_RUST_ARARAY>: Remove
6275         unused variable.
6276         <STRUCTOP_ANONYMOUS>: Likewise.
6277         * s390-linux-tdep.c (s390_linux_init_abi_31)
6278         (s390_linux_init_abi_64): Remove unused variable.
6279         * ser-ming2.c (ser_windows_read_prim, pipe_select_thread)
6280         (file_select_thread, net_windows_open, _initialize_ser_windows):
6281         Remove unused variables.
6282         * symtab.c (find_pc_sect_line): Remove unused variable.
6283         * target-memory.c (compute_garbled_blocks): Remove unused
6284         variable.
6285         (target_write_memory_blocks): Remove unused variable.
6286         * target.c (target_stack::unpush): Remove unused variables.
6287         * tracepoint.c (start_tracing, all_tracepoint_actions)
6288         (merge_uploaded_trace_state_variables)
6289         (print_one_static_tracepoint_marker): Remove unused variable.
6290         * unittests/basic_string_view/element_access/char/1.cc (test01):
6291         Remove unused variable.
6292         * windows-nat.c (windows_continue, windows_add_all_dlls)
6293         (do_initial_windows_stuff, windows_nat_target::create_inferior):
6294         Remove unused variables.
6295
6296 2018-07-21  Simon Marchi  <simon.marchi@polymtl.ca>
6297
6298         * arm-tdep.c (arm_gdbarch_init): Declare attr_arch and
6299         attr_profile in HAVE_ELF.
6300         * rs6000-tdep.c (bfd_uses_spe_extensions): Declare vector_abi in
6301         HAVE_ELF.
6302
6303 2018-07-20  Simon Marchi  <simon.marchi@polymtl.ca>
6304
6305         * frame.c (frame_register_unwind): Change parameter name.
6306         (frame_unwind_register): Likewise.
6307         (frame_unwind_register_value): Likewise.
6308         (frame_unwind_register_signed): Likewise.
6309         (frame_unwind_register_unsigned): Likewise.
6310         * frame.h (frame_register_unwind): Likewise.
6311         (frame_unwind_register): Likewise.
6312         (frame_unwind_register_value): Likewise.
6313         (frame_unwind_register_signed): Likewise.
6314         (frame_unwind_register_unsigned): Likewise.
6315         (frame_unwind_arch): Likewise.
6316
6317 2018-07-20  Maciej W. Rozycki  <macro@mips.com>
6318
6319         * MAINTAINERS: Update my e-mail address, downgrade to MIPS I-IV
6320         ISA maintenance.
6321
6322 2018-07-20  Maciej W. Rozycki  <macro@mips.com>
6323
6324         * mips-linux-nat.c (mips_linux_nat_target::read_description):
6325         Call `get_ptrace_pid' rather than extracting the ptrace PID by
6326         hand.
6327
6328 2018-07-20  Keith Seitz  <keiths@redhat.com>
6329
6330         * buildsym.h (struct buildsym_compunit) <m_objfile, m_subfiles,
6331         m_main_subfile, m_comp_dir, m_producer, m_debugformat,
6332         m_compunit_symtab, m_language>: Add "m_" prefix.
6333         Update all uses.
6334         * buildsym.c: Update all uses.
6335
6336 2018-07-20  Tom Tromey  <tom@tromey.com>
6337
6338         * buildsym-legacy.h (record_line): Don't use record_line_ftype.
6339         * buildsym.h (record_line_ftype): Remove typedef.
6340
6341 2018-07-20  Tom Tromey  <tom@tromey.com>
6342
6343         * buildsym-legacy.h (augment_type_symtab): Don't declare.
6344         (end_expandable_symtab): Likewise.
6345         (end_symtab_get_static_block): Likewise.
6346         (end_symtab_from_static_block): Likewise.
6347         * buildsym-legacy.c (augment_type_symtab): Remove.
6348         (end_expandable_symtab): Remove.
6349         (end_symtab_get_static_block): Remove.
6350         (end_symtab_from_static_block): Remove.
6351
6352 2018-07-20  Tom Tromey  <tom@tromey.com>
6353
6354         * dwarf2read.c: Include buildsym.h.
6355         (struct dwarf2_cu) <builder>: New method.
6356         (fixup_go_packaging): Update.
6357         (process_full_comp_unit, process_full_type_unit): Update.  Don't
6358         use scoped_free_pendings.
6359         (using_directives): Add "cu" parameter, remove "language".
6360         (read_import_statement, setup_type_unit_groups, )
6361         (read_func_scope, read_lexical_block_scope)
6362         (dwarf2_record_block_ranges, read_namespace): Update.
6363         (lnp_state_machine::lnp_state_machine): Add cu parameter.
6364         (lnp_state_machine::handle_end_sequence): Update.
6365         (class lnp_state_machine) <m_cu>: New member.
6366         <m_record_line_callback>: Remove.
6367         <m_currently_recording_lines>: New member.
6368         (lnp_state_machine::handle_set_file): Update.
6369         (noop_record_line): Remove.
6370         (dwarf_record_line_p): Add cu parameter.
6371         (dwarf_record_line_1, dwarf_finish_line): Likewise.
6372         (lnp_state_machine::record_line)
6373         (lnp_state_machine::lnp_state_machine)
6374         (lnp_state_machine::check_line_address, dwarf_decode_lines_1)
6375         (dwarf_decode_lines): Update.
6376         (dwarf2_start_subfile): Add cu parameter.
6377         (dwarf2_start_symtab, new_symbol): Update.
6378         (macro_start_file, dwarf_decode_macro_bytes): Add cu parameter.
6379         Remove dwarf2_per_objfile parameter.
6380         (dwarf_decode_macros): Update.
6381
6382 2018-07-20  Tom Tromey  <tom@tromey.com>
6383
6384         * stabsread.c (define_symbol): Update.
6385         * buildsym-legacy.h (get_buildsym_compunit): Declare.
6386         * dwarf2read.c (new_symbol): Update.
6387         * cp-support.h (cp_scan_for_anonymous_namespaces): Update.
6388         * cp-namespace.c: Include buildsym.h.
6389         (cp_scan_for_anonymous_namespaces): Add "compunit" parameter.
6390         * buildsym-legacy.c (get_buildsym_compunit): New function.
6391
6392 2018-07-20  Tom Tromey  <tom@tromey.com>
6393
6394         * xcoffread.c: Include buildsym-legacy.h.
6395         * windows-nat.c: Include buildsym-legacy.h.
6396         * stabsread.c: Include buildsym-legacy.h.
6397         * mdebugread.c: Include buildsym-legacy.h.
6398         * buildsym-legacy.h: New file.
6399         * buildsym-legacy.c: New file, from buildsym.c.
6400         * go32-nat.c: Include buildsym-legacy.h.
6401         * dwarf2read.c: Include buildsym-legacy.h.
6402         * dbxread.c: Include buildsym-legacy.h.
6403         * cp-namespace.c: Include buildsym-legacy.h.
6404         * coffread.c: Include buildsym-legacy.h.
6405         * buildsym.h: Move some contents to buildsym-legacy.h.
6406         * buildsym.c: Include buildsym-legacy.h.  Move many functions to
6407         buildsym-legacy.c.
6408         * Makefile.in (HFILES_NO_SRCDIR): Add buildsym-legacy.h.
6409
6410 2018-07-20  Tom Tromey  <tom@tromey.com>
6411
6412         * buildsym.h (struct buildsym_compunit): Move from buildsym.c.
6413         * buildsym.c (struct buildsym_compunit): Move to buildsym.h.
6414         (buildsym_compunit::buildsym_compunit)
6415         (buildsym_compunit::~buildsym_compunit)
6416         (buildsym_compunit::get_macro_table): Define.
6417
6418 2018-07-20  Tom Tromey  <tom@tromey.com>
6419
6420         * buildsym.c (reset_symtab_globals): Remove.
6421         (buildsym_compunit::end_symtab_from_static_block): Update.
6422         (buildsym_compunit::augment_type_symtab): Update.
6423         (end_symtab_from_static_block): Call free_buildsym_compunit.
6424         (augment_type_symtab, end_symtab, end_expandable_symtab):
6425         Likewise.
6426
6427 2018-07-20  Tom Tromey  <tom@tromey.com>
6428
6429         * arch-utils.c: Do not include buildsym.h.
6430         * mipsread.c: Do not include buildsym.h.
6431         * machoread.c: Do not include buildsym.h.
6432         * elfread.c: Do not include buildsym.h.
6433
6434 2018-07-20  Tom Tromey  <tom@tromey.com>
6435
6436         * buildsym.c (buildsym_compunit::buildsym_compunit): Do more
6437         initialization.
6438         (buildsym_compunit): Add new constructor.
6439         (struct buildsym_compunit) <get_last_source_file, finish_block,
6440         record_block_range, start_subfile, patch_subfile_names,
6441         push_subfile, pop_subfile, record_line, get_compunit_symtab,
6442         set_last_source_start_addr, get_last_source_start_addr,
6443         get_local_using_directives, set_local_using_directives,
6444         get_global_using_directives, outermost_context_p,
6445         get_current_context_stack, get_context_stack_depth,
6446         get_current_subfile, get_local_symbols, get_file_symbols,
6447         get_global_symbols, record_debugformat, record_producer,
6448         push_context, pop_context, end_symtab_get_static_block,
6449         end_symtab_from_static_block, end_symtab, end_expandable_symtab>:
6450         New public methods.
6451         <record_pending_block, finish_block_internal, make_blockvector,
6452         watch_main_source_file_lossage, end_symtab_with_blockvector>: New
6453         private methods.
6454         Update all users.
6455
6456 2018-05-22  Tom Tromey  <tom@tromey.com>
6457
6458         * buildsym.c (record_pending_block): Move earlier.  Remove objfile
6459         parameter.
6460         (finish_block_internal): Update.
6461
6462 2018-07-20  Tom Tromey  <tom@tromey.com>
6463
6464         * buildsym.c (record_pending_block): Move earlier.  Remove objfile
6465         parameter.
6466         (finish_block_internal): Update.
6467
6468 2018-07-20  Tom Tromey  <tom@tromey.com>
6469
6470         * buildsym.h (EXTERN): Don't define or undef.
6471         * buildsym.c (EXTERN): Don't define.
6472
6473 2018-07-20  Tom Tromey  <tom@tromey.com>
6474
6475         * buildsym.c: Remove TODO comment.
6476
6477 2018-07-20  Tom Tromey  <tom@tromey.com>
6478
6479         * coffread.c (coff_symtab_read): Update.
6480         * xcoffread.c (xcoff_psymtab_to_symtab_1): Update.
6481         (xcoff_new_init): Update.
6482         * mipsread.c (mipscoff_new_init): Update.
6483         * mdebugread.c (mdebug_build_psymtabs): Update.
6484         * elfread.c (elf_new_init): Update.
6485         * dwarf2read.c (process_full_comp_unit, process_full_type_unit):
6486         Update.
6487         * dbxread.c (dbx_new_init, dbx_psymtab_to_symtab_1)
6488         (coffstab_build_psymtabs, elfstab_build_psymtabs)
6489         (stabsect_build_psymtabs): Update.
6490         * buildsym.h (buildsym_init): Don't declare.
6491         * buildsym.c: Update comment.
6492         (prepare_for_building): Remove.
6493         (start_symtab, restart_symtab): Update.
6494         (reset_symtab_globals): Update comment.
6495         (buildsym_init): Remove.
6496
6497 2018-07-20  Tom Tromey  <tom@tromey.com>
6498
6499         * xcoffread.c (read_xcoff_symtab, process_xcoff_symbol): Update.
6500         * stabsread.c (patch_block_stabs, define_symbol, read_type)
6501         (read_enum_type, common_block_start, common_block_end)
6502         (cleanup_undefined_types_1, finish_global_stabs): Update.
6503         * mdebugread.c (psymtab_to_symtab_1): Update.
6504         * dwarf2read.c (fixup_go_packaging, read_func_scope)
6505         (read_lexical_block_scope, new_symbol): Update.
6506         * dbxread.c (process_one_symbol): Update.
6507         * coffread.c (coff_symtab_read, process_coff_symbol)
6508         (coff_read_enum_type): Update.
6509         * buildsym.h (file_symbols, global_symbols, local_symbols): Don't
6510         declare.
6511         (get_local_symbols, get_file_symbols, get_global_symbols): New
6512         functions.
6513         * buildsym.c (~buildsym_compunit): Clean up m_file_symbols and
6514         m_global_symbols.
6515         <m_file_symbols, m_local_symbols, m_global_symbols>: New members.
6516         (~scoped_free_pendings): Update.
6517         (finish_block, prepare_for_building, reset_symtab_globals)
6518         (end_symtab_get_static_block, end_symtab_with_blockvector)
6519         (augment_type_symtab, push_context): Update.
6520         (get_local_symbols, get_file_symbols, get_global_symbols): New
6521         functions.
6522         (buildsym_init): Update.
6523
6524 2018-07-20  Tom Tromey  <tom@tromey.com>
6525
6526         * dwarf2read.c (process_full_comp_unit): Do not set list_in_scope.
6527         (process_full_type_unit): Likewise.
6528         (dwarf2_start_symtab): Set list_in_scope.
6529
6530 2018-07-20  Tom Tromey  <tom@tromey.com>
6531
6532         * dwarf2read.c (process_psymtab_comp_unit_reader)
6533         (build_type_psymtabs_reader): Do not set list_in_scope.
6534
6535 2018-07-20  Tom Tromey  <tom@tromey.com>
6536
6537         * buildsym.c (free_pendings): Remove.
6538         (add_symbol_to_list, scoped_free_pendings)
6539         (finish_block_internal, buildsym_init): Update.
6540
6541 2018-07-20  Tom Tromey  <tom@tromey.com>
6542
6543         * xcoffread.c (read_xcoff_symtab): Update.
6544         * dwarf2read.c (read_func_scope, read_lexical_block_scope):
6545         Update.
6546         * dbxread.c (process_one_symbol): Update.
6547         * coffread.c (coff_symtab_read): Update.
6548         * buildsym.h (finish_block): Update.
6549         * buildsym.c (finish_block): Remove "listhead" argument.
6550         (end_symtab_get_static_block): Update.
6551
6552 2018-07-20  Tom Tromey  <tom@tromey.com>
6553
6554         * buildsym.h (class scoped_free_pendings): Remove constructor.
6555         * buildsym.c (struct buildsym_compunit) <free_pending_blocks>: New
6556         method.
6557         <m_pending_block_obstack, m_pending_blocks>: New members.
6558         (pending_block_obstack, pending_blocks): Remove.
6559         (scoped_free_pendings::scoped_free_pendings): Default.
6560         (~scoped_free_pendings): Update.
6561         (free_pending_blocks): Remove.
6562         (finish_block_internal, record_pending_block, make_blockvector)
6563         (end_symtab_get_static_block, augment_type_symtab, push_context)
6564         (buildsym_init): Update.
6565
6566 2018-07-20  Tom Tromey  <tom@tromey.com>
6567
6568         * buildsym.c (struct buildsym_compunit) <m_pending_addrmap,
6569         m_pending_addrmap_obstack, m_pending_addrmap_interesting>: New
6570         members.
6571         (pending_addrmap, pending_addrmap_obstack)
6572         (pending_addrmap_interesting): Remove.
6573         (scoped_free_pendings, record_block_range, make_blockvector)
6574         (prepare_for_building, reset_symtab_globals, buildsym_init):
6575         Update.
6576
6577 2018-07-20  Tom Tromey  <tom@tromey.com>
6578
6579         * xcoffread.c (process_linenos): Update.
6580         * stabsread.c (define_symbol, read_type, read_enum_type): Update.
6581         * mdebugread.c (psymtab_to_symtab_1): Update.
6582         * dwarf2read.c (setup_type_unit_groups)
6583         (lnp_state_machine::handle_set_file, dwarf_record_line_p)
6584         (lnp_state_machine::record_line, dwarf_decode_lines): Update.
6585         * dbxread.c (process_one_symbol): Update.
6586         * coffread.c (coff_symtab_read, enter_linenos)
6587         (process_coff_symbol): Update.
6588         * buildsym.h (current_subfile): Don't declare.
6589         (get_current_subfile): Declare.
6590         * buildsym.c (struct buildsym_compunit) <m_current_subfile>: New
6591         member.
6592         (start_subfile, free_buildsym_compunit, push_subfile)
6593         (prepare_for_building, start_symtab): Update.
6594         (get_current_subfile): New function.
6595
6596 2018-07-20  Tom Tromey  <tom@tromey.com>
6597
6598         * coffread.c (coff_symtab_read): Update.
6599         * xcoffread.c (read_xcoff_symtab): Update.
6600         * dwarf2read.c (new_symbol): Update.
6601         (read_func_scope, read_lexical_block_scope): Update.
6602         * dbxread.c (process_one_symbol): Update.
6603         * buildsym.h (context_stack, context_stack_depth): Don't declare.
6604         (outermost_context_p): Remove macro.
6605         (outermost_context_p, get_current_context_stack)
6606         (get_context_stack_depth): Declare.
6607         (pop_context): Return struct context_stack.
6608         * buildsym.c (struct buildsym_compunit) <m_context_stack: New
6609         member.
6610         (context_stack_size): Remove.
6611         (INITIAL_CONTEXT_STACK_SIZE): Remove.
6612         (prepare_for_building, end_symtab_get_static_block)
6613         (augment_type_symtab, push_context): Update.
6614         (pop_context): Return struct context_stack.
6615         (outermost_context_p, get_current_context_stack)
6616         (get_context_stack_depth): New functions.
6617         (buildsym_init): Update.
6618
6619 2018-07-20  Tom Tromey  <tom@tromey.com>
6620
6621         * rust-exp.y: Now a pure parser.  Update all rules.
6622         (%union): Move earlier.
6623         (current_parser, work_obstack): Remove globals.
6624         (rust_parser, ~rust_parser): Update.
6625         (class rust_parser) <copy_name, concat3, crate_name, super_name,
6626         lex_character, lex_number, lex_string, lex_identifier,
6627         rust_lookup_type, convert_params_to_types, convert_ast_to_type,
6628         convert_name, convert_params_to_expression,
6629         convert_ast_to_expression, ast_basic_type, ast_operation,
6630         ast_compound_assignment, rust_op, ast_literal, ast_dliteral,
6631         ast_structop, ast_structop_anonymous, ast_unary, ast_cast,
6632         ast_call_ish, ast_path, ast_string, ast_struct, ast_range,
6633         ast_array_type, ast_slice_type, ast_reference_type,
6634         ast_pointer_type, ast_function_type, ast_tuple_type>: New methods.
6635         (rust_parse): Update.
6636         (rustyyerror, rustyylex): Add parser parameter.
6637         (rust_lex_test_one, rust_lex_int_test, rust_lex_exception_test)
6638         (rust_lex_stringish_test, rust_lex_test_sequence)
6639         (rust_lex_test_trailing_dot, rust_lex_test_completion)
6640         (rust_lex_test_push_back, rust_lex_tests): Update.
6641
6642 2018-07-19  Pedro Alves  <palves@redhat.com>
6643
6644         * guile/guile-internal.h (gdbscm_scm_to_c_string): Now returns a
6645         gdb::unique_xmalloc_ptr.
6646         * guile/scm-breakpoint.c (gdbscm_set_breakpoint_condition_x):
6647         Adjust to use dbscm_wrap and gdb::unique_xmalloc_ptr.
6648         * guile/scm-exception.c (gdbscm_exception_message_to_string): Use
6649         copy-initialization.
6650         * guile/scm-pretty-print.c (ppscm_print_children): Use
6651         gdb::unique_xmalloc_ptr instead of cleanups.
6652         (gdbscm_apply_val_pretty_printer): Remove cleanups.
6653         * guile/scm-string.c (gdbscm_scm_to_c_string): Now returns a
6654         gdb::unique_xmalloc_ptr.
6655         * guile/scm-type.c (gdbscm_type_field, gdbscm_type_has_field_p):
6656         Adjust to use gdb::unique_xmalloc_ptr.
6657         * guile/scm-utils.c (extract_arg): Adjust.
6658         * guile/scm-value.c (gdbscm_value_field): Adjust to use
6659         gdb::unique_xmalloc_ptr instead of a cleanup.
6660
6661 2018-07-19  Tom Tromey  <tom@tromey.com>
6662
6663         * utils.c (do_value_free_to_mark)
6664         (make_cleanup_value_free_to_mark): Remove.
6665         * utils.h (make_cleanup_value_free_to_mark): Remove.
6666
6667 2018-07-19  Pedro Alves  <palves@redhat.com>
6668
6669         * guile/guile-internal.h (gdbscm_wrap): Really make 'args' a
6670         forwarding reference.
6671
6672 2018-07-18  Pedro Alves  <palves@redhat.com>
6673
6674         * guile/guile.c (gdbscm_execute_gdb_command): Adjust to use
6675         gdbscm_wrap.  Use gdb::unique_xmalloc_ptr<char> instead of a
6676         cleanup.
6677
6678 2018-07-18  Pedro Alves  <palves@redhat.com>
6679
6680         * guile/guile-internal.h: Add comment about mixing GDB and Scheme
6681         exceptions.
6682         (GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS): Delete.
6683         (gdbscm_wrap): New.
6684         * guile/scm-frame.c (gdbscm_frame_read_register): Use xfree
6685         directly instead of a cleanup.
6686         * guile/scm-math.c (vlscm_unop_gdbthrow): New, factored out from ...
6687         (vlscm_unop): ... this.  Reimplement using gdbscm_wrap.
6688         (vlscm_binop_gdbthrow): New, factored out from ...
6689         (vlscm_binop): ... this.  Reimplement using gdbscm_wrap.
6690         (vlscm_rich_compare): Use gdbscm_wrap.
6691         * guile/scm-symbol.c (gdbscm_lookup_symbol): Use xfree directly
6692         instead of a cleanup.
6693         (gdbscm_lookup_global_symbol): Use xfree directly instead of a
6694         cleanup.
6695         * guile/scm-type.c (gdbscm_type_field, gdbscm_type_has_field_p):
6696         Use xfree directly instead of a cleanup.
6697         * guile/scm-value.c (gdbscm_make_value, gdbscm_make_lazy_value):
6698         Adjust to use gdbscm_wrap and scoped_value_mark.
6699         (gdbscm_value_optimized_out_p): Adjust to use gdbscm_wrap.
6700         (gdbscm_value_address, gdbscm_value_dereference)
6701         (gdbscm_value_referenced_value): Adjust to use gdbscm_wrap and
6702         scoped_value_mark.
6703         (gdbscm_value_dynamic_type): Use scoped_value_mark.
6704         (vlscm_do_cast, gdbscm_value_field): Adjust to use gdbscm_wrap and
6705         scoped_value_mark.
6706         (gdbscm_value_subscript, gdbscm_value_call): Adjust to use
6707         gdbscm_wrap and scoped_value_mark.
6708         (gdbscm_value_to_string): Use xfree directly instead of a
6709         cleanup.  Move 'buffer' unique_ptr to TRY scope.
6710         (gdbscm_value_to_lazy_string): Use xfree directly instead of a
6711         cleanup.  Move 'buffer' unique_ptr to TRY scope.  Use
6712         scoped_value_mark.
6713         (gdbscm_value_fetch_lazy_x): Use gdbscm_wrap.
6714         (gdbscm_parse_and_eval): Adjust to use gdbscm_wrap and
6715         scoped_value_mark.
6716         (gdbscm_history_ref, gdbscm_history_append_x): Adjust to use
6717         gdbscm_wrap.
6718
6719 2018-07-18  Tom de Vries  <tdevries@suse.de>
6720
6721         * findvar.c (default_read_var_value): Also resolve dynamic type for
6722         LOC_OPTIMIZED_OUT vars.
6723
6724 2018-07-18  Maciej W. Rozycki  <macro@mips.com>
6725
6726         * mips-tdep.c (micromips_next_pc): Add SYSCALL instruction
6727         decoding.
6728
6729 2018-07-17  Tom Tromey  <tom@tromey.com>
6730
6731         * guile/scm-param.c (pascm_set_func, pascm_show_func)
6732         (compute_enum_list, pascm_set_param_value_x)
6733         (gdbscm_parameter_value): Update.
6734         * guile/guile-internal.h (gdbscm_scm_to_string): Update.
6735         (gdbscm_scm_to_host_string): Update.
6736         * guile/scm-math.c (vlscm_convert_typed_value_from_scheme):
6737         Update.
6738         * guile/scm-cmd.c (cmdscm_add_completion): Update.
6739         * guile/scm-pretty-print.c (ppscm_print_string_repr): Update.
6740         * guile/scm-string.c (gdbscm_scm_to_string): Return
6741         unique_xmalloc_ptr.
6742         (gdbscm_scm_to_host_string): Likewise.
6743
6744 2018-07-17  Tom Tromey  <tom@tromey.com>
6745
6746         * guile/guile.c (gdbscm_eval_from_control_command): Update.
6747         * guile/guile-internal.h (gdbscm_safe_eval_string): Update.
6748         * guile/scm-objfile.c (gdbscm_execute_objfile_script): Update.
6749         * guile/scm-safe-call.c (gdbscm_safe_eval_string): Return
6750         unique_xmalloc_ptr.
6751
6752 2018-07-17  Tom Tromey  <tom@tromey.com>
6753
6754         * guile/scm-param.c (pascm_signal_setshow_error): Update.
6755         * guile/guile-internal.h (gdbscm_exception_message_to_string):
6756         Update.
6757         * guile/scm-cmd.c (cmdscm_function): Update.
6758         * guile/scm-pretty-print.c
6759         (ppscm_print_exception_unless_memory_error): Update.
6760         * guile/scm-exception.c (gdbscm_exception_message_to_string):
6761         Return unique_xmalloc_ptr.
6762
6763 2018-07-17  Tom Tromey  <tom@tromey.com>
6764
6765         * guile/scm-pretty-print.c (ppscm_make_pp_type_error_exception):
6766         Use string_printf.
6767
6768 2018-07-17  Jim Wilson  <jimw@sifive.com>
6769
6770         * riscv-tdep.c (riscv_has_feature): Delete comment that refers to
6771         set_gdbarch_decr_pc_after_break.  Call riscv_read_misa_reg always.
6772         (riscv_gdbarch_init): Delete local has_compressed_isa.  Delete now
6773         unecessary braces after EF_RISCV_RVC test.  Delete call to
6774         set_gdbarch_decr_pc_after_break.
6775
6776         * riscv-tdep.h (DECLARE_CSR): Use RISCV_FIRST_CSR_REGNUM instead of
6777         RISCV_LAST_FP_REGNUM + 1.
6778         (RSICV_CSR_LEGACY_MISA_REGNUM): Add RISCV_FIRST_CSR_REGNUM.
6779
6780 2018-07-17  Tom Tromey  <tom@tromey.com>
6781
6782         * configure.ac: Remove --disable-gdbcli.
6783         * configure: Rebuild.
6784         * Makefile.in (SUBDIR_CLI_DEPS, SUBDIR_CLI_LDFLAGS)
6785         (SUBDIR_CLI_CFLAGS): Remove.
6786         (SFILES): Use SUBDIR_CLI_SRCS.
6787         (COMMON_OBS): Use SUBDIR_CLI_OBS.
6788
6789 2018-07-17  Tom Tromey  <tom@tromey.com>
6790
6791         PR gdb/18624:
6792         * coffread.c (coff_symtab_read): Use scoped_free_pendings.
6793
6794 2018-07-16  Jim Wilson  <jimw@sifive.com>
6795
6796         * riscv-tdep.c (riscv_gdbarch_init): Call gdbarch_init_osabi.
6797
6798 2018-07-16  Simon Marchi  <simon.marchi@ericsson.com>
6799
6800         * ia64-libunwind-tdep.c (libunwind_frame_cache): Remove unused
6801         variable.
6802         (libunwind_frame_sniffer): Likewise.
6803         (libunwind_frame_prev_register): Likewise.
6804         (libunwind_sigtramp_frame_sniffer): Likewise.
6805         * ia64-tdep.c (ia64_access_reg): Likewise.
6806         (ia64_access_rse_reg): Likewise.
6807         (ia64_libunwind_sigtramp_frame_this_id): Likewise.
6808         * ia64-vms-tdep.c (ia64_vms_find_proc_info_x): Likewise.
6809
6810 2018-07-16  Simon Marchi  <simon.marchi@ericsson.com>
6811
6812         * ia64-vms-tdep.c (ia64_vms_find_proc_info_x): Add cast.
6813
6814 2018-07-16  Simon Marchi  <simon.marchi@ericsson.com>
6815
6816         * remote-sim.c (gdbsim_target::close,
6817         gdbsim_target::mourn_inferior): Remove unused variables.
6818
6819 2018-07-16  Simon Marchi  <simon.marchi@polymtl.ca>
6820
6821         * ia64-tdep.c (ktab_buf): New global.
6822         (getunwind_table): Return a gdb::optional<gdb::byte_vector>.
6823         (get_kernel_table): Adjust.
6824
6825 2018-07-16  Tom Tromey  <tom@tromey.com>
6826
6827         * xcoffread.c (read_xcoff_symtab): Use outermost_context_p.
6828         * dwarf2read.c (using_directives, new_symbol): Use
6829         outermost_context_p.
6830         * dbxread.c (process_one_symbol): Use outermost_context_p.
6831         * coffread.c (coff_symtab_read): Use outermost_context_p.
6832
6833 2018-07-16  Tom Tromey  <tom@tromey.com>
6834
6835         * dwarf2read.c (using_directives, read_func_scope)
6836         (read_lexical_block_scope): Update.
6837         * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
6838         * buildsym.h (local_using_directives, global_using_directives):
6839         Don't declare.
6840         (get_local_using_directives, set_local_using_directives)
6841         (get_global_using_directives): Declare.
6842         * buildsym.c (struct buildsym_compunit) <m_local_using_directives,
6843         m_global_using_directives>: New members.
6844         (finish_block_internal, prepare_for_building)
6845         (reset_symtab_globals, end_symtab_get_static_block)
6846         (push_context): Update.
6847         (get_local_using_directives, set_local_using_directives)
6848         (get_global_using_directives): New functions.
6849         (buildsym_init): Update.
6850
6851 2018-07-16  Tom Tromey  <tom@tromey.com>
6852
6853         * xcoffread.c (xcoff_initial_scan): Don't call
6854         free_pending_blocks.
6855         * dbxread.c (dbx_symfile_read): Don't call free_pending_blocks.
6856         * buildsym.h (class scoped_free_pendings): Add constructor.
6857         (free_pending_blocks): Don't declare.
6858         * buildsym.c (scoped_free_pendings::scoped_free_pendings): New.
6859         (free_pending_blocks): Now static.
6860
6861 2018-07-16  Tom Tromey  <tom@tromey.com>
6862
6863         * buildsym.h (push_subfile, pop_subfile): Update declarations.
6864         * buildsym.c (struct buildsym_compunit) <m_subfile_stack>: New
6865         member.
6866         (struct subfile_stack): Remove.
6867         (subfile_stack): Remove.
6868         (push_subfile, pop_subfile, buildsym_init): Update.
6869
6870 2018-07-16  Tom Tromey  <tom@tromey.com>
6871
6872         * buildsym.c (push_subfile): Use gdb_assert.
6873         (pop_subfile): Use gdb_assert.
6874
6875 2018-07-16  Tom Tromey  <tom@tromey.com>
6876
6877         * buildsym.h (merge_symbol_lists): Remove.
6878         * buildsym.c (merge_symbol_lists): Remove.
6879
6880 2018-07-16  Tom Tromey  <tom@tromey.com>
6881
6882         * stabsread.c (scan_file_globals): Update comment.
6883         * stabsread.h (scan_file_globals): Move from buildsym.h.
6884         * buildsym.h (scan_file_globals): Move to stabsread.h.
6885
6886 2018-07-16  Tom Tromey  <tom@tromey.com>
6887
6888         * xcoffread.c (xcoff_new_init): Update.
6889         * mipsread.c (mipscoff_new_init): Update.
6890         * mdebugread.c (mdebug_build_psymtabs): Update.
6891         * elfread.c (elf_new_init): Update.
6892         * dbxread.c (dbx_new_init, coffstab_build_psymtabs)
6893         (elfstab_build_psymtabs, stabsect_build_psymtabs): Update.
6894         * buildsym.h (buildsym_new_init): Don't declare.
6895         * buildsym.c (buildsym_new_init): Remove.
6896
6897 2018-07-16  Tom Tromey  <tom@tromey.com>
6898
6899         * stabsread.h (within_function): Move from buildsym.h.
6900         * stabsread.c (start_stabs): Clear within_function.
6901         * coffread.c (coff_start_symtab): Clear within_function.
6902         * buildsym.h (within_function): Move to stabsread.h.
6903         * buildsym.c (prepare_for_building): Update.
6904
6905 2018-07-16  Tom Tromey  <tom@tromey.com>
6906
6907         * stabsread.h (processing_gcc_compilation): Move from buildsym.h.
6908         * dwarf2read.c (dwarf2_start_symtab): Don't set
6909         processing_gcc_compilation.
6910         * buildsym.h (processing_gcc_compilation): Move to stabsread.h.
6911
6912 2018-07-16  Tom Tromey  <tom@tromey.com>
6913
6914         * stabsread.h (HASHSIZE, hashname, symnum, next_symbol_text)
6915         (next_symbol_text_func): Move from buildsym.h.
6916         * stabsread.c (hashname): Move from buildsym.c.
6917         * buildsym.h (HASHSIZE, symnum, next_symbol_text)
6918         (next_symbol_text_func, hashname): Move to stabsread.h.
6919         * buildsym.c: Don't include bcache.h
6920         (hashname): Move to stasbread.c.
6921
6922 2018-07-16  Tom Tromey  <tom@tromey.com>
6923
6924         * buildsym.h (context_stack_size): Don't declare.
6925         * buildsym.c (context_stack_size): New global.
6926
6927 2018-07-16  Tom Tromey  <tom@tromey.com>
6928
6929         * dbxread.c (processing_acc_compilation): New global.
6930         * buildsym.h (processing_acc_compilation): Don't declare.
6931
6932 2018-07-16  Tom Tromey  <tom@tromey.com>
6933
6934         * xcoffread.c (aix_process_linenos, complete_symtab): Update.
6935         * dbxread.c (read_ofile_symtab): Update.
6936         * coffread.c (coff_start_symtab, coff_end_symtab): Update.
6937         * buildsym.h (last_source_start_addr): Remove.
6938         (set_last_source_start_addr, get_last_source_start_addr):
6939         Declare.
6940         * buildsym.c (buildsym_compunit::buildsym_compunit): Add last_addr
6941         parameter.
6942         (struct buildsym_compunit) <m_last_source_start_addr>: New
6943         member.
6944         (prepare_for_building): Remove start_addr parameter.
6945         (start_symtab, restart_symtab, end_symtab_get_static_block)
6946         (end_symtab_with_blockvector): Update.
6947         (set_last_source_start_addr, get_last_source_start_addr): New
6948         functions.
6949
6950 2018-07-16  Tom Tromey  <tom@tromey.com>
6951
6952         * buildsym.c (struct buildsym_compunit) <m_have_line_numbers>: New
6953         member.
6954         (have_line_numbers): Remove.
6955         (record_line, prepare_for_building, end_symtab_get_static_block)
6956         (augment_type_symtab): Update.
6957
6958 2018-07-16  Tom Tromey  <tom@tromey.com>
6959
6960         * buildsym.c (~buildsym_compunit): Free the macro table.
6961         (struct buildsym_compunit) <get_macro_table, release_macros>: New
6962         methods.
6963         <m_pending_macros>: New member.
6964         (pending_macros): Remove.
6965         (~scoped_free_pendings, get_macro_table, prepare_for_building)
6966         (reset_symtab_globals, end_symtab_get_static_block)
6967         (end_symtab_with_blockvector, augment_type_symtab)
6968         (buildsym_init): Update.
6969
6970 2018-07-16  Tom Tromey  <tom@tromey.com>
6971
6972         * buildsym.c (buildsym_compunit::buildsym_compunit): Add name
6973         parameter.
6974         (buildsym_compunit::set_last_source_file): New method.
6975         <m_last_source_file>: New member.
6976         (prepare_for_building): Remove "name" parameter.
6977         (start_symtab, restart_symtab, reset_symtab_globals): Update.
6978         (last_source_file): Remove.
6979         (set_last_source_file, get_last_source_file): Update.
6980
6981 2018-07-16  Tom Tromey  <tom@tromey.com>
6982
6983         * buildsym.c (prepare_for_building): Add assert.
6984
6985 2018-07-16  Tom Tromey  <tom@tromey.com>
6986
6987         * buildsym.c (~buildsym_compunit): Update.
6988         (struct buildsym_compunit) <comp_unit>: Now a unique_xmalloc_ptr.
6989         (start_subfile, patch_subfile_names)
6990         (end_symtab_with_blockvector): Update.
6991
6992 2018-07-16  Tom Tromey  <tom@tromey.com>
6993
6994         * buildsym.c (struct buildsym_compunit): Add constructor,
6995         destructor, initializers.
6996         (start_buildsym_compunit): Remove.
6997         (free_buildsym_compunit): Use "delete".
6998         (start_symtab, restart_symtab): Use "new".
6999
7000 2018-07-13  Simon Marchi  <simon.marchi@polymtl.ca>
7001
7002         * symfile.c (set_objfile_default_section_offset): Remove struct
7003         keyword.
7004
7005 2018-07-14  Stafford Horne  <shorne@gmail.com>
7006
7007         * (Responsible Maintainers): Add myself as or1k maintainer.
7008
7009 2018-07-13  Tom Tromey  <tom@tromey.com>
7010
7011         * symfile.c (set_objfile_default_section_offset): Use extra braces
7012         around initializer.
7013
7014 2018-07-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
7015
7016         * s390-tdep.c (s390_displaced_step_fixup): Adjust PC for a
7017         non-branching basr.
7018
7019 2018-07-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
7020
7021         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
7022         unittests/cli-utils-selftests.c
7023         * unittests/cli-utils-selftests.c: New file.
7024
7025 2018-07-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
7026
7027         * NEWS: Mention new commands. Mention change to 'thread apply'.
7028
7029 2018-07-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
7030
7031         * thread.c (thr_try_catch_cmd): New function.
7032         (thread_apply_all_command): Handle qcs flags.
7033         (thread_apply_command): Handle qcs flags.
7034         (taas_command): New function.
7035         (tfaas_command): New function.
7036         (_initialize_thread): Update to setup the new commands 'taas
7037         and 'tfaas'. Change doc string for 'thread apply'.
7038
7039 2018-07-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
7040
7041         * stack.c: (trailing_outermost_frame): New function, mostly
7042         extracted from backtrace_command_1.
7043         (leading_innermost_frame): New function.
7044         (backtrace_command_1): Update to call trailing_outermost_frame.
7045         (frame_apply_command_count): New function.
7046         (frame_apply_level_command): New function.
7047         (frame_apply_all_command): New function.
7048         (frame_apply_command): New function.
7049         (faas_command): New function.
7050         (frame_cmd_list): New variable.
7051         (_initialize_stack): Update to setup the new commands 'frame apply'
7052         and 'faas'.
7053
7054 2018-07-12  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
7055
7056         * cli-utils.c (number_or_range_parser::get_number): Only handle
7057         numbers or convenience var as numbers.
7058         (parse_flags): New function.
7059         (parse_flags_qcs): New function.
7060         (number_or_range_parser::finished): Ensure parsing end is detected
7061         before end of string.
7062         * cli-utils.h (parse_flags): New function.
7063         (parse_flags_qcs): New function.
7064         (number_or_range_parser): Remove m_finished bool.
7065         (number_or_range_parser::skip_range): Set m_in_range to false.
7066
7067 2018-07-12  Sergio Durigan Junior  <sergiodj@redhat.com>
7068
7069         * ser-tcp.c (try_connect): Declare 'ioarg' as 'u_long' if building
7070         on Windows.
7071
7072 2018-07-11  Sergio Durigan Junior  <sergiodj@redhat.com>
7073             Jan Kratochvil  <jan.kratochvil@redhat.com>
7074             Paul Fertser  <fercerpav@gmail.com>
7075             Tsutomu Seki  <sekiriki@gmail.com>
7076             Pedro Alves  <palves@redhat.com>
7077
7078         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
7079         'unittests/parse-connection-spec-selftests.c'.
7080         (COMMON_SFILES): Add 'common/netstuff.c'.
7081         (HFILES_NO_SRCDIR): Add 'common/netstuff.h'.
7082         * NEWS (Changes since GDB 8.2): Mention IPv6 support.
7083         * common/netstuff.c: New file.
7084         * common/netstuff.h: New file.
7085         * ser-tcp.c: Include 'netstuff.h' and 'wspiapi.h'.
7086         (wait_for_connect): Update comment.  New parameter
7087         'gdb::optional<int> sock' instead of 'struct serial *scb'.
7088         Use 'sock' directly instead of 'scb->fd'.
7089         (try_connect): New function, with code from 'net_open'.
7090         (net_open): Rewrite main loop to deal with multiple
7091         sockets/addresses.  Handle IPv6-style hostnames; implement
7092         support for IPv6 connections.
7093         * unittests/parse-connection-spec-selftests.c: New file.
7094
7095 2018-07-11  Pedro Alves  <palves@redhat.com>
7096
7097         PR gdb/23377
7098         * remote.c (remote_target::remote_detach_pid): Call
7099         set_current_process.
7100
7101 2018-07-11  Pedro Alves  <palves@redhat.com>
7102
7103         * h8300-tdep.c (h8300_gdbarch_init): Remove
7104         set_gdbarch_ecoff_reg_to_regnum calls.
7105
7106 2018-07-11  Sergio Durigan Junior  <sergiodj@redhat.com>
7107
7108         PR c++/23373
7109         * c-typeprint.c (c_type_print_base_struct_union): Don't print
7110         offsets/sizes for static members of a class/struct.
7111
7112 2018-07-11  Alan Hayward  <alan.hayward@arm.com>
7113
7114         * target-descriptions.c (tdesc_register_bitsize): Rename.
7115         * target-descriptions.h (tdesc_register_bitsize): Likewise.
7116         * rs6000-tdep.c (rs6000_gdbarch_init): Use new name.
7117         * aarch64-tdep.c (aarch64_get_tdesc_vq): Convert size.
7118
7119 2018-07-10  Tom Tromey  <tom@tromey.com>
7120
7121         * breakpoint.c (moribund_locations): Now static and a
7122         std::vector.
7123         (breakpoint_init_inferior, moribund_breakpoint_here_p)
7124         (build_bpstat_chain, update_global_location_list)
7125         (breakpoint_retire_moribund): Update.
7126         * breakpoint.h (bp_location_p): Remove typedef.  Don't declare
7127         VEC.
7128
7129 2018-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
7130
7131         * riscv-tdep.c (riscv_is_fp_regno_p): New function.
7132         (riscv_register_reggroup_p): Use new function, remove unneeded
7133         parenthesis.
7134         (riscv_push_dummy_call): Extend assert to compare against xlen or
7135         flen based on register type.
7136
7137 2018-07-10  Andrew Burgess  <andrew.burgess@embecosm.com>
7138
7139         * riscv-tdep.c (riscv_print_arg_location): Use TYPE_SAFE_NAME.
7140
7141 2018-07-09  Andrew Burgess  <andrew.burgess@embecosm.com>
7142
7143         * remote.c (show_hardware_watchpoint_limit): New function.
7144         (show_hardware_watchpoint_length_limit): New function.
7145         (show_hardware_breakpoint_limit): New function.
7146         (_initialize_remote): Use add_setshow_zuinteger_unlimited_cmd
7147         where appropriate, update help text.
7148
7149 2018-07-09  Tom Tromey  <tom@tromey.com>
7150
7151         * Makefile.in (CDEPS): Don't mention XM_CDEPS.
7152         (CLIBS): Don't mention NAT_CLIBS.
7153
7154 2018-07-09  Tom Tromey  <tom@tromey.com>
7155
7156         * Makefile.in (ADD_FILES, ADD_DEPS): Remove.
7157         (LIBGDB_OBS, clean mostlyclean): Update.
7158         (gdb$(EXEEXT), insight$(EXEEXT)): Update.
7159
7160 2018-07-09  Tom Tromey  <tom@tromey.com>
7161
7162         * Makefile.in (%.c: %.y): Use ECHO_YACC.
7163         (%.c: %.l): Use ECHO_LEX.  Just fail if flex not available.
7164         * silent-rules.mk (ECHO_YACC, ECHO_LEX): New variables.
7165
7166 2018-07-09  Tom Tromey  <tom@tromey.com>
7167
7168         * Makefile.in (ALLDEPFILES): Remove exec.c.
7169         (COMMON_OBS): Remove exec.o.
7170         (COMMON_SFILES): Add exec.c.
7171
7172 2018-07-09  Tom Tromey  <tom@tromey.com>
7173
7174         * Makefile.in (LINT, LINTFLAGS, LINTFILES, lint): Remove.
7175
7176 2018-07-09  Tom Tromey  <tom@tromey.com>
7177
7178         * Makefile.in (clean mostlyclean): Remove stamp-version.
7179         (version.c): Depend on stamp-version.
7180         (stamp-version): New rule, from version.c rule.
7181
7182 2018-07-09  Tom Tromey  <tom@tromey.com>
7183
7184         * Makefile.in (init.c): Depend on stamp-init.
7185         (stamp-init): New rule, from init.c rule.
7186         (clean mostlyclean): Remove stamp-init.
7187
7188 2018-07-09  Tom Tromey  <tom@tromey.com>
7189
7190         * Makefile.in (INIT_FILES): Remove CONFIG_SRCS,
7191         SUBDIR_GCC_COMPILE_SRCS.
7192
7193 2018-07-09  Tom Tromey  <tom@tromey.com>
7194
7195         * Makefile.in (init.c): Remove some unused sed rules.
7196
7197 2018-07-09  Tom Tromey  <tom@tromey.com>
7198
7199         * Makefile.in (TSOBS): Remove.
7200         (INIT_FILES): Update.
7201         (LIBGDB_OBS): Update.
7202         (COMMON_SFILES): Add inflow.c.
7203         (SFILES): Remove inflow.c.
7204
7205 2018-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
7206
7207         * contrib/gdb-add-index.sh ($dwarf5): New, use it.
7208
7209 2018-07-07  Simon Marchi  <simon.marchi@polymtl.ca>
7210
7211         * ia64-libunwind-tdep.c (get_reg_name, get_fpreg_name,
7212         get_saveloc_name, is_signal_frame_name, step_name,
7213         init_remote_name, create_addr_space_name,
7214         destroy_addr_space_name, search_unwind_table_name,
7215         find_dyn_list_name): Constify.
7216
7217 2018-07-05  Simon Marchi  <simon.marchi@polymtl.ca>
7218
7219         * darwin-nat.c (darwin_pthread_kill): New function.
7220         (darwin_resume_thread): Use darwin_pthread_kill.
7221
7222 2018-07-05  Tom de Vries  <tdevries@suse.de>
7223
7224         * macroexp.c (macro_buffer) <operator=>: New member function.
7225
7226 2018-07-04  Tom Tromey  <tom@tromey.com>
7227
7228         * darwin-nat.c (darwin_attach_pid): Use exit_inferior.
7229
7230 2018-07-04  Simon Marchi  <simon.marchi@polymtl.ca>
7231
7232         * common/common-defs.h (HAVE_USEFUL_SBRK): Define.
7233         * main.c: Use HAVE_USEFUL_SBRK instead of HAVE_SBRK.
7234         * maint.c: Likewise.
7235         * top.c: Likewise.
7236
7237 2018-07-04  Joel Brobecker  <brobecker@adacore.com>
7238
7239         * NEWS: Create a new section for the next release branch.
7240         Rename the section of the current branch, now that it has
7241         been cut.
7242
7243 2018-07-04  Joel Brobecker  <brobecker@adacore.com>
7244
7245         GDB 8.2 branch created (1b919490e8ba30bf1d6941df0ed112b0e557017e):
7246         * version.in: Bump version to 8.2.50.DATE-git.
7247
7248 2018-07-04  Vyacheslav Barinov  <v.barinov@samsung.com>
7249             Pedro Alves  <palves@redhat.com>
7250
7251         * linux-nat.c (linux_init_ptrace): Rename to ...
7252         (linux_init_ptrace_procfs): ... this.  Call
7253         linux_proc_init_warnings.
7254         (linux_nat_target::post_attach)
7255         (linux_nat_target::post_startup_inferior): Adjust.
7256         * nat/linux-procfs.c (linux_proc_init_warnings): Define function.
7257         * nat/linux-procfs.h (linux_proc_init_warnings): Declare function.
7258
7259 2018-07-04  Tom de Vries  <tdevries@suse.de>
7260
7261         * dwarf2read.c (error_check_comp_unit_head): Move dwarf version
7262         check ...
7263         (read_comp_unit_head): ... here.
7264
7265 2018-07-03  Tom Tromey  <tom@tromey.com>
7266
7267         * tracepoint.c (process_tracepoint_on_disconnect, start_tracing)
7268         (stop_tracing, tstatus_command)
7269         (find_matching_tracepoint_location, merge_uploaded_tracepoints)
7270         (print_one_static_tracepoint_marker): Update.
7271         * breakpoint.c (static_tracepoints_here, all_tracepoints): Return
7272         std::vector.
7273         * breakpoint.h (breakpoint_p): Remove typedef.  Don't declare
7274         VEC.
7275         (all_tracepoints, static_tracepoints_here): Return std::vector.
7276
7277 2018-07-03  Tom Tromey  <tom@tromey.com>
7278
7279         * common/ptid.c (ptid_equal): Remove.
7280         * common/ptid.h (ptid_equal): Don't declare.
7281         * ada-tasks.c: Update.
7282         * breakpoint.c: Update.
7283         * common/agent.c: Update.
7284         * corelow.c: Update.
7285         * darwin-nat-info.c: Update.
7286         * darwin-nat.c: Update.
7287         * dcache.c: Update.
7288         * dtrace-probe.c: Update.
7289         * dummy-frame.c: Update.
7290         * fbsd-nat.c: Update.
7291         * frame.c: Update.
7292         * gdbthread.h: Update.
7293         * gnu-nat.c: Update.
7294         * go32-nat.c: Update.
7295         * inf-loop.c: Update.
7296         * inf-ptrace.c: Update.
7297         * infcall.c: Update.
7298         * infcmd.c: Update.
7299         * inflow.c: Update.
7300         * infrun.c: Update.
7301         * linux-fork.c: Update.
7302         * linux-nat.c: Update.
7303         * linux-thread-db.c: Update.
7304         * mi/mi-cmd-var.c: Update.
7305         * mi/mi-interp.c: Update.
7306         * mi/mi-main.c: Update.
7307         * nto-procfs.c: Update.
7308         * ppc-linux-tdep.c: Update.
7309         * procfs.c: Update.
7310         * python/py-inferior.c: Update.
7311         * python/py-record-btrace.c: Update.
7312         * python/py-record.c: Update.
7313         * ravenscar-thread.c: Update.
7314         * regcache.c: Update.
7315         * remote-sim.c: Update.
7316         * remote.c: Update.
7317         * sol-thread.c: Update.
7318         * solib.c: Update.
7319         * target.c: Update.
7320         * tui/tui-stack.c: Update.
7321         * varobj.c: Update.
7322         * windows-nat.c: Update.
7323         * windows-tdep.c: Update.
7324
7325 2018-07-03  Tom Tromey  <tom@tromey.com>
7326
7327         * common/ptid.c (ptid_match): Remove.
7328         * common/ptid.h (ptid_match): Don't declare.
7329         * fbsd-nat.c: Update.
7330         * infcmd.c: Update.
7331         * infrun.c: Update.
7332         * linux-nat.c: Update.
7333         * record-btrace.c: Update.
7334         * regcache.c: Update.
7335         * remote.c: Update.
7336
7337 2018-07-03  Tom Tromey  <tom@tromey.com>
7338
7339         * common/ptid.c (ptid_tid_p): Remove.
7340         * common/ptid.h (ptid_tid_p): Don't declare.
7341         * sol-thread.c: Update.
7342
7343 2018-07-03  Tom Tromey  <tom@tromey.com>
7344
7345         * common/ptid.c (ptid_lwp_p): Remove.
7346         * common/ptid.h (ptid_lwp_p): Don't declare.
7347         * fbsd-nat.c: Update.
7348         * linux-nat.c: Update.
7349         * nat/linux-procfs.c: Update.
7350         * nat/x86-linux-dregs.c: Update.
7351         * sol-thread.c: Update.
7352
7353 2018-07-03  Tom Tromey  <tom@tromey.com>
7354
7355         * common/ptid.c (ptid_is_pid): Remove.
7356         * common/ptid.h (ptid_is_pid): Don't declare.
7357         * infrun.c: Update.
7358         * linux-nat.c: Update.
7359         * mi/mi-interp.c: Update.
7360         * remote.c: Update.
7361         * thread.c: Update.
7362
7363 2018-07-03  Tom Tromey  <tom@tromey.com>
7364
7365         * common/ptid.c (ptid_get_tid): Remove.
7366         * common/ptid.h (ptid_get_tid): Don't declare.
7367         * ada-tasks.c: Update.
7368         * aix-thread.c: Update.
7369         * bsd-uthread.c: Update.
7370         * darwin-nat.c: Update.
7371         * fbsd-nat.c: Update.
7372         * i386-darwin-nat.c: Update.
7373         * infrun.c: Update.
7374         * linux-tdep.c: Update.
7375         * nto-procfs.c: Update.
7376         * ppc-ravenscar-thread.c: Update.
7377         * python/py-infthread.c: Update.
7378         * ravenscar-thread.c: Update.
7379         * sol-thread.c: Update.
7380         * sparc-ravenscar-thread.c: Update.
7381         * windows-nat.c: Update.
7382
7383 2018-07-03  Tom Tromey  <tom@tromey.com>
7384
7385         * common/ptid.c (ptid_get_lwp): Remove.
7386         * common/ptid.h (ptid_get_lwp): Don't declare.
7387         * aarch64-linux-nat.c: Update.
7388         * ada-tasks.c: Update.
7389         * aix-thread.c: Update.
7390         * amd64-linux-nat.c: Update.
7391         * arm-linux-nat.c: Update.
7392         * corelow.c: Update.
7393         * fbsd-nat.c: Update.
7394         * fbsd-tdep.c: Update.
7395         * gnu-nat.c: Update.
7396         * i386-cygwin-tdep.c: Update.
7397         * i386-gnu-nat.c: Update.
7398         * i386-linux-nat.c: Update.
7399         * ia64-linux-nat.c: Update.
7400         * inf-ptrace.c: Update.
7401         * infrun.c: Update.
7402         * linux-fork.c: Update.
7403         * linux-nat.c: Update.
7404         * linux-tdep.c: Update.
7405         * linux-thread-db.c: Update.
7406         * mips-linux-nat.c: Update.
7407         * nat/aarch64-linux-hw-point.c: Update.
7408         * nat/aarch64-linux.c: Update.
7409         * nat/linux-btrace.c: Update.
7410         * nat/linux-osdata.c: Update.
7411         * nat/linux-procfs.c: Update.
7412         * nat/x86-linux-dregs.c: Update.
7413         * obsd-nat.c: Update.
7414         * ppc-fbsd-nat.c: Update.
7415         * ppc-linux-nat.c: Update.
7416         * procfs.c: Update.
7417         * python/py-infthread.c: Update.
7418         * ravenscar-thread.c: Update.
7419         * remote.c: Update.
7420         * s390-linux-nat.c: Update.
7421         * sol-thread.c: Update.
7422         * sol2-tdep.c: Update.
7423         * spu-linux-nat.c: Update.
7424         * x86-linux-nat.c: Update.
7425         * xtensa-linux-nat.c: Update.
7426
7427 2018-07-03  Tom Tromey  <tom@tromey.com>
7428
7429         * common/ptid.c (ptid_get_pid): Remove.
7430         * common/ptid.h (ptid_get_pid): Don't declare.
7431         * aarch64-linux-nat.c: Update.
7432         * ada-lang.c: Update.
7433         * aix-thread.c: Update.
7434         * alpha-bsd-nat.c: Update.
7435         * amd64-fbsd-nat.c: Update.
7436         * amd64-linux-nat.c: Update.
7437         * arm-linux-nat.c: Update.
7438         * arm-nbsd-nat.c: Update.
7439         * auxv.c: Update.
7440         * break-catch-syscall.c: Update.
7441         * breakpoint.c: Update.
7442         * bsd-uthread.c: Update.
7443         * corelow.c: Update.
7444         * ctf.c: Update.
7445         * darwin-nat.c: Update.
7446         * fbsd-nat.c: Update.
7447         * fbsd-tdep.c: Update.
7448         * gcore.c: Update.
7449         * gnu-nat.c: Update.
7450         * hppa-nbsd-nat.c: Update.
7451         * hppa-obsd-nat.c: Update.
7452         * i386-fbsd-nat.c: Update.
7453         * ia64-linux-nat.c: Update.
7454         * inf-ptrace.c: Update.
7455         * infcmd.c: Update.
7456         * inferior.c: Update.
7457         * inferior.h: Update.
7458         * inflow.c: Update.
7459         * infrun.c: Update.
7460         * linux-fork.c: Update.
7461         * linux-nat.c: Update.
7462         * linux-tdep.c: Update.
7463         * linux-thread-db.c: Update.
7464         * m68k-bsd-nat.c: Update.
7465         * mi/mi-interp.c: Update.
7466         * mi/mi-main.c: Update.
7467         * mips-linux-nat.c: Update.
7468         * mips-nbsd-nat.c: Update.
7469         * mips64-obsd-nat.c: Update.
7470         * nat/aarch64-linux-hw-point.c: Update.
7471         * nat/aarch64-linux.c: Update.
7472         * nat/linux-btrace.c: Update.
7473         * nat/linux-osdata.c: Update.
7474         * nat/linux-procfs.c: Update.
7475         * nat/x86-linux-dregs.c: Update.
7476         * nto-procfs.c: Update.
7477         * obsd-nat.c: Update.
7478         * ppc-linux-nat.c: Update.
7479         * ppc-nbsd-nat.c: Update.
7480         * ppc-obsd-nat.c: Update.
7481         * proc-service.c: Update.
7482         * procfs.c: Update.
7483         * python/py-inferior.c: Update.
7484         * python/py-infthread.c: Update.
7485         * ravenscar-thread.c: Update.
7486         * record.c: Update.
7487         * remote-sim.c: Update.
7488         * remote.c: Update.
7489         * rs6000-nat.c: Update.
7490         * s390-linux-nat.c: Update.
7491         * sh-nbsd-nat.c: Update.
7492         * sol-thread.c: Update.
7493         * sparc-nat.c: Update.
7494         * sparc64-tdep.c: Update.
7495         * spu-linux-nat.c: Update.
7496         * spu-tdep.c: Update.
7497         * target-debug.h: Update.
7498         * target.c: Update.
7499         * thread.c: Update.
7500         * tid-parse.c: Update.
7501         * tracefile-tfile.c: Update.
7502         * vax-bsd-nat.c: Update.
7503         * windows-nat.c: Update.
7504         * x86-linux-nat.c: Update.
7505         * x86-nat.c: Update.
7506
7507 2018-07-03  Tom Tromey  <tom@tromey.com>
7508
7509         * common/ptid.c (pid_to_ptid): Remove.
7510         * common/ptid.h (pid_to_ptid): Don't declare.
7511         * aix-thread.c: Update.
7512         * arm-linux-nat.c: Update.
7513         * common/ptid.c: Update.
7514         * common/ptid.h: Update.
7515         * corelow.c: Update.
7516         * ctf.c: Update.
7517         * darwin-nat.c: Update.
7518         * fbsd-nat.c: Update.
7519         * fork-child.c: Update.
7520         * gnu-nat.c: Update.
7521         * go32-nat.c: Update.
7522         * inf-ptrace.c: Update.
7523         * infcmd.c: Update.
7524         * inferior.c: Update.
7525         * infrun.c: Update.
7526         * linux-fork.c: Update.
7527         * linux-nat.c: Update.
7528         * nat/aarch64-linux-hw-point.c: Update.
7529         * nat/fork-inferior.c: Update.
7530         * nat/x86-linux-dregs.c: Update.
7531         * nto-procfs.c: Update.
7532         * obsd-nat.c: Update.
7533         * procfs.c: Update.
7534         * progspace.c: Update.
7535         * remote.c: Update.
7536         * rs6000-nat.c: Update.
7537         * s390-linux-nat.c: Update.
7538         * sol-thread.c: Update.
7539         * spu-linux-nat.c: Update.
7540         * target.c: Update.
7541         * top.c: Update.
7542         * tracefile-tfile.c: Update.
7543         * windows-nat.c: Update.
7544
7545 2018-07-03  Tom Tromey  <tom@tromey.com>
7546
7547         * common/ptid.h (ptid_build): Don't declare.
7548         * common/ptid.c (ptid_build): Remove.
7549         * aix-thread.c: Update.
7550         * bsd-kvm.c: Update.
7551         * bsd-uthread.c: Update.
7552         * common/agent.c: Update.
7553         * common/ptid.c: Update.
7554         * common/ptid.h: Update.
7555         * corelow.c: Update.
7556         * darwin-nat.c: Update.
7557         * fbsd-nat.c: Update.
7558         * gnu-nat.c: Update.
7559         * linux-fork.c: Update.
7560         * linux-nat.c: Update.
7561         * linux-thread-db.c: Update.
7562         * nat/linux-osdata.c: Update.
7563         * nat/linux-procfs.c: Update.
7564         * nto-procfs.c: Update.
7565         * obsd-nat.c: Update.
7566         * proc-service.c: Update.
7567         * procfs.c: Update.
7568         * ravenscar-thread.c: Update.
7569         * remote-sim.c: Update.
7570         * remote.c: Update.
7571         * sol-thread.c: Update.
7572         * target.c: Update.
7573         * windows-nat.c: Update.
7574
7575 2018-07-03  Tom Tromey  <tom@tromey.com>
7576
7577         * infrun.c (follow_exec): Use exit_inferior_silent.
7578         * inferior.c (exit_inferior_num_silent): Remove.
7579         * inferior.h (exit_inferior_num_silent): Don't declare.
7580
7581 2018-07-03  Tom Tromey  <tom@tromey.com>
7582
7583         PR cli/23340:
7584         * darwin-nat.c (darwin_attach_pid): Reset inferior and
7585         inferior_ptid on error.
7586
7587 2018-07-02  Maciej W. Rozycki  <macro@mips.com>
7588             Simon Marchi  <simon.marchi@polymtl.ca>
7589
7590         PR tdep/8282
7591         * disasm.h (gdb_disassembler): Add
7592         `m_disassembler_options_holder'. member
7593         * disasm.c (get_all_disassembler_options): New function.
7594         (gdb_disassembler::gdb_disassembler): Use it.
7595         (gdb_buffered_insn_length_init_dis): Likewise.
7596         (gdb_buffered_insn_length): Adjust accordingly.
7597         (set_disassembler_options): Handle options with arguments.
7598         (show_disassembler_options_sfunc): Likewise.  Add a leading new
7599         line if showing options with descriptions.
7600         (disassembler_options_completer): Adapt to using the
7601         `disasm_options_and_args_t' structure.
7602         * mips-tdep.c (mips_disassembler_options): New variable.
7603         (mips_disassembler_options_o32): Likewise.
7604         (mips_disassembler_options_n32): Likewise.
7605         (mips_disassembler_options_n64): Likewise.
7606         (gdb_print_insn_mips): Don't set `disassembler_options'.
7607         (gdb_print_insn_mips_n32, gdb_print_insn_mips_n64): Remove
7608         functions.
7609         (mips_gdbarch_init): Always set `gdbarch_print_insn' to
7610         `gdb_print_insn_mips'.  Set `gdbarch_disassembler_options',
7611         `gdbarch_disassembler_options_implicit' and
7612         `gdbarch_valid_disassembler_options'.
7613         * arm-tdep.c (_initialize_arm_tdep): Adapt to using the
7614         `disasm_options_and_args_t' structure.
7615         * gdbarch.sh (disassembler_options_implicit): New `gdbarch'
7616         method.
7617         (valid_disassembler_options): Switch from `disasm_options_t' to
7618         the `disasm_options_and_args_t' structure.
7619         * NEWS: Document `set disassembler-options' support for the MIPS
7620         target.
7621         * gdbarch.h: Regenerate.
7622         * gdbarch.c: Regenerate.
7623
7624 2018-07-02  Sebastian Huber  <sebastian.huber@embedded-brains.de>
7625
7626         * riscv-tdep.c (riscv_register_aliases): Swap "fp" and "s0" entries.
7627
7628 2018-06-29  Joel Brobecker  <brobecker@adacore.com>
7629
7630         * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Add missing
7631         parameter in call to amd64_target_description.
7632         * amd64-dicos-tdep.c (amd64_dicos_init_abi): Likewise.
7633         * amd64-fbsd-tdep.c (amd64fbsd_core_read_description)
7634         (amd64fbsd_init_abi): Likewise.
7635         * amd64-nbsd-tdep.c (amd64nbsd_init_abi): Likewise.
7636         * amd64-obsd-tdep.c (amd64obsd_init_abi): Likewise.
7637         * amd64-sol2-tdep.c (amd64_sol2_init_abi): Likewise.
7638         * amd64-fbsd-nat.c (amd64_fbsd_nat_target): Likewise.
7639
7640 2018-06-29  Pedro Alves  <palves@redhat.com>
7641
7642         * gdb/amd64-tdep.h (amd64_create_target_description): Add
7643         "segments" parameter.
7644         * gdb/amd64-tdep.c (amd64_none_init_abi, amd64_x32_none_init_abi)
7645         (_initialize_amd64_tdep): Update call to
7646         amd64_create_target_description.
7647         (amd64_target_description): Add "segments" parameter.  Adjust
7648         the implementation to use it.
7649         * gdb/amd64-linux-tdep.c (amd64_linux_read_description): Update
7650         call to amd64_create_target_description.
7651         * gdb/amd64-windows-tdep.c (amd64_windows_init_abi): Likewise.
7652         * gdb/arch/amd64.h (amd64_create_target_description): Add
7653         "segments" register.
7654         * gdb/arch/amd64.c (amd64_create_target_description): Add
7655         "segments" parameter.  Call create_feature_i386_64bit_segments
7656         only if SEGMENTS is true.
7657         * gdb/gdbserver/win32-i386-low.c (i386_arch_setup): Update
7658         call to amd64_create_target_description.
7659
7660 2018-06-29  Pedro Alves  <palves@redhat.com>
7661
7662         * thread.c (thread_target_id_str): New, factored out from ...
7663         (print_thread_info_1): ... here.  Use it to compute the max
7664         "Target Id" column width.
7665
7666 2018-06-29  Pedro Alves  <palves@redhat.com>
7667
7668         * remote.c (remote_target::extra_thread_info): Delete
7669         'display_buf' and 'n' locals.  from the cache, regardless of
7670         packet mechanims is in use.  Use cache for qThreadExtra and qP
7671         methods too.
7672
7673 2018-06-29  Pedro Alves  <palves@redhat.com>
7674
7675         * blockframe.c (find_pc_sect_containing_function): New function.
7676         * breakpoint.c (print_breakpoint_location): Don't call
7677         find_pc_sect_function.
7678         * linespec.c (create_sals_line_offset): Record the location's
7679         symbol in the sal.
7680         * linespec.c (convert_address_location_to_sals): Fill in sal's
7681         symbol with find_pc_sect_containing_function.
7682         * symtab.c (find_function_start_sal): Rename to ...
7683         (find_function_start_sal_1): ... this.
7684         (find_function_start_sal): Reimplement as wrapper around
7685         find_function_start_sal_1, and use
7686         find_pc_sect_containing_function to fill in the sal's symbol.
7687         (find_function_start_sal(symbol*, bool)): Adjust.
7688         * symtab.h (find_pc_function, find_pc_sect_function): Adjust
7689         comments.
7690         (find_pc_sect_containing_function): Declare.
7691
7692 2018-06-29  Pedro Alves  <palves@redhat.com>
7693
7694         * inline-frame.c (stopped_by_user_bp_inline_frame): Return
7695         true if the the location has no symbol.
7696
7697 2018-06-28  Tom Tromey  <tom@tromey.com>
7698
7699         * NEWS: Mention --enable-codesign.
7700         * silent-rules.mk (ECHO_SIGN): New variable.
7701         * configure.ac: Add --enable-codesign.
7702         * configure: Rebuild.
7703         * Makefile.in (CODESIGN, CODESIGN_CERT): New variables.
7704         (gdb$(EXEEXT)): Optionally invoke codesign.
7705
7706 2018-06-28  Pedro Alves  <palves@redhat.com>
7707
7708         * gdbthread.h (struct thread_suspend_state) <stop_pc>: Extend
7709         comments.
7710         (switch_to_thread_no_regs): Adjust comment.
7711         * infcmd.c (stop_pc): Delete.
7712         (post_create_inferior, info_program_command): Replace references
7713         to stop_pc with references to thread_info->suspend.stop_pc.
7714         * inferior.h (stop_pc): Delete declaration.
7715         * infrun.c (proceed, handle_syscall_event, fill_in_stop_func)
7716         (handle_inferior_event_1, handle_signal_stop)
7717         (process_event_stop_test, keep_going_stepped_thread)
7718         (handle_step_into_function, handle_step_into_function_backward)
7719         (print_stop_location): Replace references to stop_pc with
7720         references to thread_info->suspend.stop_pc.
7721         (struct infcall_suspend_state) <stop_pc>: Delete field.
7722         (save_infcall_suspend_state, restore_infcall_suspend_state):
7723         Remove references to inf_stat->stop_pc.
7724         * linux-fork.c (fork_load_infrun_state): Likewise.
7725         * record-btrace.c (record_btrace_set_replay): Likewise.
7726         * record-full.c (record_full_goto_entry): Likewise.
7727         * remote.c (print_one_stopped_thread): Likewise.
7728         * target.c (target_resume): Extend comment.
7729         * thread.c (set_executing_thread): New.
7730         (set_executing): Use it.
7731         (switch_to_thread_no_regs, switch_to_no_thread, switch_to_thread):
7732         Remove references to stop_pc.
7733
7734 2018-06-28  Pedro Alves  <palves@redhat.com>
7735
7736         * infrun.c (handle_inferior_event_1) <TARGET_WAITKIND_EXECD>:
7737         Moving fetching stop_pc until after ecs->event_thread is refreshed.
7738
7739 2018-06-28  Tom Tromey  <tom@tromey.com>
7740
7741         * coffread.c (coff_symfile_finish): Update.
7742         * xcoffread.c (xcoff_symfile_finish): Update.
7743         * elfread.c (elf_symfile_finish): Update.
7744         * symfile.h (dwarf2_free_objfile): Don't declare.
7745         * dwarf2read.c (_initialize_dwarf2_read): Use
7746         register_objfile_data_with_cleanup.
7747         (dwarf2_free_objfile): Now static.  Change signature.
7748
7749 2018-06-28  Petr Tesarik  <ptesarik@suse.cz>
7750
7751         * symfile.c (add_symbol_file_command, _initialize_symfile): Add
7752         option "-o" to add-symbol-file-load to add an offset to each
7753         section's load address.
7754         * symfile.c (set_objfile_default_section_offset): New function.
7755
7756 2018-06-28  Petr Tesarik  <ptesarik@suse.cz>
7757
7758         * symfile.c (add_symbol_file_command): Make sure that sections
7759         with the same name are sorted in the same order.
7760
7761 2018-06-28  Petr Tesarik  <ptesarik@suse.cz>
7762
7763         * symfile.c (add_symbol_file_command, _initialize_symfile): Do not
7764         require the second argument.  If omitted, load sections at the
7765         addresses specified in the file.
7766
7767 2018-06-28  Petr Tesarik  <ptesarik@suse.cz>
7768
7769         * symfile.c (symbol_file_command, symbol_file_add_main_1)
7770         (_initialize_symfile): Add option "-o" to symbol-file to add an
7771         offset to each section of the symbol file.
7772
7773 2018-06-28  Petr Tesarik  <ptesarik@suse.cz>
7774
7775         * MAINTAINERS (Write After Approval): Add Petr Tesarik.
7776
7777 2018-06-27  Tom Tromey  <tom@tromey.com>
7778
7779         * stack.c (_initialize_stack): Update "func" help text.
7780
7781 2018-06-27  Tom Tromey  <tom@tromey.com>
7782
7783         * python/py-unwind.c (unwind_info_object) <saved_regs>: Now a
7784         std::vector.
7785         (unwind_infopy_str, pyuw_create_unwind_info)
7786         (unwind_infopy_add_saved_register, pyuw_sniffer)
7787         (unwind_infopy_dealloc, unwind_infopy_add_saved_register):
7788         Update.
7789         (struct saved_reg): Add constructor.
7790         <value>: Now a gdbpy_ref<>.
7791
7792 2018-06-27  Tom Tromey  <tom@tromey.com>
7793
7794         * machoread.c (macho_symfile_read): Define "symbol_table" earlier.
7795
7796 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7797
7798         * gdb-gdb.py.in: Format using autopep8.
7799
7800 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7801
7802         * gdb-gdb.py.in (CoreAddrPrettyPrinter): New class.
7803         (type_lookup_function): Recognize CORE_ADDR values.
7804
7805 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7806
7807         * gdb-gdb.py.in (StructMainTypePrettyPrinter) <to_string>: Don't
7808         print tag_name.
7809
7810 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7811
7812         * gdb-gdb.py.in (TypeFlag) <__cmp__>: Remove.
7813         <__lt__>: Add.
7814
7815 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7816
7817         * gdb-gdb.py: Move to...
7818         * gdb-gdb.py.in: ... here.
7819         * configure.ac (AC_CONFIG_FILES): Add gdb-gdb.py.
7820         * Makefile.in (all): Add gdb-gdb.gdb and gdb-gdb.py as
7821         dependencies.
7822         (distclean): Remove gdb-gdb.py when cleaning.
7823         (gdb-gdb.py, gdb-gdb.gdb): New rules.
7824         * configure: Re-generate.
7825
7826 2018-06-27  Pedro Alves  <palves@redhat.com>
7827
7828         * proc-service.c (get_ps_regcache): New.
7829         (ps_lgetregs, ps_lsetregs, ps_lgetfpregs)
7830         (ps_lsetfpregs): Use it.
7831
7832 2018-06-27  Omair Javaid  <omair.javaid@linaro.org>
7833
7834         PR gdb/21695
7835         * dwarf2read.c (lnp_state_machine::check_line_address): Update
7836         declaration.
7837         (dwarf_decode_lines_1): Adjust.
7838
7839 2018-06-27  Simon Marchi  <simon.marchi@ericsson.com>
7840
7841         * fbsd-nat.h (class fbsd_nat_target) <find_memory_regions>: Add
7842         override.
7843         <info_proc>: Likewise.
7844
7845 2018-06-26  Joel Brobecker  <brobecker@adacore.com>
7846
7847         * windows-nat.c (do_windows_fetch_inferior_registers): Rename
7848         to windows_fetch_one_register, and only handle the case of
7849         fetching one register.  Move the code that reloads the context
7850         and iterates over all registers if R is negative to...
7851         (windows_nat_target::fetch_registers): ... here.
7852         (do_windows_store_inferior_registers): Rename to
7853         windows_store_one_register, and only handle the case of storing
7854         one register.  Move the code that handles the case where r is
7855         negative to...
7856         (windows_nat_target::store_registers) ... here.
7857
7858 2018-06-26  Tom Tromey  <tom@tromey.com>
7859
7860         PR rust/22574:
7861         * typeprint.c (whatis_exp): Allow ptype/o for Rust.
7862         * rust-lang.c (rust_print_struct_def): Add podata parameter.
7863         Update.
7864         (rust_internal_print_type): Add podata parameter.
7865         (rust_print_type): Update.
7866
7867 2018-06-26  Tom Tromey  <tom@tromey.com>
7868
7869         * typeprint.h (struct print_offset_data) <update, finish,
7870         maybe_print_hole>: New methods.
7871         <indentation>: New constant.
7872         * typeprint.c (print_offset_data::indentation): Define.
7873         (print_offset_data::maybe_print_hole, print_offset_data::update)
7874         (print_offset_data::finish): Move from c-typeprint.c and rename.
7875         * c-typeprint.c (OFFSET_SPC_LEN): Remove.
7876         (print_spaces_filtered_with_print_options): Update.
7877         (c_print_type_union_field_offset, maybe_print_hole)
7878         (c_print_type_struct_field_offset): Move to typeprint.c and
7879         rename.
7880         (c_type_print_base_struct_union): Update.
7881
7882 2018-06-25  Pedro Alves  <palves@redhat.com>
7883
7884         * gdbthread.h (thread_info_ref, delete_thread)
7885         (delete_thread_silent, first_thread_of_inferior)
7886         (any_thread_of_inferior, switch_to_thread)
7887         (enable_thread_stack_temporaries)
7888         (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
7889         (get_last_thread_stack_temporary)
7890         (value_in_thread_stack_temporaries, can_access_registers_thread):
7891         Spell out "struct thread_info" instead of just "thread_info".
7892         * inferior.h (notice_new_inferior): Likewise.
7893
7894 2018-06-25  Pedro Alves  <palves@redhat.com>
7895
7896         * windows-nat.c (windows_delete_thread): Use find_thread_ptid and
7897         pass thread_info pointer to delete_thread.
7898         (windows_nat_target::detach): Pass inferior pointer to
7899         detach_inferior.
7900         * aix-thread.c (sync_threadlists): Pass thread_info pointer to
7901         delete_thread.
7902         * bsd-kvm.c (bsd_kvm_target::close): Use discard_all_inferiors.
7903         * darwin-nat.c (darwin_check_new_threads): Use find_thread_ptid
7904         and pass a thread_info pointer to delete_thread.
7905         * fbsd-nat.c (fbsd_nat_target::wait): Use find_thread_ptid and
7906         pass thread_info pointer to delete_thread.
7907         * go32-nat.c (go32_nat_target::mourn_inferior): Remove
7908         delete_thread_silent call.
7909         * procfs.c (procfs_target::detach): Pass inferior pointer to
7910         detach_inferior.
7911         (procfs_target::wait): Pass thread_info pointer to delete_thread.
7912         * remote-sim.c (gdbsim_target::mourn_inferior): Remove
7913         delete_thread_silent call.
7914         * windows-nat.c (windows_delete_thread): Use find_thread_ptid and
7915         pass thread_info pointer to delete_thread.
7916         (windows_nat_target::detach): Pass inferior pointer to
7917         delete_inferior.
7918
7919 2018-06-22  Alan Hayward  <alan.hayward@arm.com>
7920
7921         * regcache.c (readable_regcache::read_part): Fix asserts.
7922         (reg_buffer::raw_collect_part): New function.
7923         (regcache::write_part): Fix asserts.
7924         (reg_buffer::raw_supply_part): New function.
7925         (regcache::transfer_regset_register): New helper function.
7926         (regcache::transfer_regset): Call new functions.
7927         (regcache_supply_regset): Use gdb_byte*.
7928         (regcache::supply_regset): Likewise.
7929         (regcache_collect_regset): Likewise.
7930         (regcache::collect_regset): Likewise.
7931         * regcache.h (reg_buffer::raw_collect_part): New declaration.
7932         (reg_buffer::raw_supply_part): Likewise.
7933         (regcache::transfer_regset_register): Likewise.
7934         (regcache::transfer_regset): Use gdb_byte*.
7935
7936 2018-06-22  Alan Hayward  <alan.hayward@arm.com>
7937
7938         * nat/aarch64-sve-linux-ptrace.h (HAS_SVE_STATE): Use &.
7939
7940 2018-06-21  Pedro Alves  <palves@redhat.com>
7941
7942         * ada-lang.h (ada_get_task_number): Take a thread_info pointer
7943         instead of a ptid_t.  All callers adjusted.
7944         * ada-tasks.c (ada_get_task_number): Likewise.  All callers
7945         adjusted.
7946         (print_ada_task_info, display_current_task_id, task_command_1):
7947         Adjust.
7948         * breakpoint.c (watchpoint_in_thread_scope): Adjust to use
7949         inferior_thread.
7950         (breakpoint_kind): Adjust.
7951         (remove_breakpoints_pid): Rename to ...
7952         (remove_breakpoints_inf): ... this.  Adjust to take an inferior
7953         pointer.  All callers adjusted.
7954         (bpstat_clear_actions): Use inferior_thread.
7955         (get_bpstat_thread): New.
7956         (bpstat_do_actions): Use it.
7957         (bpstat_check_breakpoint_conditions, bpstat_stop_status): Adjust
7958         to take a thread_info pointer.  All callers adjusted.
7959         (set_longjmp_breakpoint_for_call_dummy, set_momentary_breakpoint)
7960         (breakpoint_re_set_thread): Use inferior_thread.
7961         * breakpoint.h (struct inferior): Forward declare.
7962         (bpstat_stop_status): Update.
7963         (remove_breakpoints_pid): Delete.
7964         (remove_breakpoints_inf): New.
7965         * bsd-uthread.c (bsd_uthread_target::wait)
7966         (bsd_uthread_target::update_thread_list): Use find_thread_ptid.
7967         * btrace.c (btrace_add_pc, btrace_enable, btrace_fetch)
7968         (maint_btrace_packet_history_cmd)
7969         (maint_btrace_clear_packet_history_cmd): Adjust.
7970         (maint_btrace_clear_cmd, maint_info_btrace_cmd): Adjust to use
7971         inferior_thread.
7972         * cli/cli-interp.c: Include "inferior.h".
7973         * common/refcounted-object.h (struct
7974         refcounted_object_ref_policy): New.
7975         * compile/compile-object-load.c: Include gdbthread.h.
7976         (store_regs): Use inferior_thread.
7977         * corelow.c (core_target::close): Use current_inferior.
7978         (core_target_open): Adjust to use first_thread_of_inferior and use
7979         the current inferior.
7980         * ctf.c (ctf_target::close): Adjust to use current_inferior.
7981         * dummy-frame.c (dummy_frame_id) <ptid>: Delete, replaced by ...
7982         <thread>: ... this new field.  All references adjusted.
7983         (dummy_frame_pop, dummy_frame_discard, register_dummy_frame_dtor):
7984         Take a thread_info pointer instead of a ptid_t.
7985         * dummy-frame.h (dummy_frame_push, dummy_frame_pop)
7986         (dummy_frame_discard, register_dummy_frame_dtor): Take a
7987         thread_info pointer instead of a ptid_t.
7988         * elfread.c: Include "inferior.h".
7989         (elf_gnu_ifunc_resolver_stop, elf_gnu_ifunc_resolver_return_stop):
7990         Use inferior_thread.
7991         * eval.c (evaluate_subexp): Likewise.
7992         * frame.c (frame_pop, has_stack_frames, find_frame_sal): Use
7993         inferior_thread.
7994         * gdb_proc_service.h (struct thread_info): Forward declare.
7995         (struct ps_prochandle) <ptid>: Delete, replaced by ...
7996         <thread>: ... this new field.  All references adjusted.
7997         * gdbarch.h, gdbarch.c: Regenerate.
7998         * gdbarch.sh (get_syscall_number): Replace 'ptid' parameter with a
7999         'thread' parameter.  All implementations and callers adjusted.
8000         * gdbthread.h (thread_info) <set_running>: New method.
8001         (delete_thread, delete_thread_silent): Take a thread_info pointer
8002         instead of a ptid.
8003         (global_thread_id_to_ptid, ptid_to_global_thread_id): Delete.
8004         (first_thread_of_process): Delete, replaced by ...
8005         (first_thread_of_inferior): ... this new function.  All callers
8006         adjusted.
8007         (any_live_thread_of_process): Delete, replaced by ...
8008         (any_live_thread_of_inferior): ... this new function.  All callers
8009         adjusted.
8010         (switch_to_thread, switch_to_no_thread): Declare.
8011         (is_executing): Delete.
8012         (enable_thread_stack_temporaries): Update comment.
8013         <enable_thread_stack_temporaries>: Take a thread_info pointer
8014         instead of a ptid_t.  Incref the thread.
8015         <~enable_thread_stack_temporaries>: Decref the thread.
8016         <m_ptid>: Delete
8017         <m_thr>: New.
8018         (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
8019         (get_last_thread_stack_temporary)
8020         (value_in_thread_stack_temporaries, can_access_registers_thread):
8021         Take a thread_info pointer instead of a ptid_t.  All callers
8022         adjusted.
8023         * infcall.c (get_call_return_value): Use inferior_thread.
8024         (run_inferior_call): Work with thread pointers instead of ptid_t.
8025         (call_function_by_hand_dummy): Work with thread pointers instead
8026         of ptid_t.  Use thread_info_ref.
8027         * infcmd.c (proceed_thread_callback): Access thread's state
8028         directly.
8029         (ensure_valid_thread, ensure_not_running): Use inferior_thread,
8030         access thread's state directly.
8031         (continue_command): Use inferior_thread.
8032         (info_program_command): Use find_thread_ptid and access thread
8033         state directly.
8034         (proceed_after_attach_callback): Use thread state directly.
8035         (notice_new_inferior): Take a thread_info pointer instead of a
8036         ptid_t.  All callers adjusted.
8037         (exit_inferior): Take an inferior pointer instead of a pid.  All
8038         callers adjusted.
8039         (exit_inferior_silent): New.
8040         (detach_inferior): Delete.
8041         (valid_gdb_inferior_id, pid_to_gdb_inferior_id)
8042         (gdb_inferior_id_to_pid, in_inferior_list): Delete.
8043         (detach_inferior_command, kill_inferior_command): Use
8044         find_inferior_id instead of valid_gdb_inferior_id and
8045         gdb_inferior_id_to_pid.
8046         (inferior_command): Use inferior and thread pointers.
8047         * inferior.h (struct thread_info): Forward declare.
8048         (notice_new_inferior): Take a thread_info pointer instead of a
8049         ptid_t.  All callers adjusted.
8050         (detach_inferior): Delete declaration.
8051         (exit_inferior, exit_inferior_silent): Take an inferior pointer
8052         instead of a pid.  All callers adjusted.
8053         (gdb_inferior_id_to_pid, pid_to_gdb_inferior_id, in_inferior_list)
8054         (valid_gdb_inferior_id): Delete.
8055         * infrun.c (follow_fork_inferior, proceed_after_vfork_done)
8056         (handle_vfork_child_exec_or_exit, follow_exec): Adjust.
8057         (struct displaced_step_inferior_state) <pid>: Delete, replaced by
8058         ...
8059         <inf>: ... this new field.
8060         <step_ptid>: Delete, replaced by ...
8061         <step_thread>: ... this new field.
8062         (get_displaced_stepping_state): Take an inferior pointer instead
8063         of a pid.  All callers adjusted.
8064         (displaced_step_in_progress_any_inferior): Adjust.
8065         (displaced_step_in_progress_thread): Take a thread pointer instead
8066         of a ptid_t.  All callers adjusted.
8067         (displaced_step_in_progress, add_displaced_stepping_state): Take
8068         an inferior pointer instead of a pid.  All callers adjusted.
8069         (get_displaced_step_closure_by_addr): Adjust.
8070         (remove_displaced_stepping_state): Take an inferior pointer
8071         instead of a pid.  All callers adjusted.
8072         (displaced_step_prepare_throw, displaced_step_prepare)
8073         (displaced_step_fixup): Take a thread pointer instead of a ptid_t.
8074         All callers adjusted.
8075         (start_step_over): Adjust.
8076         (infrun_thread_ptid_changed): Remove bit updating ptids in the
8077         displaced step queue.
8078         (do_target_resume): Adjust.
8079         (fetch_inferior_event): Use inferior_thread.
8080         (context_switch, get_inferior_stop_soon): Take an
8081         execution_control_state pointer instead of a ptid_t.  All callers
8082         adjusted.
8083         (switch_to_thread_cleanup): Delete.
8084         (stop_all_threads): Use scoped_restore_current_thread.
8085         * inline-frame.c: Include "gdbthread.h".
8086         (inline_state) <inline_state>: Take a thread pointer instead of a
8087         ptid_t.  All callers adjusted.
8088         <ptid>: Delete, replaced by ...
8089         <thread>: ... this new field.
8090         (find_inline_frame_state): Take a thread pointer instead of a
8091         ptid_t.  All callers adjusted.
8092         (skip_inline_frames, step_into_inline_frame)
8093         (inline_skipped_frames, inline_skipped_symbol): Take a thread
8094         pointer instead of a ptid_t.  All callers adjusted.
8095         * inline-frame.h (skip_inline_frames, step_into_inline_frame)
8096         (inline_skipped_frames, inline_skipped_symbol): Likewise.
8097         * linux-fork.c (delete_checkpoint_command): Adjust to use thread
8098         pointers directly.
8099         * linux-nat.c (get_detach_signal): Likewise.
8100         * linux-thread-db.c (thread_from_lwp): New 'stopped' parameter.
8101         (thread_db_notice_clone): Adjust.
8102         (thread_db_find_new_threads_silently)
8103         (thread_db_find_new_threads_2, thread_db_find_new_threads_1): Take
8104         a thread pointer instead of a ptid_t.  All callers adjusted.
8105         * mi/mi-cmd-var.c: Include "inferior.h".
8106         (mi_cmd_var_update_iter): Update to use thread pointers.
8107         * mi/mi-interp.c (mi_new_thread): Update to use the thread's
8108         inferior directly.
8109         (mi_output_running_pid, mi_inferior_count): Delete, bits factored
8110         out to ...
8111         (mi_output_running): ... this new function.
8112         (mi_on_resume_1): Adjust to use it.
8113         (mi_user_selected_context_changed): Adjust to use inferior_thread.
8114         * mi/mi-main.c (proceed_thread): Adjust to use thread pointers
8115         directly.
8116         (interrupt_thread_callback): : Adjust to use thread and inferior
8117         pointers.
8118         * proc-service.c: Include "gdbthread.h".
8119         (ps_pglobal_lookup): Adjust to use the thread's inferior directly.
8120         * progspace-and-thread.c: Include "inferior.h".
8121         * progspace.c: Include "inferior.h".
8122         * python/py-exitedevent.c (create_exited_event_object): Adjust to
8123         hold a reference to an inferior_object.
8124         * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust to use
8125         inferior_thread.
8126         * python/py-inferior.c (struct inferior_object): Give the type a
8127         tag name instead of a typedef.
8128         (python_on_normal_stop): No need to check if the current thread is
8129         listed.
8130         (inferior_to_inferior_object): Change return type to
8131         inferior_object.  All callers adjusted.
8132         (find_thread_object): Delete, bits factored out to ...
8133         (thread_to_thread_object): ... this new function.
8134         * python/py-infthread.c (create_thread_object): Use
8135         inferior_to_inferior_object.
8136         (thpy_is_stopped): Use thread pointer directly.
8137         (gdbpy_selected_thread): Use inferior_thread.
8138         * python/py-record-btrace.c (btpy_list_object) <ptid>: Delete
8139         field, replaced with ...
8140         <thread>: ... this new field.  All users adjusted.
8141         (btpy_insn_or_gap_new): Drop const.
8142         (btpy_list_new): Take a thread pointer instead of a ptid_t.  All
8143         callers adjusted.
8144         * python/py-record.c: Include "gdbthread.h".
8145         (recpy_insn_new, recpy_func_new): Take a thread pointer instead of
8146         a ptid_t.  All callers adjusted.
8147         (gdbpy_current_recording): Use inferior_thread.
8148         * python/py-record.h (recpy_record_object) <ptid>: Delete
8149         field, replaced with ...
8150         <thread>: ... this new field.  All users adjusted.
8151         (recpy_element_object) <ptid>: Delete
8152         field, replaced with ...
8153         <thread>: ... this new field.  All users adjusted.
8154         (recpy_insn_new, recpy_func_new): Take a thread pointer instead of
8155         a ptid_t.  All callers adjusted.
8156         * python/py-threadevent.c: Include "gdbthread.h".
8157         (get_event_thread): Use thread_to_thread_object.
8158         * python/python-internal.h (struct inferior_object): Forward
8159         declare.
8160         (find_thread_object, find_inferior_object): Delete declarations.
8161         (thread_to_thread_object, inferior_to_inferior_object): New
8162         declarations.
8163         * record-btrace.c: Include "inferior.h".
8164         (require_btrace_thread): Use inferior_thread.
8165         (record_btrace_frame_sniffer)
8166         (record_btrace_tailcall_frame_sniffer): Use inferior_thread.
8167         (get_thread_current_frame): Use scoped_restore_current_thread and
8168         switch_to_thread.
8169         (get_thread_current_frame): Use thread pointer directly.
8170         (record_btrace_replay_at_breakpoint): Use thread's inferior
8171         pointer directly.
8172         * record-full.c: Include "inferior.h".
8173         * regcache.c: Include "gdbthread.h".
8174         (get_thread_arch_regcache): Use the inferior's address space
8175         directly.
8176         (get_thread_regcache, registers_changed_thread): New.
8177         * regcache.h (get_thread_regcache(thread_info *thread)): New
8178         overload.
8179         (registers_changed_thread): New.
8180         (remote_target) <remote_detach_1>: Swap order of parameters.
8181         (remote_add_thread): <remote_add_thread>: Return the new thread.
8182         (get_remote_thread_info(ptid_t)): New overload.
8183         (remote_target::remote_notice_new_inferior): Use thread pointers
8184         directly.
8185         (remote_target::process_initial_stop_replies): Use
8186         thread_info::set_running.
8187         (remote_target::remote_detach_1, remote_target::detach)
8188         (extended_remote_target::detach): Adjust.
8189         * stack.c (frame_show_address): Use inferior_thread.
8190         * target-debug.h (target_debug_print_thread_info_pp): New.
8191         * target-delegates.c: Regenerate.
8192         * target.c (default_thread_address_space): Delete.
8193         (memory_xfer_partial_1): Use current_inferior.
8194         (target_detach): Use current_inferior.
8195         (target_thread_address_space): Delete.
8196         (generic_mourn_inferior): Use current_inferior.
8197         * target.h (struct target_ops) <thread_address_space>: Delete.
8198         (target_thread_address_space): Delete.
8199         * thread.c (init_thread_list): Use ALL_THREADS_SAFE.  Use thread
8200         pointers directly.
8201         (delete_thread_1, delete_thread, delete_thread_silent): Take a
8202         thread pointer instead of a ptid_t.  Adjust all callers.
8203         (ptid_to_global_thread_id, global_thread_id_to_ptid): Delete.
8204         (first_thread_of_process): Delete, replaced by ...
8205         (first_thread_of_inferior): ... this new function.  All callers
8206         adjusted.
8207         (any_thread_of_process): Rename to ...
8208         (any_thread_of_inferior): ... this, and take an inferior pointer.
8209         (any_live_thread_of_process): Rename to ...
8210         (any_live_thread_of_inferior): ... this, and take an inferior
8211         pointer.
8212         (thread_stack_temporaries_enabled_p, push_thread_stack_temporary)
8213         (value_in_thread_stack_temporaries)
8214         (get_last_thread_stack_temporary): Take a thread pointer instead
8215         of a ptid_t.  Adjust all callers.
8216         (thread_info::set_running): New.
8217         (validate_registers_access): Use inferior_thread.
8218         (can_access_registers_ptid): Rename to ...
8219         (can_access_registers_thread): ... this, and take a thread
8220         pointer.
8221         (print_thread_info_1): Adjust to compare thread pointers instead
8222         of ptids.
8223         (switch_to_no_thread, switch_to_thread): Make extern.
8224         (scoped_restore_current_thread::~scoped_restore_current_thread):
8225         Use m_thread pointer directly.
8226         (scoped_restore_current_thread::scoped_restore_current_thread):
8227         Use inferior_thread.
8228         (thread_command): Use thread pointer directly.
8229         (thread_num_make_value_helper): Use inferior_thread.
8230         * top.c (execute_command): Use inferior_thread.
8231         * tui/tui-interp.c: Include "inferior.h".
8232         * varobj.c (varobj_create): Use inferior_thread.
8233         (value_of_root_1): Use find_thread_global_id instead of
8234         global_thread_id_to_ptid.
8235
8236 2018-06-21  Alan Hayward  <alan.hayward@arm.com>
8237
8238         * regcache.c (readable_regcache::read_part): Avoid memcpy when
8239         possible.
8240         (regcache::write_part): Likewise.
8241         (readable_regcache::cooked_read_part): Update comment.
8242         (readable_regcache::cooked_write_part): Likewise.
8243         * regcache.h: (readable_regcache::read_part): Likewise.
8244         (regcache::write_part): Likewise.
8245
8246 2018-06-21  Richard Bunt  <richard.bunt@arm.com>
8247             Dirk Schubert  <dirk.schubert@arm.com>
8248
8249         * aarch64-linux-nat.c (post_attach): New.
8250         (aarch64_linux_nat_target::post_attach): Override post_attach to
8251         record the number of hardware debug registers.
8252
8253 2018-06-20  Tom Tromey  <tom@tromey.com>
8254
8255         * python/py-param.c (add_setshow_generic): Make parameters const.
8256         (parmpy_init): Update.
8257
8258 2018-06-20  Simon Marchi  <simon.marchi@polymtl.ca>
8259
8260         * regcache.h (regcache_cooked_read_ftype): Rename to...
8261         (register_read_ftype): ...this, change type to function_view.
8262         (class reg_buffer) <save>: Remove src parameter.
8263         (readonly_detached_regcache) <readonly_detached_regcache>: Make
8264         parameter non-const in first overload.  Remove src parameter in
8265         second overload.
8266         * regcache.c (do_cooked_read): Remove.
8267         (readonly_detached_regcache::readonly_detached_regcache): Make
8268         parameter non-const, adjust call to other constructor.
8269         (reg_buffer::save): Remove src parameter.
8270         * frame.c (do_frame_register_read): Remove.
8271         (frame_save_as_regcache): Use lambda function.
8272         * ppc-linux-tdep.c (ppu2spu_unwind_register): Change type of src
8273         parameter to ppu2spu_data *.
8274         (ppu2spu_sniffer): Use lambda function.
8275
8276 2018-06-20  Simon Marchi  <simon.marchi@polymtl.ca>
8277
8278         * record-full.c (record_full_target::insert_breakpoint): Remove
8279         "struct" keyword, add const.
8280
8281 2018-06-19  Simon Marchi  <simon.marchi@ericsson.com>
8282
8283         * common/common-defs.h (PACKAGE_NAME, PACKAGE_VERSION,
8284         PACKAGE_STRING, PACKAGE_TARNAME): Undefine.
8285         * configure.ac: Remove AC_PREREQ, add missing quoting.
8286         * gnulib/configure.ac: Modernize usage of
8287         AC_INIT/AM_INIT_AUTOMAKE.  Remove AC_PREREQ.
8288         * gnulib/update-gnulib.sh (AUTOCONF_VERSION): Bump to 2.69.
8289         (AUTOMAKE_VERSION): Bump to 1.15.1.
8290         * configure: Re-generate.
8291         * config.in: Re-generate.
8292         * aclocal.m4: Re-generate.
8293         * gnulib/aclocal.m4: Re-generate.
8294         * gnulib/config.in: Re-generate.
8295         * gnulib/configure: Re-generate.
8296         * gnulib/import/Makefile.in: Re-generate.
8297
8298 2018-06-19  Pedro Alves  <palves@redhat.com>
8299
8300         * minsyms.c (msym_prefer_to_msym_type): New, factored out from ...
8301         (lookup_minimal_symbol_by_pc_section): ... here with
8302         gdb_assert_not_reached added.
8303
8304 2018-06-19  Pedro Alves  <palves@redhat.com>
8305
8306         * inline-frame.c (stopped_by_user_bp_inline_frame): Replace PC
8307         parameter with a block parameter.  Compare location's block symbol
8308         with the frame's block instead of addresses.
8309         (skip_inline_frames): Pass the current block instead of the
8310         frame's address.  Break out as soon as we determine the frame
8311         should not be skipped.
8312
8313 2018-06-18  Tom Tromey  <tom@tromey.com>
8314
8315         * solib-aix.c (solib_aix_get_section_offsets): Return
8316         unique_xmalloc_ptr.
8317         (solib_aix_solib_create_inferior_hook): Update.
8318
8319 2018-06-18  Tom Tromey  <tom@tromey.com>
8320
8321         * solib-darwin.c (darwin_current_sos): Use unique_xmalloc_ptr.
8322
8323 2018-06-18  Tom Tromey  <tom@tromey.com>
8324
8325         * solib-frv.c (frv_relocate_main_executable): Use
8326         unique_xmalloc_ptr.
8327         * solib-dsbt.c (dsbt_relocate_main_executable): Use
8328         unique_xmalloc_ptr.
8329
8330 2018-06-18  Tom Tromey  <tom@tromey.com>
8331
8332         * objfiles.h (inhibit_section_map_updates): Update.
8333         (resume_section_map_updates, resume_section_map_updates_cleanup):
8334         Remove.
8335         * solib-svr4.c (svr4_handle_solib_event): Update.
8336         * objfiles.c (inhibit_section_map_updates): Return
8337         scoped_restore_tmpl<int>.
8338         (resume_section_map_updates, resume_section_map_updates_cleanup):
8339         Remove.
8340
8341 2018-06-18  Tom Tromey  <tom@tromey.com>
8342
8343         * valprint.h (read_string): Update.
8344         * valprint.c (read_string): Change type of "buffer".
8345         (val_print_string): Update.
8346         * python/py-value.c (valpy_string): Update.
8347         * language.h (struct language_defn) <la_get_string>: Change
8348         type of "buffer".
8349         (default_get_string, c_get_string): Update.
8350         * language.c (default_get_string): Change type of "buffer".
8351         * guile/scm-value.c (gdbscm_value_to_string): Update.
8352         * c-lang.c (c_get_string): Change type of "buffer".
8353
8354 2018-06-18  Tom Tromey  <tom@tromey.com>
8355
8356         * ser-mingw.c (struct pipe_state_destroyer): New.
8357         (pipe_state_up): New typedef.
8358         (cleanup_pipe_state): Remove.
8359         (pipe_windows_open): Use pipe_state_up.  Don't release argv.
8360
8361 2018-06-18  Tom Tromey  <tom@tromey.com>
8362
8363         * rust-lang.h (rust_yyerror): Don't declare.
8364         * rust-lang.c (rust_language_defn): Update.
8365         * rust-exp.y (yyerror): Now static.
8366         * parse.c (parse_exp_in_context_1): Update.
8367         * p-lang.h (p_yyerror): Don't declare.
8368         * p-lang.c (p_language_defn): Update.
8369         * p-exp.y (yyerror): Now static.
8370         * opencl-lang.c (opencl_language_defn): Update.
8371         * objc-lang.c (objc_language_defn): Update.
8372         * m2-lang.h (m2_yyerror): Don't declare.
8373         * m2-lang.c (m2_language_defn): Update.
8374         * m2-exp.y (yyerror): Now static.
8375         * language.h (struct language_defn) <la_error>: Remove.
8376         * language.c (unk_lang_error): Remove.
8377         (unknown_language_defn, auto_language_defn): Remove.
8378         * go-lang.h (go_yyerror): Don't declare.
8379         * go-lang.c (go_language_defn): Update.
8380         * go-exp.y (yyerror): Now static.
8381         * f-lang.h (f_yyerror): Don't declare.
8382         * f-lang.c (f_language_defn): Update.
8383         * f-exp.y (yyerror): Now static.
8384         * d-lang.h (d_yyerror): Don't declare.
8385         * d-lang.c (d_language_defn): Update.
8386         * d-exp.y (yyerror): Now static.
8387         * c-lang.h (c_yyerror): Don't declare.
8388         * c-lang.c (c_language_defn, cplus_language_defn)
8389         (asm_language_defn, minimal_language_defn): Update.
8390         * c-exp.y (yyerror): Now static.
8391         * ada-lang.h (ada_yyerror): Don't declare.
8392         * ada-lang.c (ada_language_defn): Update.
8393         * ada-exp.y (yyerror): Now static.
8394
8395 2018-06-18  Alan Hayward  <alan.hayward@arm.com>
8396
8397         * aarch64-linux-nat.c (fetch_sveregs_from_thread): New function.
8398         (store_sveregs_to_thread): Likewise.
8399         (aarch64_linux_fetch_inferior_registers): Check for SVE.
8400         (aarch64_linux_store_inferior_registers): Likewise.
8401         * nat/aarch64-sve-linux-ptrace.c (aarch64_sve_get_sveregs): New
8402         function.
8403         (aarch64_sve_regs_copy_to_regcache): Likewise.
8404         (aarch64_sve_regs_copy_from_regcache): Likewise.
8405         * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_get_sveregs): New
8406         declaration.
8407         (aarch64_sve_regs_copy_to_regcache): Likewise.
8408         (aarch64_sve_regs_copy_from_regcache): Likewise.
8409         (sve_context): Structure from Linux headers.
8410         (SVE_SIG_ZREGS_SIZE): Define from Linux headers.
8411         (SVE_SIG_ZREG_SIZE): Likewise.
8412         (SVE_SIG_PREG_SIZE): Likewise.
8413         (SVE_SIG_FFR_SIZE): Likewise.
8414         (SVE_SIG_REGS_OFFSET): Likewise.
8415         (SVE_SIG_ZREGS_OFFSET): Likewise.
8416         (SVE_SIG_ZREG_OFFSET): Likewise.
8417         (SVE_SIG_ZREGS_SIZE): Likewise.
8418         (SVE_SIG_PREGS_OFFSET): Likewise.
8419         (SVE_SIG_PREG_OFFSET): Likewise.
8420         (SVE_SIG_PREGS_SIZE): Likewise.
8421         (SVE_SIG_FFR_OFFSET): Likewise.
8422         (SVE_SIG_REGS_SIZE): Likewise.
8423         (SVE_SIG_CONTEXT_SIZE): Likewise.
8424         (SVE_PT_REGS_MASK): Likewise.
8425         (SVE_PT_REGS_FPSIMD): Likewise.
8426         (SVE_PT_REGS_SVE): Likewise.
8427         (SVE_PT_VL_INHERIT): Likewise.
8428         (SVE_PT_VL_ONEXEC): Likewise.
8429         (SVE_PT_REGS_OFFSET): Likewise.
8430         (SVE_PT_FPSIMD_OFFSET): Likewise.
8431         (SVE_PT_FPSIMD_SIZE): Likewise.
8432         (SVE_PT_SVE_ZREG_SIZE): Likewise.
8433         (SVE_PT_SVE_PREG_SIZE): Likewise.
8434         (SVE_PT_SVE_FFR_SIZE): Likewise.
8435         (SVE_PT_SVE_FPSR_SIZE): Likewise.
8436         (SVE_PT_SVE_FPCR_SIZE): Likewise.
8437         (__SVE_SIG_TO_PT): Likewise.
8438         (SVE_PT_SVE_OFFSET): Likewise.
8439         (SVE_PT_SVE_ZREGS_OFFSET): Likewise.
8440         (SVE_PT_SVE_ZREG_OFFSET): Likewise.
8441         (SVE_PT_SVE_ZREGS_SIZE): Likewise.
8442         (SVE_PT_SVE_PREGS_OFFSET): Likewise.
8443         (SVE_PT_SVE_PREG_OFFSET): Likewise.
8444         (SVE_PT_SVE_PREGS_SIZE): Likewise.
8445         (SVE_PT_SVE_FFR_OFFSET): Likewise.
8446         (SVE_PT_SVE_FPSR_OFFSET): Likewise.
8447         (SVE_PT_SVE_FPCR_OFFSET): Likewise.
8448         (SVE_PT_SVE_SIZE): Likewise.
8449         (SVE_PT_SIZE): Likewise.
8450         (HAS_SVE_STATE): New define.
8451
8452 2018-06-18  Alan Hayward  <alan.hayward@arm.com>
8453
8454         * nat/aarch64-sve-linux-sigcontext.h: New file.
8455         * nat/aarch64-sve-linux-ptrace.h (SVE_VQ_BYTES): Move to
8456         new files.
8457         (SVE_VQ_MIN): Likewise.
8458         (SVE_VQ_MAX): Likewise.
8459         (SVE_VL_MIN): Likewise.
8460         (SVE_VL_MAX): Likewise.
8461         (SVE_NUM_ZREGS): Likewise.
8462         (SVE_NUM_PREGS): Likewise.
8463         (sve_vl_valid): Likewise.
8464         (struct user_sve_header): Likewise.
8465
8466 2018-06-16  Andrew Burgess  <andrew.burgess@embecosm.com>
8467             Richard Bunt <Richard.Bunt@arm.com>
8468
8469         * linux-nat.c (stop_wait_callback): Don't discard SIGSTOP if it
8470         was requested by GDB.
8471
8472 2018-06-15  Tom de Vries  <tdevries@suse.de>
8473
8474         * MAINTAINERS (Write After Approval): Add Tom de Vries.
8475
8476 2018-06-14  Simon Marchi  <simon.marchi@polymtl.ca>
8477
8478         * gnulib/update-gnulib.sh: Print expected versions of
8479         autoconf/aclocal.
8480
8481 2018-06-14  Simon Marchi  <simon.marchi@ericsson.com>
8482
8483         * arch-utils.c (default_type_align): Use type_length_units.
8484         * gdbtypes.c (type_align): Use type_length_units.
8485
8486 2018-06-14  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
8487
8488         * cli/cli-script.c (_initialize_cli_script): Fix online documentation
8489         of 'define' command.
8490
8491 2018-06-14  Tom de Vries  <tdevries@suse.de>
8492
8493         PR cli/22573
8494         * infcmd.c (print_return_value_1): Use get_user_print_options instead of
8495         get_no_prettyformat_print_options.
8496
8497 2018-06-13  Simon Marchi  <simon.marchi@ericsson.com>
8498
8499         * sparc-nat.h: Include target.h.
8500         * sparc64-linux-nat.c (class sparc64_linux_nat_target)
8501         <fetch_registers>: Remove this argument in function call.
8502         <store_registers>: Remove this argument in function call, remove
8503         extra semicolon.
8504         <low_forget_process>: Call sparc64_forget_process instead of
8505         sparc_forget_process.
8506
8507 2018-06-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
8508
8509         * procfs.c (_initialize_procfs): Use add_inf_child_target.
8510         (procfs_target::make_corefile_notes): Adjust to new
8511         target_read_alloc return type.
8512
8513 2018-06-12  Andrew Burgess  <andrew.burgess@embecosm.com>
8514             Stephen Roberts  <stephen.roberts@arm.com>
8515
8516         PR gdb/22882
8517         * infrun.c (fetch_inferior_event): If GDB is not proceeding then
8518         run INF_EXEC_COMPLETE handler, even when not calling normal_stop.
8519         Move should_notify_stop local into more inner scope.
8520
8521 2018-06-12  Andrew Burgess  <andrew.burgess@embecosm.com>
8522             Stephen Roberts  <stephen.roberts@arm.com>
8523
8524         PR gdb/22882
8525         * infrun.c (resume_1): Add call to mark_async_event_handler.
8526
8527 2018-06-12  Andrew Burgess  <andrew.burgess@embecosm.com>
8528
8529         * infrun.c (do_target_wait): Change old version of $pc printed.
8530
8531 2018-06-11  Simon Marchi  <simon.marchi@ericsson.com>
8532
8533         * dwarf2read.c (read_index_from_section): Rename to...
8534         (read_gdb_index_from_section): ... this, update all callers.
8535         (dwarf2_read_index): Rename to...
8536         (dwarf2_read_gdb_index): ... this, update all callers.
8537
8538 2018-06-11  John David Anglin  <danglin@gcc.gnu.org>
8539
8540         * hppa-linux-nat.c
8541         (hppa_linux_nat_target::fetch_inferior_registers): Rename to
8542         hppa_linux_nat_target::fetch_registers.
8543
8544 2018-06-11  Alan Hayward  <alan.hayward@arm.com>
8545
8546         * aarch64-tdep.c (aarch64_dwarf_reg_to_regnum): Add mappings.
8547         * aarch64-tdep.h (AARCH64_DWARF_SVE_VG): Add define.
8548         (AARCH64_DWARF_SVE_FFR): Likewise.
8549         (AARCH64_DWARF_SVE_P0): Likewise.
8550         (AARCH64_DWARF_SVE_Z0): Likewise.
8551
8552 2018-06-11  Alan Hayward  <alan.hayward@arm.com>
8553
8554         * common/common-regcache.h (raw_compare): New function.
8555         * regcache.c (regcache::raw_compare): Likewise.
8556         * regcache.h (regcache::raw_compare): New declaration.
8557
8558 2018-06-11  Alan Hayward  <alan.hayward@arm.com>
8559
8560         * common/common-regcache.h (reg_buffer_common): New structure.
8561         * regcache.c (reg_buffer::invalidate): Move from detached_regcache.
8562         (reg_buffer::raw_supply): Likewise.
8563         (reg_buffer::raw_supply_integer): Likewise.
8564         (reg_buffer::raw_supply_zeroed): Likewise.
8565         (reg_buffer::raw_collect): Likewise.
8566         (reg_buffer::raw_collect_integer): Likewise.
8567         * regcache.h (reg_buffer::invalidate): Move from detached_regcache.
8568         (reg_buffer::raw_supply): Likewise.
8569         (reg_buffer::raw_supply_integer): Likewise.
8570         (reg_buffer::raw_supply_zeroed): Likewise.
8571         (reg_buffer::raw_collect): Likewise.
8572         (reg_buffer::raw_collect_integer): Likewise.
8573
8574 2018-06-10  Tom Tromey  <tom@tromey.com>
8575
8576         * remote.c (stop_reply_p): Remove typedef.  Don't declare queue.
8577         (class remote_state) <stop_reply_queue>: Now std::vector.
8578         (remote_state::~remote_state)
8579         (remote_target::stop_reply_queue_length): Update.
8580         (struct queue_iter_param, remove_child_of_pending_fork)
8581         (struct check_pending_event_prevents_wildcard_vcont_callback_data)
8582         (check_pending_event_prevents_wildcard_vcont_callback)
8583         (remove_stop_reply_for_inferior)
8584         (remove_stop_reply_of_remote_state)
8585         (remote_notif_remove_once_on_match)
8586         (stop_reply_match_ptid_and_ws)
8587         (remote_kill_child_of_pending_fork): Remove.
8588         (remote_target::remove_new_fork_children)
8589         (remote_target::check_pending_events_prevent_wildcard_vcont)
8590         (remote_target::discard_pending_stop_replies)
8591         (remote_target::discard_pending_stop_replies_in_queue)
8592         (remote_target::remote_notif_remove_queued_reply)
8593         (remote_target::queued_stop_reply)
8594         (remote_target::push_stop_reply, remote_target::peek_stop_reply)
8595         (remote_target::wait, remote_target::kill_new_fork_children)
8596         (remote_target::async): Update.
8597
8598 2018-06-10  Tom Tromey  <tom@tromey.com>
8599
8600         * record-full.c (record_full_arch_list_cleanups): Remove.
8601         (record_full_message): Use try/catch.
8602         (record_full_wait_cleanups): Remove.
8603         (record_full_wait_1): Use try/catch.
8604         (record_full_restore): Likewise.
8605
8606 2018-06-10  Tom Tromey  <tom@tromey.com>
8607
8608         * record-full.c (record_full_breakpoint_p): Remove typedef.  Don't
8609         declare VEC.  Add constructor.
8610         <in_target_beneath>: Now bool.
8611         (record_full_breakpoints): Now a std::vector, static.
8612         (record_full_sync_record_breakpoints)
8613         (record_full_init_record_breakpoints)
8614         (record_full_target::insert_breakpoint)
8615         (record_full_target::remove_breakpoint): Update.  Don't use XNEW.
8616
8617 2018-06-10  Simon Marchi  <simon.marchi@polymtl.ca>
8618
8619         * dwarf2read.c (process_cu_includes): Remove struct keyword.
8620         * serial.c (serial_interface_lookup): Remove struct keyword.
8621
8622 2018-06-10  Tom Tromey  <tom@tromey.com>
8623
8624         * procfs.c (procfs_target::xfer_partial): Use "beneath" as a
8625         method.
8626         * nto-procfs.c (nto_procfs_target::xfer_partial): Use "beneath" as
8627         a method.
8628         * go32-nat.c (go32_nat_target::xfer_partial): Use "beneath" as a
8629         method.
8630         * arm-linux-nat.c (arm_linux_nat_target::read_description): Use
8631         "beneath" as a method.
8632         * arm-fbsd-nat.c (arm_fbsd_nat_target::read_description):
8633         Use "beneath" as a method.
8634
8635 2018-06-10  Tom Tromey  <tom@tromey.com>
8636
8637         * tracefile.c (struct trace_file_writer_deleter): New.
8638         <operator()>: Rename from trace_file_writer_xfree.
8639         (trace_file_writer_up): New typedef.
8640         (tsave_command, trace_save_tfile, trace_save_ctf): Update.
8641
8642 2018-06-09  Simon Marchi  <simon.marchi@ericsson.com>
8643
8644         * regcache.h (reg_buffer) <~reg_buffer>: Use default destructor.
8645         <m_registers, m_register_status>: Change type to
8646         std::unique_ptr.
8647         * regcache.c (reg_buffer::reg_buffer): Use new instead of
8648         XCNEWVEC.
8649
8650 2018-06-09  Simon Marchi  <simon.marchi@ericsson.com>
8651
8652         * common/common-regcache.h (enum register_status): Add
8653         underlying type "signed char".
8654         * regcache.h (reg_buffer) <m_register_status>: Change type to
8655         register_status *.
8656         * regcache.c (reg_buffer::reg_buffer): Alocate arrays of
8657         register_status instead of signed char.
8658         (reg_buffer::save): Use REG_UNKNOWN instead of 0.
8659         (reg_buffer::get_register_status): Remove cast.
8660         (readable_regcache::raw_read): Remove cast.
8661         (readable_regcache::cooked_read): Remove cast.
8662
8663 2018-06-09  Tom Tromey  <tom@tromey.com>
8664
8665         * source.c (reverse_search_command, forward_search_command): Use
8666         scoped_fd.
8667
8668 2018-06-09  Tom Tromey  <tom@tromey.com>
8669
8670         * serial.c (serial_ops_p): Remove typedef.  Don't declare VEC.
8671         (serial_ops_list): Now static, std::vector.
8672         (serial_interface_lookup, serial_add_interface): Update.
8673
8674 2018-06-09  Tom Tromey  <tom@tromey.com>
8675
8676         * dwarf2read.c (process_cu_includes): Update.
8677         (process_full_comp_unit): Update.
8678         * dwarf2read.h (struct dwarf2_per_objfile) <just_read_cus>: Now a
8679         std::vector.
8680
8681 2018-06-08  Paul Koning  <paul_koning@dell.com>
8682
8683         PR gdb/23252
8684
8685         * python/python.c (do_start_initialization):
8686         Avoid call to internal Python API.
8687         (init__gdb_module): New function.
8688
8689 2018-06-08  Gary Benson <gbenson@redhat.com>
8690
8691         * linux-thread-db.c (valprint.h): New include.
8692         (struct check_thread_db_info): New structure.
8693         (check_thread_db_on_load, tdb_testinfo): New static globals.
8694         (check_thread_db, check_thread_db_callback): New functions.
8695         (try_thread_db_load_1): Run integrity checks if requested.
8696         (maintenance_check_libthread_db): New function.
8697         (_initialize_thread_db): Register "maint check libthread-db"
8698         and "maint set/show check-libthread-db".
8699         * NEWS: Mention the above new commands.
8700
8701 2018-06-08  Tom Tromey  <tom@tromey.com>
8702
8703         * windows-nat.c (windows_nat_target::xfer_partial): "beneath" is
8704         now a method.
8705
8706 2018-06-08  Tom Tromey  <tom@tromey.com>
8707
8708         * btrace.c (parse_xml_raw): Use gdb::unique_xmalloc_ptr.
8709
8710 2018-06-08  Tom Tromey  <tom@tromey.com>
8711
8712         * common/btrace-common.h (struct btrace_data): Add constructor,
8713         destructor, move assignment operator.
8714         <empty, clear, fini>: New methods.
8715         <format>: Initialize.
8716         (btrace_data_init, btrace_data_fini, btrace_data_clear)
8717         (btrace_data_empty): Don't declare.
8718         * common/btrace-common.c (btrace_data_init): Remove.
8719         (btrace_data::fini): Rename from btrace_data_fini.
8720         (btrace_data::empty): Rename from btrace_data_empty.
8721         (btrace_data::clear): Rename from btrace_data_clear.  Return
8722         bool.
8723         * btrace.h (make_cleanup_btrace_data): Don't declare.
8724         * btrace.c (btrace_add_pc, btrace_stitch_trace, btrace_clear)
8725         (parse_xml_btrace): Update.
8726         (do_btrace_data_cleanup, make_cleanup_btrace_data): Remove.
8727         (maint_btrace_clear_packet_history_cmd): Update.
8728
8729 2018-06-07  Pedro Alves  <palves@redhat.com>
8730
8731         * target.h (target_ops) <beneath>: Now a method.  All references
8732         updated.
8733         (class target_stack): New.
8734         * target.c (g_target_stack): New.
8735         (g_current_top_target): Delete.
8736         (current_top_target): Get the top target out of g_target_stack.
8737         (target_stack::push, target_stack::unpush): New.
8738         (push_target, unpush_target): Reimplement.
8739         (target_is_pushed): Reimplement in terms of g_target_stack.
8740         (target_ops::beneath, target_stack::find_beneath): New.
8741
8742 2018-06-07  Pedro Alves  <palves@redhat.com>
8743
8744         * target.h (find_target_beneath): Delete declaration.
8745         * target.c (find_target_beneath): Delete definition.
8746         * aix-thread.c: All callers of find_target_beneath adjusted to
8747         call target_ops::beneath instead.
8748         * bsd-uthread.c: Likewise.
8749         * linux-thread-db.c: Likewise.
8750         * ravenscar-thread.c: Likewise.
8751         * sol-thread.c: Likewise.
8752         * spu-multiarch.c: Likewise.
8753
8754 2018-06-07  Pedro Alves  <palves@redhat.com>
8755
8756         * target.h (target_ops) <beneath>: Now a method.  All references
8757         updated.
8758         (target_ops) <m_beneath>: New.
8759         * target.c (target_ops::beneath): New.
8760         * corelow.c: Adjust all references to target_ops::beneath.
8761         * linux-thread-db.c: Likewise.
8762         * make-target-delegates: Likewise.
8763         * record-btrace.c: Likewise.
8764         * record-full.c: Likewise.
8765         * remote.c: Likewise.
8766         * target.c: Likewise.
8767         * target-delegates.c: Regenerate.
8768
8769 2018-06-07  Pedro Alves  <palves@redhat.com>
8770
8771         * target.h (target_stack): Delete.
8772         (current_top_target): Declare function.
8773         * target.c (target_stack): Delete.
8774         (g_current_top_target): New.
8775         (current_top_target): New function.
8776         * auxv.c: Use current_top_target instead of target_stack
8777         throughout.
8778         * avr-tdep.c: Likewise.
8779         * breakpoint.c: Likewise.
8780         * corefile.c: Likewise.
8781         * elfread.c: Likewise.
8782         * eval.c: Likewise.
8783         * exceptions.c: Likewise.
8784         * frame.c: Likewise.
8785         * gdbarch-selftests.c: Likewise.
8786         * gnu-v3-abi.c: Likewise.
8787         * ia64-tdep.c: Likewise.
8788         * ia64-vms-tdep.c: Likewise.
8789         * infcall.c: Likewise.
8790         * infcmd.c: Likewise.
8791         * infrun.c: Likewise.
8792         * linespec.c: Likewise.
8793         * linux-tdep.c: Likewise.
8794         * minsyms.c: Likewise.
8795         * ppc-linux-nat.c: Likewise.
8796         * ppc-linux-tdep.c: Likewise.
8797         * procfs.c: Likewise.
8798         * regcache.c: Likewise.
8799         * remote.c: Likewise.
8800         * rs6000-tdep.c: Likewise.
8801         * s390-linux-nat.c: Likewise.
8802         * s390-tdep.c: Likewise.
8803         * solib-aix.c: Likewise.
8804         * solib-darwin.c: Likewise.
8805         * solib-dsbt.c: Likewise.
8806         * solib-spu.c: Likewise.
8807         * solib-svr4.c: Likewise.
8808         * solib-target.c: Likewise.
8809         * sparc-tdep.c: Likewise.
8810         * sparc64-tdep.c: Likewise.
8811         * spu-tdep.c: Likewise.
8812         * symfile.c: Likewise.
8813         * symtab.c: Likewise.
8814         * target-descriptions.c: Likewise.
8815         * target-memory.c: Likewise.
8816         * target.c: Likewise.
8817         * target.h: Likewise.
8818         * tracefile-tfile.c: Likewise.
8819         * tracepoint.c: Likewise.
8820         * valops.c: Likewise.
8821         * valprint.c: Likewise.
8822         * value.c: Likewise.
8823         * windows-tdep.c: Likewise.
8824         * mi/mi-main.c: Likewise.
8825
8826 2018-06-07  Tom Tromey  <tom@tromey.com>
8827
8828         * valprint.h (build_address_symbolic): Declare.
8829         * printcmd.c (print_address_symbolic): Update.
8830         (build_address_symbolic): Change "name" and "filename" to
8831         std::string.
8832         * disasm.c (gdb_pretty_print_disassembler::pretty_print_insn):
8833         Update.
8834         * defs.h (build_address_symbolic): Remove declaration.
8835
8836 2018-06-07  Alan Hayward  <alan.hayward@arm.com>
8837
8838         * aarch64-tdep.c (AARCH64_SVE_V0_REGNUM): Add define.
8839         (aarch64_vnv_type): Add function.
8840         (aarch64_pseudo_register_name): Add V regs for SVE.
8841         (aarch64_pseudo_register_type): Likewise.
8842         (aarch64_pseudo_register_reggroup_p): Likewise.
8843         (aarch64_pseudo_read_value_2): Use V0 offset for SVE
8844         (aarch64_pseudo_read_value): Add V regs for SVE.
8845         (aarch64_pseudo_write_2): Use V0 offset for SVE
8846         (aarch64_pseudo_write): Add V regs for SVE.
8847         * aarch64-tdep.h (struct gdbarch_tdep): Add vnv_type.
8848
8849 2018-06-06  Sergio Durigan Junior  <sergiodj@redhat.com>
8850
8851         * arch/aarch64.h (sve_vq_from_vl): Guard with #ifndef.
8852         (sve_vl_from_vq): Likewise.
8853
8854 2018-06-05  Tom Tromey  <tom@tromey.com>
8855
8856         * cli/cli-cmds.c (show_version): Update.
8857         * top.c (print_gdb_version): Add "interactive" parameter.
8858         Update.
8859         * main.c (captured_main_1): Update.
8860         * top.h (print_gdb_version): Add "interactive" parameter and a
8861         comment.
8862
8863 2018-06-05  David Malcolm  <dmalcolm@redhat.com>
8864
8865         * common/enum-flags.h: Add trailing semicolon to example in
8866         comment.
8867
8868 2018-06-05  Tom Tromey  <tom@tromey.com>
8869
8870         PR cli/12326:
8871         * NEWS: Add entry about pager.
8872         * utils.c (pagination_disabled_for_command): New global.
8873         (prompt_for_continue): Allow "c" response to prompt.
8874         (reinitialize_more_filter): Clear
8875         pagination_disabled_for_command.
8876         (fputs_maybe_filtered): Check pagination_disabled_for_command.
8877
8878 2018-06-04  Tom Tromey  <tom@tromey.com>
8879
8880         * ada-lang.h (ada_lookup_symbol_list): Update.
8881         * ada-lang.c (resolve_subexp): Update.
8882         (symbols_are_identical_enums): Change type of syms.  Remove nsyms
8883         parameter.
8884         (remove_extra_symbols, remove_irrelevant_renamings): Likewise.
8885         (ada_lookup_symbol_list_worker, ada_lookup_symbol_list): Change
8886         results parameter to std::vector.
8887         (ada_iterate_over_symbols, ada_lookup_symbol, get_var_value):
8888         Update.
8889         * ada-exp.y (block_lookup): Update.
8890         (select_possible_type_sym): Change type of syms.  Remove nsyms
8891         parameter.
8892         (write_var_or_type, write_name_assoc): Update.
8893
8894 2018-06-04  Joel Brobecker  <brobecker@adacore.com>
8895
8896         * windows-nat.c (windows_nat_target::xfer_partial): Return
8897         TARGET_XFER_E_IO if we need to delegate to the target beneath
8898         but BENEATH is NULL.
8899
8900 2018-06-04  Simon Marchi  <simon.marchi@ericsson.com>
8901
8902         * Makefile.in (config.status): Add configure.nat as a
8903         dependency.
8904
8905 2018-06-04  Tom Tromey  <tom@tromey.com>
8906
8907         * cp-name-parser.y (cpname_state): Add method declarations.
8908         (HANDLE_QUAL): Update.
8909         (cpname_state::d_grab, cpname_state::fill_comp)
8910         (cpname_state::make_operator, cpname_state::make_dtor)
8911         (cpname_state::make_builtin_type, cpname_state::make_name)
8912         (cpname_state::d_qualify, cpname_state::d_int_type)
8913         (cpname_state::d_unary, cpname_state::d_binary): Now methods.
8914         (%union): Move earlier.
8915
8916 2018-06-04  Alan Hayward  <alan.hayward@arm.com>
8917
8918         * elfread.c (elf_symfile_segments): Use ELF_SECTION_IN_SEGMENT.
8919
8920 2018-06-04  Alan Hayward  <alan.hayward@arm.com>
8921
8922         * aarch64-tdep.c (aarch64_pseudo_read_value_1): New helper func.
8923         (aarch64_pseudo_write_1): Likewise.
8924         (aarch64_pseudo_read_value): Use helper.
8925         (aarch64_pseudo_write): Likewise.
8926
8927 2018-06-04  Pedro Alves  <palves@redhat.com>
8928
8929         * darwin-nat.c (darwin_ops): Delete.
8930         (darwin_attach_pid): Use get_native_target.
8931
8932 2018-06-04  Alan Hayward  <alan.hayward@arm.com>
8933
8934         * aarch64-tdep.c (aarch64_get_tdesc_vq): Use uint64_t for VQ.
8935         * aarch64-tdep.h (struct gdbarch_tdep): Likewise.
8936
8937 2018-06-04  Alan Hayward  <alan.hayward@arm.com>
8938
8939         * aarch64-linux-nat.c (aarch64_linux_read_description): Support SVE.
8940         * aarch64-tdep.c (aarch64_get_tdesc_vq): New function.
8941         (aarch64_gdbarch_init): Check for SVE.
8942         * aarch64-tdep.h (gdbarch_tdep::has_sve): New function.
8943
8944 2018-06-04  Alan Hayward  <alan.hayward@arm.com>
8945
8946         * aarch64-tdep.c (aarch64_read_description): Use uint64_t for VQ.
8947         * aarch64-tdep.h (aarch64_read_description): Likewise.
8948         * arch/aarch64.c (aarch64_create_target_description): Likewise.
8949         * arch/aarch64.h (aarch64_create_target_description): Likewise.
8950         * features/aarch64-sve.c (create_feature_aarch64_sve): Likewise.
8951         * nat/aarch64-sve-linux-ptrace.c(aarch64_sve_get_vq): Likewise.
8952         * nat/aarch64-sve-linux-ptrace.h (aarch64_sve_get_vq): Likewise.
8953
8954 2018-06-02  Simon Marchi  <simon.marchi@ericsson.com>
8955
8956         * value.c (value_fetch_lazy_bitfield): New.
8957         (value_fetch_lazy_memory): New.
8958         (value_fetch_lazy_register): New.
8959         (value_fetch_lazy): Factor out to smaller functions.
8960
8961 2018-06-01  Tom Tromey  <tom@tromey.com>
8962
8963         * cp-name-parser.y (backslashable, represented): Now const.
8964
8965 2018-06-01  Tom Tromey  <tom@tromey.com>
8966
8967         * cp-name-parser.y: Include parser-defs.h.
8968         (parser_fprintf): Remove declaration.
8969
8970 2018-06-01  Tom Tromey  <tom@tromey.com>
8971
8972         * cp-name-parser.y: Use %pure-parser, %lex-param, and
8973         %parse-param.
8974         (lexptr, prev_lexptr, error_lexptr, global_errmsg, demangle_info)
8975         (global_result): Remove globals.
8976         (struct cpname_state): New.
8977         (yyparse): Don't declare.
8978         (yylex, yyerror): Move declarations after %union.
8979         (d_grab, fill_comp, make_operator, make_dtor, make_builtin_type)
8980         (make_name): Add state parameter.
8981         Update all callers.
8982         (d_qualify, d_int_type, d_unary, d_binary, parse_number) Add state
8983         parameter.
8984         (HANDLE_QUAL, HANDLE_SPECIAL, HANDLE_TOKEN2, HANDLE_TOKEN3):
8985         Update.
8986         (yylex): Add lvalp, state parameters.
8987         (yyerror): Add state parameter.
8988         (cp_demangled_name_to_comp): Update.
8989
8990 2018-06-01  Tom Tromey  <tom@tromey.com>
8991
8992         * cp-name-parser.y (parser_fprintf): Declare.
8993         (GDB_YY_REMAP_PREFIX): Define.
8994         Include yy-remap.h.  Don't redefine yy* identifiers.
8995
8996 2018-06-01  Tom Tromey  <tom@tromey.com>
8997
8998         * python/py-type.c (typy_legacy_template_argument): Update.
8999         * cp-support.h (cp_demangled_name_to_comp): Update.
9000         * cp-name-parser.y (cp_demangled_name_to_comp): Change errmsg
9001         parameter to be a "std::string *".
9002         (main): Update.
9003
9004 2018-06-01  H.J. Lu  <hongjiu.lu@intel.com>
9005
9006         * ada-lex.l: Include "diagnostics.h" instead of
9007         "common/diagnostics.h".
9008         * unittests/environ-selftests.c: Likewise.
9009         * common/diagnostics.h: Moved to ../include.
9010
9011 2018-06-01  Joel Brobecker  <brobecker@adacore.com>
9012
9013         * breakpoint.c (breakpoint_re_set): Temporarily force language_mode
9014         to language_mode_manual while calling breakpoint_re_set_one.
9015
9016 2018-06-01  Tom Tromey  <tom@tromey.com>
9017
9018         * valops.c (value_cast_structs, destructor_name_p): Update.
9019         * symtab.c (gdb_mangle_name): Update.
9020         * stabsread.c (define_symbol, read_cpp_abbrev, read_baseclasses):
9021         Update.
9022         * p-valprint.c (pascal_object_is_vtbl_ptr_type)
9023         (pascal_object_print_value_fields, pascal_object_print_value):
9024         Update.
9025         * p-typeprint.c (pascal_type_print_derivation_info): Update.
9026         * linespec.c (find_methods): Update.
9027         * gdbtypes.h (type_name_no_tag): Remove.
9028         (type_name_or_error): Rename from type_name_no_tag_or_error.
9029         * gdbtypes.c (type_name_no_tag): Remove.
9030         (type_name_or_error): Rename from type_name_no_tag_or_error.
9031         (lookup_struct_elt_type, check_typedef): Update.
9032         * expprint.c (print_subexp_standard): Update.
9033         * dwarf2read.c (dwarf2_add_field, load_partial_dies): Update.
9034         * d-namespace.c (d_lookup_nested_symbol): Update.
9035         * cp-valprint.c (cp_is_vtbl_ptr_type, cp_print_value_fields)
9036         (cp_print_class_member): Update.
9037         * cp-namespace.c (cp_lookup_nested_symbol): Update.
9038         * completer.c (add_struct_fields): Update.
9039         * c-typeprint.c (cp_type_print_derivation_info)
9040         (c_type_print_varspec_prefix, c_type_print_base_struct_union):
9041         Update.
9042         * ada-lang.c (parse_old_style_renaming, xget_renaming_scope)
9043         (ada_prefer_type, ada_is_exception_sym): Update.
9044
9045 2018-06-01  Tom Tromey  <tom@tromey.com>
9046
9047         * valops.c (enum_constant_from_type, value_namespace_elt)
9048         (value_maybe_namespace_elt): Update.
9049         * valarith.c (find_size_for_pointer_math): Update.
9050         * target-descriptions.c (make_gdb_type): Update.
9051         * symmisc.c (print_symbol): Update.
9052         * stabsread.c (define_symbol, read_type)
9053         (complain_about_struct_wipeout, add_undefined_type)
9054         (cleanup_undefined_types_1): Update.
9055         * rust-lang.c (rust_tuple_type_p, rust_slice_type_p)
9056         (rust_range_type_p, val_print_struct, rust_print_struct_def)
9057         (rust_internal_print_type, rust_composite_type)
9058         (rust_evaluate_funcall, rust_evaluate_subexp)
9059         (rust_inclusive_range_type_p): Update.
9060         * python/py-type.c (typy_get_tag): Update.
9061         * p-typeprint.c (pascal_type_print_base): Update.
9062         * mdebugread.c (parse_symbol, parse_type): Update.
9063         * m2-typeprint.c (m2_long_set, m2_record_fields, m2_enum):
9064         Update.
9065         * guile/scm-type.c (gdbscm_type_tag): Update.
9066         * go-lang.c (sixg_string_p): Update.
9067         * gnu-v3-abi.c (build_gdb_vtable_type, build_std_type_info_type):
9068         Update.
9069         * gdbtypes.h (struct main_type) <tag_name>: Remove.
9070         (TYPE_TAG_NAME): Remove.
9071         * gdbtypes.c (type_name_no_tag): Simplify.
9072         (check_typedef, check_types_equal, recursive_dump_type)
9073         (copy_type_recursive, arch_composite_type): Update.
9074         * f-typeprint.c (f_type_print_base): Update.  Print "Type" prefix
9075         in summary mode when needed.
9076         * eval.c (evaluate_funcall): Update.
9077         * dwarf2read.c (fixup_go_packaging, read_structure_type)
9078         (process_structure_scope, read_enumeration_type)
9079         (read_namespace_type, read_module_type, determine_prefix): Update.
9080         * cp-support.c (inspect_type): Update.
9081         * coffread.c (process_coff_symbol, decode_base_type): Update.
9082         * c-varobj.c (c_is_path_expr_parent): Update.
9083         * c-typeprint.c (c_type_print_base_struct_union): Update.
9084         (c_type_print_base_1): Update.  Print struct/class/union/enum in
9085         summary when using C language.
9086         * ax-gdb.c (gen_struct_ref, gen_namespace_elt)
9087         (gen_maybe_namespace_elt): Update.
9088         * ada-lang.c (ada_type_name): Simplify.
9089         (empty_record, ada_template_to_fixed_record_type_1)
9090         (template_to_static_fixed_type)
9091         (to_record_with_fixed_variant_part, ada_check_typedef): Update.
9092
9093 2018-06-01  Tom Tromey  <tom@tromey.com>
9094
9095         * dwarf2read.c (dwarf2_compute_name): Pass CU's language to
9096         c_print_type.
9097         * c-typeprint.c (c_print_type_1): Add "language" parameter.
9098         (c_print_type): Update.
9099         (c_print_type): New overload.
9100         (c_type_print_varspec_prefix, c_type_print_args)
9101         (c_type_print_varspec_suffix, c_print_type_no_offsets)
9102         (c_type_print_base_struct_union, c_type_print_base_1)
9103         (cp_type_print_method_args): Add "language" parameter.
9104         (c_type_print_base): Update.
9105         * c-lang.h (c_print_type): Add new overload.
9106
9107 2018-06-01  Tom Tromey  <tom@tromey.com>
9108
9109         * typeprint.h (c_type_print_varspec_suffix): Don't declare.
9110         * c-typeprint.c (c_type_print_varspec_suffix): Now static.
9111
9112 2018-06-01  Alan Hayward  <alan.hayward@arm.com>
9113
9114         * aarch64-tdep.c (aarch64_sve_register_names): New const
9115         var.
9116         * arch/aarch64.h (enum aarch64_regnum): Add SVE entries.
9117         (AARCH64_SVE_Z_REGS_NUM): New define.
9118         (AARCH64_SVE_P_REGS_NUM): Likewise.
9119         (AARCH64_SVE_NUM_REGS): Likewise.
9120
9121 2018-05-31  Uros Bizjak  <ubizjak@gmail.com>
9122
9123         * nat/linux-ptrace.h [__alpha__]
9124         (GDB_ARCH_IS_TRAP_BRKPT, GDB_ARCH_IS_TRAP_HWBKPT): Remove
9125         definitions.
9126
9127 2018-05-31  Maciej W. Rozycki  <macro@mips.com>
9128
9129         * arch-utils.c (gdbarch_info_fill): Set `default_byte_order' to
9130         the endianness selected.
9131         * NEWS: Document `set endian auto' mode operation update.
9132
9133 2018-05-31  Alan Hayward  <alan.hayward@arm.com>
9134
9135         * Makefile.in: Add new header.
9136         * gdb/arch/aarch64.h (sve_vg_from_vl): New macro.
9137         (sve_vl_from_vg): Likewise.
9138         (sve_vq_from_vl): Likewise.
9139         (sve_vl_from_vq): Likewise.
9140         (sve_vq_from_vg): Likewise.
9141         (sve_vg_from_vq): Likewise.
9142         * configure.nat: Add new c file.
9143         * nat/aarch64-sve-linux-ptrace.c: New file.
9144         * nat/aarch64-sve-linux-ptrace.h: New file.
9145
9146 2018-05-31  Alan Hayward  <alan.hayward@arm.com>
9147
9148         * aarch64-linux-nat.c (aarch64_linux_read_description):
9149         Add parmeter zero.
9150         * aarch64-linux-tdep.c (aarch64_linux_core_read_description):
9151         Likewise.
9152         * aarch64-tdep.c (tdesc_aarch64_list): Add.
9153         (aarch64_read_description): Use VQ to index tdesc_aarch64_list.
9154         (aarch64_gdbarch_init): Add parmeter zero.
9155         * aarch64-tdep.h (aarch64_read_description): Add VQ parmeter.
9156         * arch/aarch64.c (aarch64_create_target_description): Check VQ.
9157         * arch/aarch64.h (aarch64_create_target_description): Add VQ.
9158         parmeter.
9159         * doc/gdb.texinfo: Describe SVE feature
9160         * features/aarch64-sve.c: New file.
9161
9162 2018-05-31  Omair Javaid  <omair.javaid@linaro.org>
9163
9164         PR gdb/23210
9165         * gdbarch.sh (significant_addr_bit): Default to zero when
9166         not set by target architecture.
9167         * gdbarch.c: Re-generated.
9168         * utils.c (address_significant): Update.
9169
9170 2018-05-30  Joel Brobecker  <brobecker@adacore.com>
9171
9172         * stack.c (func_command): Remove trailing newline in call to error.
9173
9174 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9175
9176         * regcache.h (regcache_raw_collect): Remove, update callers to
9177         use regcache::raw_collect.
9178         * regcache.c (regcache_raw_collect): Remove.
9179
9180 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9181
9182         * regcache.h (regcache_raw_supply): Remove, update callers to
9183         use detached_regcache::raw_supply.
9184         * regcache.c (regcache_raw_supply): Remove.
9185
9186 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9187
9188         * regcache.h (regcache_cooked_write_part): Remove, update
9189         callers to use regcache::cooked_write_part.
9190         * regcache.c (regcache_cooked_write_part): Remove.
9191
9192 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9193
9194         * regcache.h (regcache_cooked_read_part): Remove, update callers
9195         to use readable_regcache::cooked_read_part.
9196         * regcache.c (regcache_cooked_read_part): Remove.
9197
9198 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9199
9200         * regcache.h (regcache_cooked_read_value): Remove, update
9201         callers to use readable_regcache::cooked_read_value.
9202         * regcache.c (regcache_cooked_read_value): Remove.
9203
9204 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9205
9206         * regcache.h (regcache_cooked_write): Remove, update callers to
9207         use regcache::cooked_write.
9208         * regcache.c (regcache_cooked_write): Remove.
9209
9210 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9211
9212         * regcache.h (regcache_invalidate): Remove, update callers to
9213         use detached_regcache::invalidate instead.
9214         * regcache.c (regcache_invalidate): Remove.
9215
9216 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9217
9218         * regcache.h (regcache_raw_write_part): Remove, update callers
9219         to use regcache::raw_write_part instead.
9220         * regcache.c (regcache_raw_write_part): Remove.
9221
9222 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9223
9224         * regcache.h (regcache_raw_read_part): Remove, update callers to
9225         use readable_regcache::raw_read_part instead.
9226         * regcache.c (regcache_raw_read_part): Remove.
9227
9228 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9229
9230         * regcache.h (regcache_cooked_read): Remove, update callers to
9231         use readable_regcache::cooked_read instead.
9232         * regcache.c (regcache_cooked_read): Remove.
9233
9234 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9235
9236         * regcache.h (regcache_raw_write): Remove, update callers to use
9237         regcache::raw_write instead.
9238         * regcache.c (regcache_raw_write): Remove.
9239
9240 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9241
9242         * regcache.h (regcache_raw_read): Remove, update callers to use
9243         readable_regcache::raw_read instead.
9244         * regcache.c (regcache_raw_read): Remove.
9245
9246 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9247
9248         * regcache.h (regcache_raw_update): Remove, update callers to
9249         use readable_regcache::raw_update instead.
9250         * regcache.c (regcache_raw_update): Remove.
9251
9252 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9253
9254         * regcache.h (regcache_register_status): Remove, update callers
9255         to use reg_buffer::get_register_status directly instead.
9256         * regcache.c (regcache_register_status): Remove.
9257
9258 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9259
9260         * regcache.h (regcache_get_ptid): Remove, update all callers to
9261         call regcache::ptid instead.
9262         * regcache.c (regcache_get_ptid): Remove.
9263
9264 2018-05-30  Simon Marchi  <simon.marchi@ericsson.com>
9265
9266         * Makefile.in (ALL_TARGET_OBS): Add or1k-tdep.o.
9267
9268 2018-05-30  Pedro Alves  <palves@redhat.com>
9269
9270         * common/common-exceptions.h (exception_rethrow): Use
9271         ATTRIBUTE_NORETURN.
9272
9273 2018-05-29  Simon Marchi  <simon.marchi@polymtl.ca>
9274
9275         * breakpoint.c (print_solib_event, check_status_catch_solib):
9276         Remove struct keyword in range-based for loops.
9277         * dbxread.c (find_corresponding_bincl_psymtab): Likewise.
9278         * dwarf2read.c (compute_delayed_physnames, rust_union_quirks);
9279         Likewise.
9280         * linespec.c (find_superclass_methods, search_minsyms_for_name):
9281         Likewise.
9282         * symfile.c (addr_info_make_relative): Likewise.
9283         * thread.c (value_in_thread_stack_temporaries): Likewise.
9284
9285 2018-06-12  Weimin Pan  <weimin.pan@oracle.com>
9286
9287         PR gdb/16841
9288         * valops.c (value_struct_elt_for_reference): Call check_typedef on
9289         aggregate type to get its real type before accessing it.
9290
9291 2018-05-29  Weimin Pan  <weimin.pan@oracle.com>
9292
9293         * minsyms.h (lookup_minimal_symbol_and_objfile): Remove declaration.
9294         * minsyms.c (lookup_minimal_symbol_and_objfile): Remove definition.
9295         * coff-pe-read.c (add_pe_forwarded_sym): Replace
9296         lookup_minimal_symbol_and_objfile with lookup_bound_minimal_symbol.
9297         * glibc-tdep.c (glibc_skip_solib_resolver): Likewise.
9298         * jit.c (jit_breakpoint_re_set_internal): Likewise.
9299         * printcmd.c (info_address_command): Likewise.
9300
9301 2018-05-29  Tom Tromey  <tom@tromey.com>
9302
9303         * windows-nat.c (handle_exception): Update fall-through comment.
9304
9305 2018-05-29  Tom Tromey  <tom@tromey.com>
9306
9307         * progspace.h (so_list_ptr): Remove typedef.  Don't declare VEC.
9308         (struct program_space) <added_solibs>: Now a std::vector.
9309         * breakpoint.c (print_solib_event): Update.
9310         (check_status_catch_solib): Update.
9311         * progspace.c (clear_program_space_solib_cache): Update.
9312         * solib.c (update_solib_list): Update.
9313
9314 2018-05-29  Tom Tromey  <tom@tromey.com>
9315
9316         * python/py-type.c (typy_richcompare): Update.
9317         * guile/scm-type.c (tyscm_equal_p_type_smob): Update.
9318         * gdbtypes.h (types_deeply_equal): Return bool.
9319         (types_equal): Likewise.
9320         * gdbtypes.c (type_equality_entry_d): Remove typedef.  Don't
9321         declare VEC.
9322         (check_types_equal): Change worklist to std::vector.  Return
9323         bool.
9324         (struct type_equality_entry): Add constructor.
9325         (compare_maybe_null_strings): Return bool.
9326         (check_types_worklist): Return bool.  Change worklist to
9327         std::vector.
9328         (types_deeply_equal): Use std::vector.
9329         (types_equal): Return bool.
9330         (compare_maybe_null_strings): Simplify.
9331
9332 2018-05-29  Tom Tromey  <tom@tromey.com>
9333
9334         * record-btrace.c (tp_t): Remove typedef.  Don't declare VEC.
9335
9336 2018-05-29  Tom Tromey  <tom@tromey.com>
9337
9338         * objc-lang.h: Don't include cp-support.h.
9339         * common/gdb_vecs.h (const_char_ptr): Remove typedef.  Don't
9340         declare VEC.
9341
9342 2018-05-27  Tom Tromey  <tom@tromey.com>
9343
9344         * Makefile.in (DEPFILES): Don't reference REMOTE_OBS.
9345
9346 2018-05-25  Tom Tromey  <tom@tromey.com>
9347
9348         * value.c (value::location): Initialize.
9349
9350 2018-05-25  Tom Tromey  <tom@tromey.com>
9351
9352         * dbxread.c (init_bincl_list): Remove.
9353         (bincl_list): Now a std::vector.
9354         (bincls_allocated, next_bincl): Remove.
9355         (free_bincl_list, do_free_bincl_list_cleanup)
9356         (make_cleanup_free_bincl_list): Remove.
9357         (dbx_read_symtab, elfstab_build_psymtabs): Use scoped_restore,
9358         unique_xmalloc_ptr.
9359         (find_corresponding_bincl_psymtab, read_dbx_symtab): Update.
9360         (struct header_file_location): Add constructor.
9361         (add_bincl_to_list): Remove.
9362
9363 2018-05-25  Tom Tromey  <tom@tromey.com>
9364
9365         * tui/tui.c (tui_enable): Update.
9366         * mi/mi-interp.c (mi_interp::init): Update.
9367         * interps.h (class interp) <name>: New method.
9368         <m_name>: Rename from name.
9369         (~scoped_restore_interp): Update.
9370         * interps.c (interp::interp): Update.
9371         (interp_add, interp_set, interp_lookup_existing)
9372         (current_interp_named_p): Update.
9373
9374 2018-05-25  Tom Tromey  <tom@tromey.com>
9375
9376         * interps.c (interp_name): Remove.
9377         * mi/mi-interp.c (mi_interp::init): Update.
9378         * interps.h (interp_name): Remove.
9379         (~scoped_restore_interp): Update.
9380         * tui/tui.c (tui_enable): Update.
9381
9382 2018-05-25  Tom Tromey  <tom@tromey.com>
9383
9384         * utils.c (fputs_maybe_filtered): Update.
9385         * linespec.c (decode_line_full): Update.
9386         * mi/mi-interp.c (mi_on_normal_stop_1, mi_tsv_modified)
9387         (mi_print_breakpoint_for_event, mi_solib_loaded)
9388         (mi_solib_unloaded, mi_command_param_changed, mi_memory_changed)
9389         (mi_user_selected_context_changed): Update.
9390         * mi/mi-main.c (mi_execute_command): Update.
9391         * cli/cli-script.c (execute_control_command): Update.
9392         * python/python.c (execute_gdb_command): Update.
9393         * solib.c (info_sharedlibrary_command): Update.
9394         * interps.c (interp_ui_out): Remove.
9395         * interps.h (interp_ui_out): Remove.
9396
9397 2018-05-25  Tom Tromey  <tom@tromey.com>
9398
9399         * tui/tui-interp.c (as_tui_interp): Use dynamic_cast.
9400         * mi/mi-interp.c (as_mi_interp): Use dynamic_cast.
9401         * cli/cli-interp.c (as_cli_interp): Use dynamic_cast.
9402
9403 2018-05-25  Tom Tromey  <tom@tromey.com>
9404
9405         * cli/cli-interp.c (safe_execute_command): Use scoped_restore.
9406         * interps.c (interp_exec): Use scoped_restore.
9407
9408 2018-05-25  Tom Tromey  <tom@tromey.com>
9409
9410         * remote.c (remote_target::remote_file_get): Use
9411         gdb::byte_vector.
9412         (remote_target::remote_file_put): Likewise.
9413
9414 2018-05-25  Tom Tromey  <tom@tromey.com>
9415
9416         * coff-pe-read.c (struct read_pe_section_data) <section_name>: Now
9417         a std::string.
9418         (get_pe_section_index, add_pe_exported_sym): Update.
9419         (read_pe_exported_syms): Use gdb::def_vector.
9420
9421 2018-05-25  Tom Tromey  <tom@tromey.com>
9422
9423         * frame.c (remove_prev_frame): Remove.
9424         (get_prev_frame_if_no_cycle): Use TRY/CATCH.
9425
9426 2018-05-25  Maciej W. Rozycki  <macro@mips.com>
9427
9428         * mips-linux-tdep.h (mips_supply_fpregset, mips_fill_fpregset):
9429         Remove prototypes.
9430         * mips-linux-nat.c (supply_fpregset): Always call
9431         `mips64_supply_fpregset' rather than `mips_supply_fpregset'.
9432         (fill_fpregset): Always call `mips64_fill_fpregset' rather than
9433         `mips_fill_fpregset'.
9434         * mips-linux-tdep.c (mips_supply_fpregset)
9435         (mips_supply_fpregset_wrapper, mips_fill_fpregset)
9436         (mips_fill_fpregset_wrapper): Remove functions.
9437         (mips64_supply_fpregset, mips64_fill_fpregset): Update comments.
9438         (mips_linux_fpregset): Remove variable.
9439         (mips_linux_iterate_over_regset_sections): Use
9440         `mips64_linux_fpregset' in place of `mips_linux_fpregset'.
9441         (mips_linux_o32_sigframe_init): Remove comment.
9442
9443 2018-05-25  Pedro Alves  <palves@redhat.com>
9444
9445         * remote.c (struct vCont_action_support, MAXTHREADLISTRESULTS)
9446         (struct readahead_cache, struct packet_reg, struct
9447         remote_arch_state, class remote_state): Move higher up in the
9448         file.
9449         (remote_target::m_remote_state): Now an object instead of a pointer.
9450         (remote_target::get_remote_state): Adjust.
9451
9452 2018-05-24  Andrew Burgess  <andrew.burgess@embecosm.com>
9453
9454         * stack.c (select_and_print_frame): Delete.
9455         (struct function_bounds): Move struct within function.
9456         (func_command): Most content moved into new function
9457         find_frame_for_function, use new function, print result, add
9458         function comment.
9459         (find_frame_for_function): New function, now returns a result.
9460
9461 2018-05-24  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
9462
9463         * stack.c (iterate_over_block_arg_vars): Fix comment.
9464         (print_frame_arg_vars): Pass stream in cb_data, not gdb_stdout.
9465
9466 2018-05-24  Andrew Burgess  <andrew.burgess@embecosm.com>
9467
9468         PR gdb/23203
9469         * frame.c
9470         (scoped_restore_selected_frame::scoped_restore_selected_frame):
9471         Define.
9472         (scoped_restore_selected_frame::~scoped_restore_selected_frame):
9473         Define.
9474         * frame.h (class scoped_restore_selected_frame): New class.
9475         * stack.c (print_frame_local_vars): Remove catching and rethrowing
9476         of any exception, use scoped_restore_selected_frame to restore the
9477         frame instead.
9478
9479 2018-05-24  Pedro Alves  <palves@redhat.com>
9480
9481         * darwin-nat.h (darwin_nat_target::create_inferior): Mark with
9482         override.
9483
9484 2018-05-23  Tom Tromey  <tom@tromey.com>
9485
9486         * complaints.c (struct complaints): Remove.
9487         (symfile_complaint_book): Remove.
9488         (series): New global.
9489         (complaint_internal): Update.
9490         (clear_complaints): Update.
9491
9492 2018-05-23  Tom Tromey  <tom@tromey.com>
9493
9494         * complaints.c (counters): New global.
9495         (struct complain): Remove.
9496         (struct complaints) <root>: Remove.
9497         (complaint_sentinel): Remove.
9498         (symfile_complaint_book): Update.
9499         (find_complaint) Remove.
9500         (complaint_internal, clear_complaints): Update.
9501
9502 2018-05-23  Tom Tromey  <tom@tromey.com>
9503
9504         * complaints.c (struct complain) <file, line>: Remove.
9505         (find_complaint): Remove file, line parameters.
9506         (complaint_internal): Update.
9507
9508 2018-05-23  Tom Tromey  <tom@tromey.com>
9509
9510         * complaints.c (vcomplaint): Remove.
9511         (complaint_internal) Merge in contents of vcomplaint.
9512
9513 2018-05-23  Tom Tromey  <tom@tromey.com>
9514
9515         * complaints.c (struct complaints) <explanation>: Remove.
9516         (symfile_explanations): Remove.
9517         (symfile_complaint_book): Update.
9518         (vcomplaint): Update.
9519         (struct explanation): Remove.
9520
9521 2018-05-23  Tom Tromey  <tom@tromey.com>
9522
9523         * complaints.c (symfile_complaints): Remove.
9524         (complaint_internal): Remove "complaints" parameter.
9525         (clear_complaints, vcomplaint): Remove "c" parameter.
9526         (get_complaints): Remove.
9527         * dwarf2read.c (dwarf2_statement_list_fits_in_line_number_section_complaint)
9528         (dwarf2_debug_line_missing_file_complaint)
9529         (dwarf2_debug_line_missing_end_sequence_complaint)
9530         (dwarf2_complex_location_expr_complaint)
9531         (dwarf2_const_value_length_mismatch_complaint)
9532         (dwarf2_section_buffer_overflow_complaint)
9533         (dwarf2_macro_malformed_definition_complaint)
9534         (dwarf2_invalid_attrib_class_complaint)
9535         (create_addrmap_from_index, dw2_symtab_iter_next)
9536         (dw2_expand_marked_cus)
9537         (dw2_debug_names_iterator::find_vec_in_debug_names)
9538         (dw2_debug_names_iterator::next, dw2_debug_names_iterator::next)
9539         (create_debug_type_hash_table, init_cutu_and_read_dies)
9540         (partial_die_parent_scope, add_partial_enumeration)
9541         (skip_one_die, fixup_go_packaging, quirk_rust_enum, process_die)
9542         (dwarf2_compute_name, dwarf2_physname, read_namespace_alias)
9543         (read_import_statement, read_file_scope, create_dwo_cu_reader)
9544         (create_cus_hash_table, create_dwp_hash_table)
9545         (inherit_abstract_dies, read_func_scope, read_call_site_scope)
9546         (dwarf2_rnglists_process, dwarf2_ranges_process)
9547         (dwarf2_add_type_defn, dwarf2_attach_fields_to_type)
9548         (dwarf2_add_member_fn, get_alignment, maybe_set_alignment)
9549         (handle_struct_member_die, process_structure_scope)
9550         (read_array_type, read_common_block, read_module_type)
9551         (read_tag_pointer_type, read_typedef, read_base_type)
9552         (read_subrange_type, load_partial_dies, partial_die_info::read)
9553         (partial_die_info::read, partial_die_info::read)
9554         (partial_die_info::read, read_checked_initial_length_and_offset)
9555         (dwarf2_string_attr, read_formatted_entries)
9556         (dwarf_decode_line_header)
9557         (lnp_state_machine::check_line_address, dwarf_decode_lines_1)
9558         (new_symbol, dwarf2_const_value_attr, lookup_die_type)
9559         (read_type_die_1, determine_prefix, dwarf2_get_ref_die_offset)
9560         (dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
9561         (get_signatured_type, get_DW_AT_signature_type)
9562         (decode_locdesc, file_file_name, consume_improper_spaces)
9563         (skip_form_bytes, skip_unknown_opcode, dwarf_parse_macro_header)
9564         (dwarf_decode_macro_bytes, dwarf_decode_macros)
9565         (dwarf2_symbol_mark_computed, set_die_type)
9566         (read_attribute_value): Update.
9567         * stap-probe.c (handle_stap_probe, get_stap_base_address):
9568         Update.
9569         * dbxread.c (unknown_symtype_complaint)
9570         (lbrac_mismatch_complaint, repeated_header_complaint)
9571         (set_namestring, function_outside_compilation_unit_complaint)
9572         (read_dbx_symtab, process_one_symbol): Update.
9573         * gdbtypes.c (stub_noname_complaint): Update.
9574         * windows-nat.c (handle_unload_dll): Update.
9575         * coffread.c (coff_symtab_read, enter_linenos, decode_type)
9576         (decode_base_type): Update.
9577         * xcoffread.c (bf_notfound_complaint, ef_complaint)
9578         (eb_complaint, record_include_begin, record_include_end)
9579         (enter_line_range, xcoff_next_symbol_text, read_xcoff_symtab)
9580         (process_xcoff_symbol, read_symbol)
9581         (function_outside_compilation_unit_complaint)
9582         (scan_xcoff_symtab): Update.
9583         * machoread.c (macho_symtab_read, macho_add_oso_symfile): Update.
9584         * buildsym.c (finish_block_internal, make_blockvector)
9585         (end_symtab_get_static_block, augment_type_symtab): Update.
9586         * dtrace-probe.c (dtrace_process_dof)
9587         (dtrace_static_probe_ops::get_probes): Update.
9588         * complaints.h (struct complaint): Don't declare.
9589         (symfile_complaints): Remove.
9590         (complaint_internal): Remove "complaints" parameter.
9591         (complaint): Likewise.
9592         (clear_complaints): Likewise.
9593         * symfile.c (syms_from_objfile_1, finish_new_objfile)
9594         (reread_symbols): Update.
9595         * dwarf2-frame.c (dwarf2_restore_rule, execute_cfa_program)
9596         (dwarf2_frame_cache, decode_frame_entry): Update.
9597         * dwarf2loc.c (dwarf_reg_to_regnum): Update.
9598         * objc-lang.c (lookup_objc_class, lookup_child_selector)
9599         (info_selectors_command): Update.
9600         * macrotab.c (macro_include, check_for_redefinition)
9601         (macro_undef): Update.
9602         * objfiles.c (filter_overlapping_sections): Update.
9603         * stabsread.c (invalid_cpp_abbrev_complaint)
9604         (reg_value_complaint, stabs_general_complaint, dbx_lookup_type)
9605         (define_symbol, error_type, read_type, rs6000_builtin_type)
9606         (stabs_method_name_from_physname, read_member_functions)
9607         (read_cpp_abbrev, read_baseclasses, read_tilde_fields)
9608         (attach_fields_to_type, complain_about_struct_wipeout)
9609         (read_range_type, read_args, common_block_start)
9610         (common_block_end, cleanup_undefined_types_1, scan_file_globals):
9611         Update.
9612         * mdebugread.c (index_complaint, unknown_ext_complaint)
9613         (basic_type_complaint, bad_tag_guess_complaint)
9614         (bad_rfd_entry_complaint, unexpected_type_code_complaint)
9615         (reg_value_complaint, parse_symbol, parse_type, upgrade_type)
9616         (parse_procedure, parse_lines)
9617         (function_outside_compilation_unit_complaint)
9618         (parse_partial_symbols, psymtab_to_symtab_1, cross_ref)
9619         (bad_tag_guess_complaint, reg_value_complaint): Update.
9620         * cp-support.c (demangled_name_complaint): Update.
9621         * macroscope.c (sal_macro_scope): Update.
9622         * dwarf-index-write.c (class debug_names): Update.
9623
9624 2018-05-23  Tom Tromey  <tom@tromey.com>
9625
9626         * complaints.c (clear_complaints): Remove "noisy" parameter.
9627         * complaints.h (clear_complaints): Update.
9628         * symfile.c (syms_from_objfile_1, finish_new_objfile)
9629         (reread_symbols): Update.
9630
9631 2018-05-23  Tom Tromey  <tom@tromey.com>
9632
9633         * complaints.c (enum complaint_series): Remove FIRST_MESSAGE,
9634         SUBSEQUENT_MESSAGE.
9635         (vcomplaint, clear_complaints): Update.
9636         (symfile_explanations): Remove some messages.
9637
9638 2018-05-23  Tom Tromey  <tom@tromey.com>
9639
9640         * complaints.c (internal_complaint): Remove.
9641         * complaints.h (internal_complaint): Remove.
9642
9643 2018-05-22  Maciej W. Rozycki  <macro@mips.com>
9644
9645         * i387-tdep.c (i387_collect_xsave): Make `i' unsigned.
9646
9647 2018-05-22  Pedro Alves  <palves@redhat.com>
9648
9649         * remote-fileio.c (remote_fileio_reply, remote_fileio_ioerror)
9650         (remote_fileio_badfd, remote_fileio_return_errno)
9651         (remote_fileio_return_success, remote_fileio_func_open)
9652         (remote_fileio_func_open, remote_fileio_func_close)
9653         (remote_fileio_func_read, remote_fileio_func_write)
9654         (remote_fileio_func_lseek, remote_fileio_func_rename)
9655         (remote_fileio_func_unlink, remote_fileio_func_stat)
9656         (remote_fileio_func_fstat, remote_fileio_func_gettimeofday)
9657         (remote_fileio_func_isatty, remote_fileio_func_system): Add
9658         remote_target parameter.
9659         (remote_fio_func_map) <func>: Add remote_target parameter.
9660         (do_remote_fileio_request, remote_fileio_request):
9661         * remote-fileio.h (remote_fileio_request):
9662         * remote-notif.c (remote_notif_ack, remote_notif_parse, ): Add
9663         remote_target parameter.
9664         (remote_notif_process, handle_notification): Adjust to pass down
9665         the remote.
9666         (remote_notif_state_allocate): Add remote_target parameter.  Save
9667         it.
9668         * remote-notif.h (struct remote_target): Forward declare.
9669         (struct notif_client) <parse, ack, can_get_pending_events>: Add
9670         remote_target parameter.
9671         (struct remote_notif_state) <remote>: New field.
9672         (remote_notif_ack, remote_notif_parse): Add remote_target
9673         parameter.
9674         (remote_notif_state_allocate, remote_notif_state_allocate): Add
9675         remote_target parameter.
9676         * remote.c (OPAQUETHREADBYTES, threadref, gdb_ext_thread_info)
9677         (threads_listing_context, rmt_thread_action, protocol_feature)
9678         (packet_reg, stop_reply, stop_reply_p, enum packet_support)
9679         (packet_result, struct threads_listing_context, remote_state):
9680         Move definitions and declarations higher up.
9681         (remote_target) <~remote_target>: Declare.
9682         (remote_download_command_source, remote_file_put, remote_file_get)
9683         (remote_file_delete, remote_hostio_pread, remote_hostio_pwrite)
9684         (remote_hostio_pread_vFile, remote_hostio_send_command)
9685         (remote_hostio_set_filesystem, remote_hostio_open)
9686         (remote_hostio_close, remote_hostio_unlink, remote_state)
9687         (get_remote_state, get_remote_packet_size, get_memory_packet_size)
9688         (get_memory_write_packet_size, get_memory_read_packet_size)
9689         (append_pending_thread_resumptions, remote_detach_1)
9690         (append_resumption, remote_resume_with_vcont)
9691         (add_current_inferior_and_thread, wait_ns, wait_as)
9692         (process_stop_reply, remote_notice_new_inferior)
9693         (process_initial_stop_replies, remote_add_thread)
9694         (btrace_sync_conf, remote_btrace_maybe_reopen)
9695         (remove_new_fork_children, kill_new_fork_children)
9696         (discard_pending_stop_replies, stop_reply_queue_length)
9697         (check_pending_events_prevent_wildcard_vcont)
9698         (discard_pending_stop_replies_in_queue, stop_reply)
9699         (remote_notif_remove_queued_reply, stop_reply *queued_stop_reply)
9700         (peek_stop_reply, remote_parse_stop_reply, remote_stop_ns)
9701         (remote_interrupt_as, remote_interrupt_ns)
9702         (remote_get_noisy_reply, remote_query_attached)
9703         (remote_add_inferior, remote_current_thread, get_current_thread)
9704         (set_thread, set_general_thread, set_continue_thread)
9705         (set_general_process, write_ptid)
9706         (remote_unpack_thread_info_response, remote_get_threadinfo)
9707         (parse_threadlist_response, remote_get_threadlist)
9708         (remote_threadlist_iterator, remote_get_threads_with_ql)
9709         (remote_get_threads_with_qxfer)
9710         (remote_get_threads_with_qthreadinfo, extended_remote_restart)
9711         (get_offsets, remote_check_symbols, remote_supported_packet)
9712         (remote_query_supported, remote_packet_size)
9713         (remote_serial_quit_handler, remote_detach_pid)
9714         (remote_vcont_probe, remote_resume_with_hc)
9715         (send_interrupt_sequence, interrupt_query)
9716         (remote_notif_get_pending_events, fetch_register_using_p)
9717         (send_g_packet, process_g_packet, fetch_registers_using_g)
9718         (store_register_using_P, store_registers_using_G)
9719         (set_remote_traceframe, check_binary_download)
9720         (remote_write_bytes_aux, remote_write_bytes, remote_read_bytes_1)
9721         (remote_xfer_live_readonly_partial, remote_read_bytes)
9722         (remote_send_printf, remote_flash_write, readchar)
9723         (remote_serial_write, putpkt, putpkt_binary, skip_frame)
9724         (read_frame, getpkt, getpkt_or_notif_sane_1, getpkt_sane)
9725         (getpkt_or_notif_sane, remote_vkill, remote_kill_k)
9726         (extended_remote_disable_randomization, extended_remote_run)
9727         (send_environment_packet, extended_remote_environment_support)
9728         (extended_remote_set_inferior_cwd, remote_write_qxfer)
9729         (remote_read_qxfer, push_stop_reply, vcont_r_supported)
9730         (packet_command): Now methods of ...
9731         (remote_target): ... this class.
9732         (m_remote_state) <remote_target>: New field.
9733         (struct remote_state) <stop_reply_queue,
9734         remote_async_inferior_event_token, wait_forever_enabled_p>: New
9735         fields.
9736         (remote_state::remote_state): Allocate stop_reply_queue.
9737         (remote_state): Delete global.
9738         (get_remote_state_raw): Delete.
9739         (remote_target::get_remote_state): Allocate m_remote_state on
9740         demand.
9741         (get_current_remote_target): New.
9742         (remote_ops, extended_remote_ops): Delete.
9743         (wait_forever_enabled_p, remote_async_inferior_event_token):
9744         Delete, moved to struct remote_state.
9745         (remote_target::close): Delete self.  Destruction bits split to
9746         ...
9747         (remote_target::~remote_target): ... this.
9748         (show_memory_packet_size): Adjust to use
9749         get_current_remote_target.
9750         (struct protocol_feature) <func>: Add remote_target parameter.
9751         All callers adjusted.
9752         (curr_quit_handler_target): New.
9753         (remote_serial_quit_handler): Reimplement.
9754         (remote_target::open_1): Adjust to use get_current_remote_target.
9755         Heap-allocate remote_target/extended_remote_target instances.
9756         (vcont_builder::vcont_builder): Add remote_target parameter, and
9757         save it in m_remote.  All callers adjusted.
9758         (vcont_builder::m_remote): New field.
9759         (vcont_builder::restart, vcont_builder::flush)
9760         (vcont_builder::push_action): Use it.
9761         (remote_target::commit_resume): Use it.
9762         (struct queue_iter_param) <remote>: New field.
9763         (remote_target::remove_new_fork_children): Fill in 'remote' field.
9764         (check_pending_event_prevents_wildcard_vcont_callback_data): New.
9765         (check_pending_event_prevents_wildcard_vcont_callback)
9766         (remote_target::check_pending_events_prevent_wildcard_vcont)
9767         (remote_target::discard_pending_stop_replies)
9768         (remote_target::discard_pending_stop_replies_in_queue)
9769         (remote_target::remote_notif_remove_queued_reply): Fill in
9770         'remote' field.
9771         (remote_notif_get_pending_events): New.
9772         (remote_target::readchar, remote_target::remote_serial_write):
9773         Save/restore curr_quit_handler_target.
9774         (putpkt): New.
9775         (kill_new_fork_children): Fill in 'remote' field.
9776         (packet_command): Use get_current_remote_target, defer to
9777         remote_target method of same name.
9778         (scoped_remote_fd::scoped_remote_fd): Add 'remote_target'
9779         parameter, and save it in m_remote.  All callers adjusted.
9780         (scoped_remote_fd::release): Use m_remote.
9781         (scoped_remote_fd::m_remote): New field.
9782         (remote_file_put, remote_file_get, remote_file_delete): Use
9783         get_current_remote_target, defer to remote_target method of same
9784         name.
9785         (remote_btrace_reset): Add remote_state paremeter.  Update all
9786         callers.
9787         (remote_async_inferior_event_handler). Pass down 'data'.
9788         (remote_new_objfile): Use get_current_remote_target.
9789         (remote_target::vcont_r_supported): New.
9790         (set_range_stepping): Use get_current_remote_target and
9791         remote_target::vcont_r_supported.
9792         (_initialize_remote): Don't allocate 'remote_state' and
9793         'stop_reply_queue' globals.
9794         * remote.h (struct remote_target): Forward declare.
9795         (getpkt, putpkt, remote_notif_get_pending_events): Add
9796         'remote_target' parameter.
9797
9798 2018-05-22  Pedro Alves  <palves@redhat.com>
9799
9800         * remote.c (vcont_builder): Now a class.  Make all data members
9801         private.
9802         (vcont_builder) <vcont_builder, restart, flush, push_action>:
9803         Declare methods.
9804         (vcont_builder_restart): Rename to ...
9805         (vcont_builder::restart): ... this.
9806         (vcont_builder_flush): Rename to ...
9807         (vcont_builder::flush): ... this.
9808         (vcont_builder_push_action): Rename to ...
9809         (vcont_builder::push_action): ... this.
9810         (remote_target::commit_resume): Adjust.
9811
9812 2018-05-22  Pedro Alves  <palves@redhat.com>
9813
9814         * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE): Rename to ...
9815         (DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED): ... this.
9816         (get_fixed_memory_packet_size): New.
9817         (get_memory_packet_size): Use it.
9818         (set_memory_packet_size): Don't override the config size with
9819         DEFAULT_MAX_MEMORY_PACKET_SIZE.
9820         (show_memory_packet_size): Use get_fixed_memory_packet_size.
9821         Don't refer to get_memory_packet_size if not connected to a remote
9822         target.  Show "(default)" if configured size is 0.
9823
9824 2018-05-22  Pedro Alves  <palves@redhat.com>
9825
9826         * remote.c (remote_target::mourn_inferior): Move
9827         discard_pending_stop_replies call here from ...
9828         (_initialize_remote): ... here.
9829
9830 2018-05-22  Pedro Alves  <palves@redhat.com>
9831
9832         * remote.c (compare_section_command): Remove set_general_process
9833         call.
9834
9835 2018-05-22  Pedro Alves  <palves@redhat.com>
9836
9837         * remote.c (struct packet_reg, struct remote_arch_state):
9838         Move higher up in the file.
9839         (remote_state) <m_arch_states>: Store remote_arch_state values
9840         instead of remote_arch_state pointers.
9841         (remote_state::get_remote_arch_state): Adjust.
9842
9843 2018-05-22  Pedro Alves  <palves@redhat.com>
9844
9845         * remote.c: Include <unordered_map>.
9846         (remote_state): Now a class.
9847         (remote_state) <get_remote_arch_state>: Declare method.
9848         <get_remote_arch_state>: New field.
9849         (remote_arch_state) <remote_arch_state>: Declare ctor.
9850         <regs>: Now a unique_ptr.
9851         (remote_gdbarch_data_handle): Delete.
9852         (get_remote_arch_state): Delete.
9853         (remote_state::get_remote_arch_state): New.
9854         (get_remote_state): Adjust to call remote_state's
9855         get_remote_arch_state method.
9856         (init_remote_state): Delete, bits factored out to ...
9857         (remote_arch_state::remote_arch_state): ... this new method.
9858         (get_remote_packet_size, get_memory_packet_size)
9859         (process_g_packet, remote_target::fetch_registers)
9860         (remote_target::prepare_to_store, store_registers_using_G)
9861         (remote_target::store_registers, remote_target::get_trace_status):
9862         Adjust to call remote_state's method.
9863         (_initialize_remote): Remove reference to
9864         remote_gdbarch_data_handle.
9865
9866 2018-05-22  Pedro Alves  <palves@redhat.com>
9867
9868         * remote.c (struct readahead_cache) <invalidate, invalidate_fd,
9869         pread>: New method declarations.
9870         (remote_target::open_1): Adjust.
9871         (readahead_cache_invalidate): Rename to ...
9872         (readahead_cache::invalidate): ... this, and adjust to be a class
9873         method.
9874         (readahead_cache_invalidate_fd): Rename to ...
9875         (readahead_cache::invalidate_fd): ... this, and adjust to be a
9876         class method.
9877         (remote_hostio_pwrite): Adjust.
9878         (remote_hostio_pread_from_cache): Rename to ...
9879         (readahead_cache::pread): ... this, and adjust to be a class
9880         method.
9881         (remote_hostio_close): Adjust.
9882
9883 2018-05-22  Pedro Alves  <palves@redhat.com>
9884
9885         * remote.c (remote_hostio_close_cleanup): Delete.
9886         (class scoped_remote_fd): New.
9887         (remote_file_put, remote_file_get): Use it.
9888
9889 2018-05-22  Pedro Alves  <palves@redhat.com>
9890
9891         (struct vCont_action_support): Use bool and initialize all fields.
9892         (struct readahead_cache): Initialize all fields.
9893         (remote_state): Use bool and initialize all fields.
9894         (remote_state::remote_state, remote_state::~remote_state): New.
9895         (new_remote_state): Delete.
9896         (_initialize_remote): Use new to allocate remote_state.
9897
9898 2018-05-22  Pedro Alves  <palves@redhat.com>
9899             張俊芝  <zjz@zjz.name>
9900
9901         PR gdb/22973
9902         * c-exp.y: Include "c-support.h".
9903         (parse_number, c_parse_escape, lex_one_token): Use TOLOWER instead
9904         of tolower.  Use c_ident_is_alpha to scan names.
9905         * c-lang.c: Include "c-support.h".
9906         (convert_ucn, convert_octal, convert_hex, convert_escape): Use
9907         ISXDIGIT instead of isxdigit and ISDIGIT instead of isdigit.
9908         * c-support.h: New file, with bits factored out from ...
9909         * cp-name-parser.y: ... this file.
9910         Include "c-support.h".
9911         (cp_ident_is_alpha, cp_ident_is_alnum): Deleted, moved to
9912         c-support.h and renamed.
9913         (symbol_end, yylex): Adjust.
9914
9915 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9916
9917         * arch/ppc-linux-common.c (ppc_linux_has_isa205): Change the
9918         parameter type to CORE_ADDR.
9919         * arch/ppc-linux-common.h (ppc_linux_has_isa205): Change the
9920         parameter type in declaration to CORE_ADDR.
9921         * ppc-linux-tdep.c (ppc_linux_core_read_description): Call
9922         target_auxv_search to get AT_HWCAP and use the result to get the
9923         target description.
9924         * ppc-linux-nat.c (ppc_linux_get_hwcap): Change the return type
9925         to CORE_ADDR. Remove the cast of the return value to unsigned
9926         long. Fix error predicate of target_auxv_search.
9927         (ppc_linux_nat_target::read_description): Change the type of the
9928         hwcap variable to CORE_ADDR.
9929
9930 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9931
9932         * rs6000-tdep.c (rs6000_gdbarch_init): Assign 1 to have_dfp only
9933         if the size of fpscr is larger than 32 bits.
9934
9935 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9936
9937         * ppc-linux-tdep.c (ppc_linux_vsxregset): New function.
9938         (ppc32_linux_vsxregmap): New global.
9939         (ppc32_linux_vsxregset): Initialize with ppc32_linux_vsxregmap,
9940         regcache_supply_regset, and regcache_collect_regset.
9941         * ppc-linux-tdep.h (ppc_linux_vsxregset): Declare.
9942         * ppc-linux-nat.c (supply_vsxregset, fill_vsxregset): Remove.
9943         (fetch_vsx_register, store_vsx_register): Remove.
9944         (fetch_vsx_registers): Add regno parameter. Get regset using
9945         ppc_linux_vsxregset. Use regset to supply registers.
9946         (store_vsx_registers): Add regno parameter. Get regset using
9947         ppc_linux_vsxregset. Use regset to collect registers.
9948         (fetch_register): Call fetch_vsx_registers instead of
9949         fetch_vsx_register.
9950         (store_register): Call store_vsx_registers instead of
9951         store_vsx_register.
9952         (fetch_ppc_registers): Call fetch_vsx_registers with -1 for the
9953         new regno parameter.
9954         (store_ppc_registers): Call store_vsx_registers with -1 for the
9955         new regno parameter.
9956         * rs6000-tdep.c (ppc_vsx_support_p, ppc_supply_vsxreget)
9957         (ppc_collect_vsxregset): Remove.
9958
9959 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
9960
9961         * ppc-tdep.h (struct ppc_reg_offsets): Remove vector register
9962         offset fields.
9963         * ppc-fbsd-tdep.c (ppc32_fbsd_reg_offsets): Remove initializers
9964         for vector register offset fields.
9965         (ppc64_fbsd_reg_offsets): Likewise.
9966         * ppc-nbsd-tdep.c (_initialize_ppcnbsd_tdep): Remove assignment
9967         to vector register offset fields.
9968         * ppc-obsd-tdep.c (_initialize_ppcnbsd_tdep): Remove assignment
9969         to vector register offset fields.
9970         * ppc-obsd-nat.c (_initialize_ppcobsd_nat): Remove assignment to
9971         vector register offset fields.
9972         * rs6000-aix-tdep.c (rs6000_aix32_reg_offsets): Remove
9973         initializers for vector register offset fields.
9974         (rs6000_aix64_reg_offsets): Likewise.
9975         * rs6000-tdep.c (ppc_vrreg_offset): Remove.
9976         (ppc_supply_vrregset): Remove.
9977         (ppc_collect_vrregset): Remove.
9978         * ppc-linux-tdep.c (ppc_linux_collect_vrregset): New function.
9979         (ppc_linux_vrregset) : New function.
9980         (ppc32_le_linux_vrregmap, ppc32_be_linux_vrregmap)
9981         (ppc32_le_linux_vrregset, ppc32_be_linux_vrregset): New globals.
9982         (ppc32_linux_vrregset): Remove.
9983         (ppc_linux_iterate_over_regset_sections): Call ppc_linux_vrregset
9984         and use result instead of ppc32_linux_vrregset.
9985         (ppc32_linux_reg_offsets): Remove initializers for vector register
9986         offset fields.
9987         (ppc64_linux_reg_offsets): Likewise.
9988         * ppc-linux-tdep.h (ppc_linux_vrregset): New declaration.
9989         * ppc-linux-nat.c: Include regset.h.
9990         (gdb_vrregset_t): Adjust comment to account for little-endian
9991         mode.
9992         (supply_vrregset, fill_vrregset): Remove.
9993         (fetch_altivec_register, store_altivec_register): Remove.
9994         (fetch_altivec_registers): Add regno parameter. Get regset using
9995         ppc_linux_vrregset. Use regset to supply registers.
9996         (store_altivec_registers): Add regno parameter. Get regset using
9997         ppc_linux_vrregset. Use regset to collect registers.
9998         (fetch_register): Call fetch_altivec_registers instead of
9999         fetch_altivec_register.
10000         (store_register): Call store_altivec_registers instead of
10001         store_altivec_register.
10002         (fetch_ppc_registers): Call fetch_altivec_registers with -1 for
10003         the new regno parameter.
10004         (store_ppc_registers): Call store_altivec_registers with -1 for
10005         the new regno parameter.
10006
10007 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
10008
10009         * arch/ppc-linux-common.h (PPC_LINUX_SIZEOF_VRREGSET)
10010         (PPC_LINUX_SIZEOF_VSXREGSET): Define.
10011         * ppc-linux-nat.c (SIZEOF_VSXREGS, SIZEOF_VRREGS): Remove.
10012         (gdb_vrregset_t): Change array type size to
10013         PPC_LINUX_SIZEOF_VRREGSET.
10014         (gdb_vsxregset_t): Change array type size to
10015         PPC_LINUX_SIZEOF_VSXREGSET.
10016         * ppc-linux-tdep.c (ppc_linux_iterate_over_regset_sections):
10017         Change integer literals to PPC_LINUX_SIZEOF_VRREGSET and
10018         PPC_LINUX_SIZEOF_VSXREGSET.
10019
10020 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
10021
10022         * configure.nat <linux powerpc>: Add ppc-linux.o to NATDEPFILES.
10023         * ppc-linux-nat.c (ppc_linux_target_wordsize): Move to
10024         nat/ppc-linux.c.
10025         (ppc_linux_nat_target::auxv_parse): Get thread id tid. Call
10026         ppc_linux_target_wordsize with tid.
10027         (ppc_linux_nat_target::read_description): Call ppc_linux_target
10028         wordsize with tid.
10029         * nat/ppc-linux.c: Include nat/gdb_ptrace.h.
10030         (ppc64_64bit_inferior_p): Add static and inline specifiers.
10031         (ppc_linux_target_wordsize): Move here from ppc-linux-nat.c. Add
10032         tid parameter. Remove static specifier.
10033         * nat/ppc-linux.h (ppc64_64bit_inferior_p): Remove declaration.
10034         (ppc_linux_target_wordsize): New declaration.
10035
10036 2018-05-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
10037
10038         * arch/ppc-linux-common.c: New file.
10039         * arch/ppc-linux-common.h: New file.
10040         * arch/ppc-linux-tdesc.h: New file.
10041         * configure.tgt (powerpc*-*-linux*): Add arch/ppc-linux-common.o.
10042         * Makefile.in (ALL_TARGET_OBS): Add arch/ppc-linux-common.o.
10043         (HFILES_NO_SRCDIR): Add arch/ppc-linux-common.h and
10044         arch/ppc-linux-tdesc.h.
10045         * ppc-linux-nat.c: Include arch/ppc-linux-common.h and
10046         arch/ppc-linux-tdesc.h.
10047         (ppc_linux_nat_target::read_description): Remove target
10048         description matching code. Fill a ppc_linux_features struct and
10049         call ppc_linux_match_description with it. Move comment about ISA
10050         2.05 to ppc-linux-common.c.
10051         * ppc-linux-tdep.c: Include arch/ppc-linux-common.h and
10052         arch/ppc-linux-tdesc.h.
10053         (ppc_linux_core_read_description): Remove target description
10054         matching code. Fill a ppc_linux_features struct and call
10055         ppc_linux_match_description with it.
10056         * ppc-linux-tdep.h (tdesc_powerpc_32l, tdesc_powerpc_64l)
10057         (tdesc_powerpc_altivec32l, tdesc_powerpc_altivec64l)
10058         (tdesc_powerpc_cell32l, tdesc_powerpc_cell64l)
10059         (tdesc_powerpc_vsx32l, tdesc_powerpc_vsx64l)
10060         (tdesc_powerpc_isa205_32l, tdesc_powerpc_isa205_64l)
10061         (tdesc_powerpc_isa205_altivec32l, tdesc_powerpc_isa205_altivec64l)
10062         (tdesc_powerpc_isa205_vsx32l, tdesc_powerpc_isa205_vsx64l)
10063         (tdesc_powerpc_e500l): Remove.
10064
10065 2018-05-22  Joel Brobecker  <brobecker@adacore.com>
10066
10067         * ada-lang.c (catch_assert_command): Pass empty string instead
10068         of NULL for excep_string argument.
10069
10070 2018-05-22  Maciej W. Rozycki  <macro@mips.com>
10071
10072         * mips-linux-nat.c (mips64_linux_register_addr): Return -1 if
10073         the width of the requested register exceeds the width of the
10074         `ptrace' data type.
10075
10076 2018-05-21  Tom Tromey  <tom@tromey.com>
10077
10078         * printcmd.c (output_command): Remove.
10079         (output_command_const): Rename to output_command.
10080         * valprint.h (output_command): Rename from output_command_const.
10081         * tracepoint.c (trace_dump_actions): Call output_command.
10082
10083 2018-05-21  Tom Tromey  <tom@tromey.com>
10084
10085         * mi/mi-cmd-catch.c (mi_cmd_catch_assert)
10086         (mi_cmd_catch_exception, mi_cmd_catch_handlers): Update.
10087         * ada-lang.h (create_ada_exception_catchpoint): Update.
10088         * ada-lang.c (struct ada_catchpoint) <excep_string>: Now a
10089         std::string.
10090         (create_excep_cond_exprs, ~ada_catchpoint)
10091         (should_stop_exception, print_one_exception)
10092         (print_mention_exception, print_recreate_exception): Update.
10093         (ada_get_next_arg): Remove.
10094         (catch_ada_exception_command_split): Use std::string.  Change type
10095         of "excep_string", "cond_string".
10096         (catch_ada_exception_command): Update.
10097         (create_ada_exception_catchpoint): Change type of excep_string.
10098         (ada_exception_sal): Remove excep_string parameter.
10099         (~ada_catchpoint): Remove.
10100
10101 2018-05-21  Tom Tromey  <tom@tromey.com>
10102
10103         * ada-lang.c (ada_collect_symbol_completion_matches): Remove
10104         cleanup.
10105
10106 2018-05-21  Tom Tromey  <tom@tromey.com>
10107
10108         * ada-lang.c (ada_exception_message_1, ada_exception_message):
10109         Return unique_xmalloc_ptr.
10110         (print_it_exception): Update.
10111
10112 2018-05-21  Tom Tromey  <tom@tromey.com>
10113
10114         * tracepoint.c (trace_dump_actions): Use std::string.
10115
10116 2018-05-21  Tom Tromey  <tom@tromey.com>
10117
10118         * symfile.c (reread_symbols): Use std::string for original_name.
10119
10120 2018-05-21  Tom Tromey  <tom@tromey.com>
10121
10122         * dwarf2read.c (dwarf2_read_debug_names): Use std::unique_ptr.
10123         (mapped_index_base): Use DISABLE_COPY_AND_ASSIGN.  Default
10124         constructor.
10125
10126 2018-05-20  Simon Marchi  <simon.marchi@polymtl.ca>
10127
10128         * common/traits.h (HAVE_IS_TRIVIALLY_COPYABLE): Rename the wrong
10129         instance to...
10130         (HAVE_IS_TRIVIALLY_CONSTRUCTIBLE): ... this.
10131         * objfiles.c (get_objfile_bfd_data): Allocate
10132         objfile_per_bfd_storage with obstack_new when allocating on
10133         obstack.
10134
10135 2018-05-20  Simon Marchi  <simon.marchi@ericsson.com>
10136
10137         * ada-lang.c (cache_symbol): Use XOBNEW and/or XOBNEWVEC and/or
10138         OBSTACK_ZALLOC.
10139         * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
10140         * hppa-tdep.c (hppa_init_objfile_priv_data): Likewise.
10141         * mdebugread.c (mdebug_build_psymtabs): Likewise.
10142         (add_pending): Likewise.
10143         (parse_symbol): Likewise.
10144         (parse_partial_symbols): Likewise.
10145         (psymtab_to_symtab_1): Likewise.
10146         (new_psymtab): Likewise.
10147         (elfmdebug_build_psymtabs): Likewise.
10148         * minsyms.c (terminate_minimal_symbol_table): Likewise.
10149         * objfiles.c (get_objfile_bfd_data): Likewise.
10150         (objfile_register_static_link): Likewise.
10151         * psymtab.c (allocate_psymtab): Likewise.
10152         * stabsread.c (read_member_functions): Likewise.
10153         * xcoffread.c (xcoff_end_psymtab): Likewise.
10154
10155 2018-05-20  Simon Marchi  <simon.marchi@ericsson.com>
10156
10157         * common/traits.h (HAVE_IS_TRIVIALLY_COPYABLE): Define if
10158         compiler supports std::is_trivially_constructible.
10159         * common/poison.h: Include obstack.h.
10160         (IsMallocable): Define to is_trivially_constructible if the
10161         compiler supports it, define to true_type otherwise.
10162         (xobnew): New.
10163         (XOBNEW): Redefine.
10164         (xobnewvec): New.
10165         (XOBNEWVEC): Redefine.
10166         * gdb_obstack.h (obstack_zalloc): New.
10167         (OBSTACK_ZALLOC): Redefine.
10168         (obstack_calloc): New.
10169         (OBSTACK_CALLOC): Redefine.
10170         (obstack_new): New.
10171         * gdbarch.sh: Include gdb_obstack in gdbarch.h.
10172         (gdbarch_obstack): New declaration in gdbarch.h, definition in
10173         gdbarch.c.
10174         (GDBARCH_OBSTACK_CALLOC, GDBARCH_OBSTACK_ZALLOC): Use
10175         obstack_calloc/obstack_zalloc.
10176         (gdbarch_obstack_zalloc): Remove.
10177         * target-descriptions.c (tdesc_data_init): Use obstack_new.
10178
10179 2018-05-19  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
10180
10181         * stack.c (backtrace_command_1): Remove useless variable int i.
10182
10183 2018-05-19  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
10184
10185         * stack.c (print_frame_info): Fix comment.
10186
10187 2018-05-18  Tom Tromey  <tom@tromey.com>
10188
10189         * dwarf2read.c (struct dwz_file): Add constructor, initializers.
10190         <dwz_bfd>: Now a gdb_bfd_ref_ptr.
10191         (~dwarf2_per_objfile): Update
10192         (dwarf2_get_dwz_file): Use new.
10193         * dwarf2read.h (struct dwarf2_per_objfile) <dwz_file>: Now a
10194         unique_ptr.
10195
10196 2018-05-18  Tom Tromey  <tom@tromey.com>
10197
10198         * dwarf2read.h (struct dwarf2_per_objfile) <dwp_file>: Now a
10199         unique_ptr.
10200         * dwarf2read.c (struct dwp_file): Add constructor and
10201         initializers.
10202         (open_and_init_dwp_file): Return a unique_ptr.
10203         (dwarf2_per_objfile, create_dwp_hash_table)
10204         (create_dwo_unit_in_dwp_v1, create_dwo_unit_in_dwp_v2)
10205         (lookup_dwo_unit_in_dwp): Update.
10206         (open_and_init_dwp_file, get_dwp_file): Update.
10207
10208 2018-05-18  Tom Tromey  <tom@tromey.com>
10209
10210         * dwarf2read.c (dwarf2_per_objfile): Update.
10211         (struct mapped_index): Add initializers.
10212         (dwarf2_read_index): Use new.
10213         (dw2_symtab_iter_init): Update.
10214         * dwarf2read.h (struct dwarf2_per_objfile) <index_table>: Now a
10215         unique_ptr.
10216
10217 2018-05-18  Simon Marchi  <simon.marchi@ericsson.com>
10218
10219         * dwarf2read.c (mapped_index) <total_size>: Remove.
10220
10221 2018-05-18  Simon Marchi  <simon.marchi@ericsson.com>
10222
10223         * unittests/format_pieces-selftests.c (test_format_specifier):
10224         Add ARI comments.
10225
10226 2018-05-18  Tom Tromey  <tom@tromey.com>
10227
10228         * c-typeprint.c (maybe_print_hole): New function.
10229         (c_print_type_struct_field_offset): Update.
10230         (c_type_print_base_struct_union): Call maybe_print_hole.
10231
10232 2018-05-17  Keith Seitz  <keiths@redhat.com>
10233
10234         * breakpoint.c (build_bpstat_chain): New function, moved from
10235         bpstat_stop_status.
10236         (bpstat_stop_status): Add optional parameter, `stop_chain'.
10237         If no stop chain is passed, call build_bpstat_chain to build it.
10238         * breakpoint.h (build_bpstat_chain): Declare.
10239         (bpstat_stop_status): Move documentation here from breakpoint.c.
10240         * infrun.c (handle_signal_stop): Before eliding inlined frames,
10241         build the stop chain and pass it to skip_inline_frames.
10242         Pass this stop chain to bpstat_stop_status.
10243         * inline-frame.c: Include breakpoint.h.
10244         (stopped_by_user_bp_inline_frame): New function.
10245         (skip_inline_frames): Add parameter `stop_chain'.
10246         Move documention to inline-frame.h.
10247         If non-NULL, use stopped_by_user_bp_inline_frame to determine
10248         whether the frame should be elided.
10249         * inline-frame.h (skip_inline_frames): Add parameter `stop_chain'.
10250         Add moved documentation and update for new parameter.
10251
10252 2018-05-17  Simon Marchi  <simon.marchi@ericsson.com>
10253
10254         PR cli/14975
10255         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
10256         unittests/format_pieces-selftests.c.
10257         * common/format.h (format_piece) <operator==>: New.
10258         (format_pieces) <operator[]>: Remove.
10259         * common/format.c (format_pieces::format_pieces): Handle \e.
10260         * unittests/format_pieces-selftests.c: New.
10261
10262 2018-05-17  Tom Tromey  <tom@tromey.com>
10263
10264         PR symtab/23010:
10265         * dwarf2read.c (load_cu, dw2_do_instantiate_symtab)
10266         (dw2_instantiate_symtab): Add skip_partial parameter.
10267         (dw2_find_last_source_symtab, dw2_map_expand_apply)
10268         (dw2_lookup_symbol, dw2_expand_symtabs_for_function)
10269         (dw2_expand_all_symtabs, dw2_expand_symtabs_with_fullname)
10270         (dw2_expand_symtabs_matching_one)
10271         (dw2_find_pc_sect_compunit_symtab)
10272         (dw2_debug_names_lookup_symbol)
10273         (dw2_debug_names_expand_symtabs_for_function): Update.
10274         (init_cutu_and_read_dies): Add skip_partial parameter.
10275         (process_psymtab_comp_unit, build_type_psymtabs_1)
10276         (process_skeletonless_type_unit, load_partial_comp_unit)
10277         (psymtab_to_symtab_1): Update.
10278         (load_full_comp_unit): Add skip_partial parameter.
10279         (process_imported_unit_die, dwarf2_read_addr_index)
10280         (follow_die_offset, dwarf2_fetch_die_loc_sect_off)
10281         (dwarf2_fetch_constant_bytes, dwarf2_fetch_die_type_sect_off)
10282         (read_signatured_type): Update.
10283
10284 2018-05-17  Simon Marchi  <simon.marchi@ericsson.com>
10285
10286         * value.c (release_value): Remove unused variable.
10287         (record_latest_value): Likewise.
10288         (access_value_history): Likewise.
10289         (preserve_values): Likewise.
10290
10291 2018-05-17  Tom Tromey  <tom@tromey.com>
10292
10293         * extension.h (struct ext_lang_type_printers) <py_type_printers>:
10294         Initialize.
10295
10296 2018-05-16  Maciej W. Rozycki  <macro@mips.com>
10297
10298         PR gdb/22286
10299         * linux-nat-trad.c (linux_nat_trad_target::fetch_register):
10300         Also handle registers whose width is not a multiple of
10301         PTRACE_TYPE_RET.
10302         (linux_nat_trad_target::store_register): Likewise.
10303
10304 2018-05-16  Tom Tromey  <tom@tromey.com>
10305
10306         * gdbcore.h (core_bfd): Redefine.
10307         * corelow.c (core_target::close): Update.
10308         (core_target_open): Update.
10309         * progspace.h (struct program_space) <cbfd>: Now a
10310         gdb_bfd_ref_ptr.
10311
10312 2018-05-16  Tom Tromey  <tom@tromey.com>
10313
10314         PR cli/19551:
10315         * symfile-add-flags.h (enum symfile_add_flags)
10316         <SYMFILE_NOT_FILENAME>: New constant.
10317         * symfile.c (read_symbols): Use SYMFILE_NOT_FILENAME.  Get
10318         objfile name from BFD.
10319         (symbol_file_add_with_addrs): Check SYMFILE_NOT_FILENAME.
10320         * minidebug.c (find_separate_debug_file_in_section): Put
10321         ".gnu_debugdata" into BFD's file name.
10322
10323 2018-05-16  Simon Marchi  <simon.marchi@ericsson.com>
10324
10325         * regcache.c (regcache_read_ftype, regcache_write_ftype):
10326         Remove.
10327
10328 2018-05-15  Tamar Christina  <tamar.christina@arm.com>
10329
10330         PR binutils/21446
10331         * aarch64-tdep.c (aarch64_analyze_prologue,
10332         aarch64_software_single_step, aarch64_displaced_step_copy_insn):
10333         Indicate not interested in errors.
10334
10335 2018-05-15  Maciej W. Rozycki  <macro@mips.com>
10336
10337         * mips-linux-nat.c (mips_linux_nat_target::fetch_registers):
10338         Supply the MIPS_ZERO_REGNUM register.
10339
10340 2018-05-15  Maciej W. Rozycki  <macro@mips.com>
10341
10342         * mips-tdep.c (mask_address_var): Make variable static.
10343
10344 2018-05-14  Tom Tromey  <tom@tromey.com>
10345
10346         * dwarf2read.c (rust_union_quirks): Clear rust_unions.
10347
10348 2018-05-11  Andrew Burgess  <andrew.burgess@embecosm.com>
10349
10350         * i387-tdep.c (i387_collect_xsave): Use FXSAVE_MXCSR_ADDR not
10351         FXSAVE_ADDR for the mxcsr register.
10352
10353 2018-05-11  Max Filippov  <jcmvbkbc@gmail.com>
10354
10355         * configure.tgt (xtensa*-*-linux*): Drop gdb_target definition.
10356
10357 2018-05-11  Pedro Alves  <palves@redhat.com>
10358
10359         * corelow.c (core_target) <core_target>: No longer inline.
10360         Initialize m_core_gdbarch, m_core_vec and build the section table
10361         here.
10362         <~core_target>: New.
10363         <core_gdbarch, get_core_register_section>: New methods.
10364         <m_core_section_table, m_core_vec, m_core_gdbarch>: New fields,
10365         factored out from ...
10366         <core_data, core_vec, core_gdbarch>: ... these deleted globals.
10367         (core_ops): Delete.
10368         (sniff_core_bfd): Add gdbarch parameter.
10369         (core_close): Delete, merged into ...
10370         (core_target::close): ... here.  Delete self.
10371         (core_close_cleanup): Delete.
10372         (core_target_open): Allocate a core_target on the heap.  Use a
10373         unique_ptr instead of a cleanup.  Bits moved into the core_target
10374         ctor.  Adjust to use core_target methods instead of globals.
10375         (get_core_register_section): Rename to ...
10376         (core_target::get_core_register_section): ... this and adjust.
10377         (struct get_core_registers_cb_data): New.
10378         (get_core_registers_cb): Use it.  Use bool.
10379         (core_target::fetch_registers, core_target::files_info)
10380         (core_target::xfer_partial, core_target::read_description)
10381         (core_target::pid_to, core_target::thread_name): Adjust to
10382         reference class fields instead of globals.
10383         * target.h (struct target_ops_deleter, target_ops_up): New.
10384
10385 2018-05-11  Pedro Alves  <palves@redhat.com>
10386
10387         * corefile.c (core_file_command): Move to corelow.c.
10388         * corelow.c (the_core_target): Delete.
10389         (core_file_command): Moved from corefile.c.  Check exec_bfd
10390         instead of the_core_target.  Use target_detach instead of calling
10391         into the_core_target directly.
10392         (maybe_say_no_core_file_now): New.
10393         (core_target::detach): Use it.
10394         (_initialize_corelow): Remove references to the_core_target.
10395         * gdbcore.h (the_core_target): Delete.
10396
10397 2018-05-11  Tom Tromey  <tromey@redhat.com>
10398             Pedro Alves  <palves@redhat.com>
10399
10400         * corefile.c (core_bfd): Remove.
10401         * gdbcore.h (core_bfd): Now a macro.
10402         * progspace.h (struct program_space) <cbfd>: New field.
10403
10404 2018-05-11  Tom Tromey  <tom@tromey.com>
10405
10406         * mdebugread.c (parse_partial_symbols, psymtab_to_symtab_1): Use
10407         gdb::def_vector.
10408
10409 2018-05-10  Tom Tromey  <tom@tromey.com>
10410
10411         * configure: Rebuild.
10412         * warning.m4 (AM_GDB_WARNINGS): Use -Wimplicit-fallthrough=3.
10413
10414 2018-05-10  Joel Brobecker  <brobecker@adacore.com>
10415
10416         PR server/23158:
10417         * regformats/regdat.sh: Adjust script, following the addition
10418         of the new expedite_regs parameter to init_target_desc.
10419
10420 2018-05-10  Omair Javaid  <omair.javaid@linaro.org>
10421     
10422         PR gdb/23127
10423         * aarch64-linux-tdep.c (aarch64_linux_init_abi): Add call to
10424         set_gdbarch_significant_addr_bit.
10425         * aarch64-tdep.c (aarch64_gdbarch_init): Remove call to
10426         set_gdbarch_significant_addr_bit.
10427         * utils.c (address_significant): Update to sign extend addr.
10428
10429 2018-05-09  Max Filippov  <jcmvbkbc@gmail.com>
10430
10431         * xtensa-linux-tdep.c (xtensa-tdep.h): New include.
10432         (xtensa_linux_init_abi): Limit tdep->num_regs by
10433         tdep->num_nopriv_regs.
10434         * xtensa-tdep.c (xtensa_derive_tdep): Calculate
10435         tdep->num_nopriv_regs and only copy it to tdep->num_regs if it's
10436         not initialized.
10437
10438 2018-05-08  Simon Marchi  <simon.marchi@ericsson.com>
10439
10440         * unittests/string_view-selftests.c: Define GNULIB_NAMESPACE.
10441
10442 2018-05-08  Andrew Burgess  <andrew.burgess@embecosm.com>
10443
10444         * common/x86-xstate.h (I387_FCTRL_INIT_VAL): New constant.
10445         (I387_MXCSR_INIT_VAL): New constant.
10446         * amd64-tdep.c (amd64_supply_xsave): Only read state from xsave
10447         buffer if it was supplied by the inferior.
10448         * i387-tdep.c (i387_supply_fsave): Use I387_MXCSR_INIT_VAL.
10449         (i387_xsave_get_clear_bv): New function.
10450         (i387_supply_xsave): Only read x87 control registers from the
10451         xsave buffer if the feature is enabled, and the state will have
10452         been written, otherwise, provide a suitable default.
10453         (i387_collect_xsave): Pre-clear all registers in xsave buffer,
10454         including x87 control registers.  Update control registers if they
10455         have changed from the default value, and mark features as enabled
10456         as required.
10457         * i387-tdep.h (i387_xsave_get_clear_bv): Declare.
10458
10459 2018-05-08  Ulrich Weigand  <uweigand@de.ibm.com>
10460
10461         * spu-tdep.c (info_spu_event_command): Fix output formatting.
10462
10463 2018-05-07  Tom Tromey  <tom@tromey.com>
10464
10465         * configure: Rebuild.
10466         * warning.m4 (AM_GDB_WARNINGS): Add -Wduplicated-cond.
10467
10468 2018-05-07  Tom Tromey  <tom@tromey.com>
10469
10470         PR tdep/20362:
10471         * arm-tdep.c (arm_record_vfp_data_proc_insn): Properly mask off D
10472         bit.  Use correct value for VDIV.
10473
10474 2018-05-04  Tom Tromey  <tom@tromey.com>
10475
10476         * configure: Rebuild.
10477         * warning.m4 (AM_GDB_WARNINGS): Add -Wimplicit-fallthrough.
10478
10479 2018-05-04  Tom Tromey  <tom@tromey.com>
10480
10481         * linux-record.c (record_linux_system_call) <case
10482         RECORD_SYS_RECVFROM>: Add "break".
10483
10484 2018-05-04  Tom Tromey  <tom@tromey.com>
10485
10486         * mi/mi-main.c (mi_cmd_trace_frame_collected) <REGISTERS_FORMAT>:
10487         Add missing "break".
10488         * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals) <NO_FRAME_FILTERS>:
10489         Add missing "break".
10490
10491 2018-05-04  Tom Tromey  <tom@tromey.com>
10492
10493         * rs6000-tdep.c (ppc_process_record_op4)
10494         (ppc_process_record_op63): Add fall-through comment.
10495
10496 2018-05-04  Tom Tromey  <tom@tromey.com>
10497
10498         * i386-tdep.c (i386_process_record): Add fall-through comment.
10499
10500 2018-05-04  Tom Tromey  <tom@tromey.com>
10501
10502         * stabsread.c (define_symbol) <case 'p'>: Add fall-through
10503         comment.
10504
10505 2018-05-04  Tom Tromey  <tom@tromey.com>
10506
10507         * riscv-tdep.c (riscv_isa_xlen): Add fall-through comment.
10508         * utils.c (can_dump_core) <LIMIT_CUR>: Add fall-through comment.
10509         * eval.c (fetch_subexp_value) <MEMORY_ERROR>: Add fall-through
10510         comment.
10511         * d-valprint.c (d_val_print) <TYPE_CODE_STRUCT>: Add fall-through
10512         comment.
10513         * coffread.c (coff_symtab_read) <C_LABEL>: Add fall-through
10514         comment.
10515
10516 2018-05-04  Tom Tromey  <tom@tromey.com>
10517
10518         * dwarf2loc.c (unimplemented): Add ATTRIBUTE_NORETURN.
10519
10520 2018-05-04  Tom Tromey  <tom@tromey.com>
10521
10522         * s390-tdep.c (s390_process_record): Fix fall-through comments.
10523         * xcoffread.c (scan_xcoff_symtab): Move comment later.
10524         * symfile.c (section_is_mapped): Fix fall-through comment.
10525         * stabsread.c (define_symbol, read_member_functions): Fix
10526         fall-through comment.
10527         * s390-linux-tdep.c (s390_process_record): Fix fall-through
10528         comment.
10529         * remote.c (remote_wait_as): Fix fall-through comment.
10530         * p-exp.y (yylex): Fix fall-through comment.
10531         * nat/x86-dregs.c (x86_length_and_rw_bits): Fix fall-through
10532         comment.
10533         * msp430-tdep.c (msp430_gdbarch_init): Fix fall-through comment.
10534         * mdebugread.c (parse_partial_symbols): Fix fall-through comment.
10535         * jv-exp.y (yylex): Fix fall-through comment.
10536         * go-exp.y (lex_one_token): Fix fall-through comment.
10537         * gdbtypes.c (get_discrete_bounds, rank_one_type): Fix
10538         fall-through comment.
10539         * f-exp.y (yylex): Fix fall-through comment.
10540         * dwarf2read.c (process_die): Fix fall-through comments.
10541         * dbxread.c (process_one_symbol): Fix fall-through comment.
10542         * d-exp.y (lex_one_token): Fix fall-through comment.
10543         * cp-name-parser.y (yylex): Fix fall-through comment.
10544         * coffread.c (coff_symtab_read): Fix fall-through comment.
10545         * c-exp.y (lex_one_token): Fix fall-through comment.
10546         * arm-tdep.c (arm_decode_miscellaneous): Fix fall-through
10547         comment.
10548         * arch/arm.c (arm_instruction_changes_pc): Fix fall-through
10549         comment.
10550
10551 2018-05-04  Tom Tromey  <tom@tromey.com>
10552
10553         PR python/22730:
10554         * NEWS: Mention gdb.execute change.
10555         * gdbcmd.h (execute_control_command): Don't declare.
10556         * python/python.c (execute_gdb_command): Use read_command_lines_1,
10557         execute_control_commands, execute_control_commands_to_string.
10558         * cli/cli-script.h (execute_control_commands)
10559         (execute_control_commands_to_string): Declare.
10560         (execute_control_command): Add from_tty parameter.
10561         * cli/cli-script.c (execute_control_commands)
10562         (execute_control_commands_to_string): New functions.
10563         (execute_user_command): Use execute_control_commands.
10564         (execute_control_command_1): Add "from_tty" parameter.  Update.
10565         (execute_control_command): Likewise.
10566
10567 2018-05-04  Tom Tromey  <tom@tromey.com>
10568
10569         PR python/22731:
10570         * NEWS: Mention that breakpoint commands are writable.
10571         * python/py-breakpoint.c (bppy_set_commands): New function.
10572         (breakpoint_object_getset) <"commands">: Use it.
10573
10574 2018-05-04  Tom Tromey  <tom@tromey.com>
10575
10576         * tracepoint.c (actions_command): Update.
10577         * mi/mi-cmd-break.c (mi_command_line_array)
10578         (mi_command_line_array_cnt, mi_command_line_array_ptr)
10579         (mi_read_next_line): Remove.
10580         (mi_cmd_break_commands): Update.
10581         * cli/cli-script.h (read_command_lines, read_command_lines_1): Use
10582         function_view.
10583         * cli/cli-script.c (get_command_line): Update.
10584         (process_next_line): Use function_view.  Constify.
10585         (recurse_read_control_structure, read_command_lines)
10586         (read_command_lines_1): Change argument types to function_view.
10587         (do_define_command, document_command): Update.
10588         * breakpoint.h (check_tracepoint_command): Don't declare.
10589         * breakpoint.c (check_tracepoint_command): Remove.
10590         (commands_command_1, create_tracepoint_from_upload): Update.
10591
10592 2018-05-04  Tom Tromey  <tom@tromey.com>
10593
10594         PR gdb/11750:
10595         * cli/cli-script.h (enum command_control_type) <define_control>:
10596         New constant.
10597         * cli/cli-script.c (multi_line_command_p): Handle define_control.
10598         (build_command_line, execute_control_command_1)
10599         (process_next_line): Likewise.
10600         (do_define_command): New function, extracted from define_command.
10601         (define_command): Use it.
10602
10603 2018-05-04  Tom Tromey  <tom@tromey.com>
10604
10605         * tracepoint.c (actions_command): Update.
10606         * cli/cli-script.h (read_command_lines): Update.
10607         * cli/cli-script.c (read_command_lines): Constify prompt_arg.
10608         (MAX_TMPBUF): Remove define.
10609         (define_command): Use string_printf.
10610         (document_command): Likewise.
10611         * breakpoint.c (commands_command_1): Update.
10612
10613 2018-05-04  Tom Tromey  <tom@tromey.com>
10614
10615         * top.c (execute_command): Update.
10616         * cli/cli-script.h (print_command_lines): Now varargs.
10617         * cli/cli-script.c (print_command_lines): Now varargs.
10618         (execute_control_command_1) <case while_control, case if_control>:
10619         Update.
10620
10621 2018-05-04  Tom Tromey  <tom@tromey.com>
10622
10623         * tracepoint.c (all_tracepoint_actions): Rename from
10624         all_tracepoint_actions_and_cleanup.  Change return type.
10625         (actions_command, encode_actions_1, encode_actions)
10626         (trace_dump_actions, tdump_command): Update.
10627         * remote.c (remote_download_command_source): Update.
10628         * python/python.c (gdbpy_eval_from_control_command)
10629         (python_command, python_interactive_command): Update.
10630         * mi/mi-cmd-break.c (mi_cmd_break_commands): Update.
10631         * guile/guile.c (guile_command)
10632         (gdbscm_eval_from_control_command, guile_command): Update.
10633         * compile/compile.c (compile_code_command)
10634         (compile_print_command, compile_to_object): Update.
10635         * cli/cli-script.h (struct command_lines_deleter): New.
10636         (counted_command_line): New typedef.
10637         (struct command_line): Add constructor, destructor.
10638         <body_list>: Remove.
10639         <body_list_0, body_list_1>: New members.
10640         (command_line_up): Remove typedef.
10641         (read_command_lines, read_command_lines_1, get_command_line):
10642         Update.
10643         (copy_command_lines): Don't declare.
10644         * cli/cli-script.c (build_command_line): Use "new".
10645         (get_command_line): Return counted_command_line.
10646         (print_command_lines, execute_user_command)
10647         (execute_control_command_1, while_command, if_command): Update.
10648         (realloc_body_list): Remove.
10649         (process_next_line, recurse_read_control_structure): Update.
10650         (read_command_lines, read_command_lines_1): Return counted_command_line.
10651         (free_command_lines): Use "delete".
10652         (copy_command_lines): Remove.
10653         (define_command, document_command, show_user_1): Update.
10654         * cli/cli-decode.h (struct cmd_list_element) <user_commands>: Now
10655         a counted_command_line.
10656         * breakpoint.h (counted_command_line): Remove typedef.
10657         (breakpoint_set_commands): Update.
10658         * breakpoint.c (check_no_tracepoint_commands)
10659         (validate_commands_for_breakpoint): Update.
10660         (breakpoint_set_commands): Change commands to be a
10661         counted_command_line.
10662         (commands_command_1, update_dprintf_command_list)
10663         (create_tracepoint_from_upload): Update.
10664
10665 2018-05-04  Tom Tromey  <tom@tromey.com>
10666
10667         * cli/cli-decode.h (cmd_list_element): New constructor.
10668         (~cmd_list_element): New destructor.
10669         (struct cmd_list_element): Add initializers.
10670         * cli/cli-decode.c (do_add_cmd): Use "new".
10671         (delete_cmd): Use "delete".
10672
10673 2018-05-04  Jan Kratochvil  <jan.kratochvil@redhat.com>
10674             Pedro Alves <palves@redhat.com>
10675
10676         PR breakpoints/19806 and support for PR external/20207.
10677         * NEWS: Mention Aarch64 watchpoint improvements.
10678         * aarch64-linux-nat.c (aarch64_linux_stopped_data_address): Fix missed
10679         watchpoints and PR external/20207 watchpoints.
10680         * nat/aarch64-linux-hw-point.c
10681         (kernel_supports_any_contiguous_range): New.
10682         (aarch64_watchpoint_offset): New.
10683         (aarch64_watchpoint_length): Support PR external/20207 watchpoints.
10684         (aarch64_point_encode_ctrl_reg): New parameter offset, new asserts.
10685         (aarch64_point_is_aligned): Support PR external/20207 watchpoints.
10686         (aarch64_align_watchpoint): New parameters aligned_offset_p and
10687         next_addr_orig_p.  Support PR external/20207 watchpoints.
10688         (aarch64_downgrade_regs): New.
10689         (aarch64_dr_state_insert_one_point): New parameters offset and
10690         addr_orig.
10691         (aarch64_dr_state_remove_one_point): Likewise.
10692         (aarch64_handle_breakpoint): Update caller.
10693         (aarch64_handle_aligned_watchpoint): Likewise.
10694         (aarch64_handle_unaligned_watchpoint): Support addr_orig and
10695         aligned_offset.
10696         (aarch64_linux_set_debug_regs): Remove const from state.  Call
10697         aarch64_downgrade_regs.
10698         (aarch64_show_debug_reg_state): Print also dr_addr_orig_wp.
10699         * nat/aarch64-linux-hw-point.h (DR_CONTROL_LENGTH): Rename to ...
10700         (DR_CONTROL_MASK): ... this.
10701         (struct aarch64_debug_reg_state): New field dr_addr_orig_wp.
10702         (unsigned int aarch64_watchpoint_offset): New prototype.
10703         (aarch64_linux_set_debug_regs): Remove const from state.
10704         * utils.c (align_up, align_down): Move to ...
10705         * common/common-utils.c (align_up, align_down): ... here.
10706         * utils.h (align_up, align_down): Move to ...
10707         * common/common-utils.h (align_up, align_down): ... here.
10708
10709 2018-05-04  Joel Brobecker  <brobecker@adacore.com>
10710
10711         * sparc-tdep.c (sparc_structure_return_p): Re-implement to
10712         match the ABI as summarized in GCC's gcc/config/sparc/sparc.c.
10713         (sparc_arg_by_memory_p): Renamed from sparc_arg_on_registers_p.
10714         Re-implement to match the ABI as summarized in GCC's
10715         gcc/config/sparc/sparc.c.  All callers updated.
10716         (sparc32_store_arguments): Remove assertion.
10717
10718 2018-05-04  Tom Tromey  <tom@tromey.com>
10719
10720         * printcmd.c: Don't include tui.h.
10721         (decode_format): Use skip_spaces.
10722
10723 2018-05-04  Tom Tromey  <tom@tromey.com>
10724
10725         PR gdb/22619:
10726         * printcmd.c (last_count): New global.
10727         (x_command): Use saved count when repeating.
10728
10729 2018-05-04  Tom Tromey  <tom@tromey.com>
10730
10731         * nto-procfs.c (do_closedir_cleanup): Remove.
10732         (procfs_pidlist): Use gdb_dir_up.
10733         * procfs.c (do_closedir_cleanup): Remove.
10734         (proc_update_threads): Use gdb_dir_up.
10735         * common/filestuff.h (struct gdb_dir_deleter): New.
10736         (gdb_dir_up): New typedef.
10737
10738 2018-05-04  Tom Tromey  <tom@tromey.com>
10739
10740         * ada-lang.c (print_mention_exception): Use std::string.
10741
10742 2018-05-04  Tom Tromey  <tom@tromey.com>
10743
10744         * ada-lang.c (create_excep_cond_exprs): Update.
10745         (ada_exception_catchpoint_cond_string): Use std::string.
10746
10747 2018-05-04  Tom Tromey  <tom@tromey.com>
10748
10749         * ada-lang.c (xget_renaming_scope): Return std::string.
10750         (old_renaming_is_invisible): Update.
10751
10752 2018-05-04  Tom Tromey  <tom@tromey.com>
10753
10754         * bfd-target.c (target_bfd::m_bfd): Now a gdb_bfd_ref_ptr.
10755         (target_bfd::target_bfd, target_bfd::~target_bfd): Update.
10756
10757 2018-05-04  Ulrich Weigand  <uweigand@de.ibm.com>
10758
10759         * spu-linux-nat.c (spu_linux_nat_target::wait): Fix syntax error.
10760
10761 2018-05-04  Tom Tromey  <tom@tromey.com>
10762
10763         * remote.c (remote_query_supported_append): Change type.
10764         (remote_check_symbols): Update.
10765
10766 2018-05-04  Paul Pluzhnikov  <ppluzhnikov@google.com>
10767
10768         PR gdb/11420
10769         * configure.ac: Prepend libpython.
10770         * python/python-config.py: Likewise.
10771         * configure: Regenerate.
10772
10773 2018-05-03  Simon Marchi  <simon.marchi@ericsson.com>
10774
10775         * Makefile.in (%.c: %.l): Use -t instead of --stdout.
10776
10777 2018-05-03  Pedro Alves  <palves@redhat.com>
10778
10779         * s390-linux-nat.c
10780         (s390_linux_nat_target::have_continuable_watchpoint): Mark with
10781         override.  Write 'true' instead of '1'.
10782         (s390_linux_nat_target::watchpoint_addr_within_range): Remove
10783         declaration.
10784
10785 2018-05-02  Pedro Alves  <palves@redhat.com>
10786
10787         * aarch64-fbsd-nat.c (_initialize_aarch64_fbsd_nat): Use
10788         add_inf_child_target.
10789         * aarch64-linux-nat.c (_initialize_aarch64_linux_nat): Use
10790         add_inf_child_target.
10791         * aix-thread.c (aix_thread_target_info): New.
10792         (aix_thread_target) <shortname, longname, doc>: Delete.
10793         <info>: New.
10794         * alpha-bsd-nat.c (_initialize_alphabsd_nat): Use
10795         add_inf_child_target.
10796         * alpha-linux-nat.c (_initialize_alpha_linux_nat): Use
10797         add_inf_child_target.
10798         * amd64-fbsd-nat.c (_initialize_amd64fbsd_nat): Use
10799         add_inf_child_target.
10800         * amd64-linux-nat.c (_initialize_amd64_linux_nat): Use
10801         add_inf_child_target.
10802         * amd64-nbsd-nat.c (_initialize_amd64nbsd_nat): Use
10803         add_inf_child_target.
10804         * amd64-obsd-nat.c (_initialize_amd64obsd_nat): Use
10805         add_inf_child_target.
10806         * arm-fbsd-nat.c (_initialize_arm_fbsd_nat): Use
10807         add_inf_child_target.
10808         * arm-linux-nat.c (_initialize_arm_linux_nat): Use
10809         add_inf_child_target.
10810         * arm-nbsd-nat.c (_initialize_arm_netbsd_nat): Use
10811         add_inf_child_target.
10812         * bfd-target.c (target_bfd_target_info): New.
10813         (target_bfd) <shortname, longname, doc>: Delete.
10814         <info>: New.
10815         * bsd-kvm.c (bsd_kvm_target_info): New.
10816         (bsd_kvm_target) <shortname, longname, doc>: Delete.
10817         <info>: New.
10818         (bsd_kvm_target::open): Rename to ...
10819         (bsd_kvm_target_open): ... this.  Adjust.
10820         * bsd-uthread.c (bsd_uthread_target_info): New.
10821         (bsd_uthread_target) <shortname, longname, doc>: Delete.
10822         <info>: New.
10823         * corefile.c (core_file_command): Adjust.
10824         * corelow.c (core_target_info): New.
10825         (core_target) <shortname, longname, doc>: Delete.
10826         <info>: New.
10827         (core_target::open): Rename to ...
10828         (core_target_open): ... this.  Adjust.
10829         * ctf.c (ctf_target_info): New.
10830         (ctf_target) <shortname, longname, doc>: Delete.
10831         <info>: New.
10832         (ctf_target::open): Rename to ...
10833         (ctf_target_open): ... this.
10834         (_initialize_ctf): Adjust.
10835         * exec.c (exec_target_info): New.
10836         (exec_target) <shortname, longname, doc>: Delete.
10837         <info>: New.
10838         (exec_target::open): Rename to ...
10839         (exec_target_open): ... this.
10840         * gdbcore.h (core_target_open): Declare.
10841         * go32-nat.c (_initialize_go32_nat): Use add_inf_child_target.
10842         * hppa-linux-nat.c (_initialize_hppa_linux_nat): Use
10843         add_inf_child_target.
10844         * hppa-nbsd-nat.c (_initialize_hppanbsd_nat): Use
10845         add_inf_child_target.
10846         * hppa-obsd-nat.c (_initialize_hppaobsd_nat): Use
10847         add_inf_child_target.
10848         * i386-darwin-nat.c (_initialize_i386_darwin_nat): Use
10849         add_inf_child_target.
10850         * i386-fbsd-nat.c (_initialize_i386fbsd_nat): Use
10851         add_inf_child_target.
10852         * i386-gnu-nat.c (_initialize_i386gnu_nat): Use
10853         add_inf_child_target.
10854         * i386-linux-nat.c (_initialize_i386_linux_nat): Use
10855         add_inf_child_target.
10856         * i386-nbsd-nat.c (_initialize_i386nbsd_nat): Use
10857         add_inf_child_target.
10858         * i386-obsd-nat.c (_initialize_i386obsd_nat): Use
10859         add_inf_child_target.
10860         * ia64-linux-nat.c (_initialize_ia64_linux_nat): Use
10861         add_inf_child_target.
10862         * inf-child.c (inf_child_target_info): New.
10863         (inf_child_target::info): New.
10864         (inf_child_open_target): Remove 'target' parameter.  Use
10865         get_native_target instead.
10866         (inf_child_target::open): Delete.
10867         (add_inf_child_target): New.
10868         * inf-child.h (inf_child_target) <shortname, longname, doc, open>:
10869         Delete.
10870         <info>: New.
10871         (add_inf_child_target): Declare.
10872         (inf_child_open_target): Declare.
10873         * linux-thread-db.c (thread_db_target_info): New.
10874         (thread_db_target) <shortname, longname, doc>: Delete.
10875         <info>: New.
10876         * m32r-linux-nat.c (_initialize_m32r_linux_nat): Use
10877         add_inf_child_target.
10878         * m68k-bsd-nat.c (_initialize_m68kbsd_nat): Use
10879         add_inf_child_target.
10880         * m68k-linux-nat.c (_initialize_m68k_linux_nat): Use
10881         add_inf_child_target.
10882         * m88k-bsd-nat.c (_initialize_m88kbsd_nat): Use
10883         add_inf_child_target.
10884         * make-target-delegates (print_class): Adjust.
10885         * mips-fbsd-nat.c (_initialize_mips_fbsd_nat): Use
10886         add_inf_child_target.
10887         * mips-linux-nat.c (_initialize_mips_linux_nat): Use
10888         add_inf_child_target.
10889         * mips-nbsd-nat.c (_initialize_mipsnbsd_nat): Use
10890         add_inf_child_target.
10891         * mips64-obsd-nat.c (_initialize_mips64obsd_nat): Use
10892         add_inf_child_target.
10893         * nto-procfs.c (nto_native_target_info): New.
10894         (nto_procfs_target_native) <shortname, longname, doc>:
10895         Delete.
10896         <info>: New.
10897         (nto_procfs_target_info): New.
10898         (nto_procfs_target_procfs) <shortname, longname, doc>:
10899         Delete.
10900         <info>: New.
10901         (init_procfs_targets): Adjust.
10902         * ppc-fbsd-nat.c (_initialize_ppcfbsd_nat): Use
10903         add_inf_child_target.
10904         * ppc-linux-nat.c (_initialize_ppc_linux_nat): Use
10905         add_inf_child_target.
10906         * ppc-nbsd-nat.c (_initialize_ppcnbsd_nat): Use
10907         add_inf_child_target.
10908         * ppc-obsd-nat.c (_initialize_ppcobsd_nat): Use
10909         add_inf_child_target.
10910         * ravenscar-thread.c (ravenscar_target_info): New.
10911         (ravenscar_thread_target) <shortname, longname, doc>:
10912         Delete.
10913         <info>: New.
10914         * record-btrace.c (record_btrace_target_info):
10915         (record_btrace_target) <shortname, longname, doc>: Delete.
10916         <info>: New.
10917         (record_btrace_target::open): Rename to ...
10918         (record_btrace_target_open): ... this.  Adjust.
10919         * record-full.c (record_longname, record_doc): New.
10920         (record_full_base_target) <shortname, longname, doc>: Delete.
10921         <info>: New.
10922         (record_full_target_info): New.
10923         (record_full_target): <shortname>: Delete.
10924         <info>: New.
10925         (record_full_core_open_1, record_full_open_1): Update comments.
10926         (record_full_base_target::open): Rename to ...
10927         (record_full_open): ... this.
10928         (cmd_record_full_restore): Update.
10929         (_initialize_record_full): Update.
10930         * remote-sim.c (remote_sim_target_info): New.
10931         (gdbsim_target) <shortname, longname, doc>: Delete.
10932         <info>: New.
10933         (gdbsim_target::open): Rename to ...
10934         (gdbsim_target_open): ... this.
10935         (_initialize_remote_sim): Adjust.
10936         * remote.c (remote_doc): New.
10937         (remote_target_info): New.
10938         (remote_target) <shortname, longname, doc>: Delete.
10939         <info>: New.
10940         (extended_remote_target_info): New.
10941         (extended_remote_target) <shortname, longname, doc>: Delete.
10942         <info>: New.
10943         (remote_target::open_1): Make static.  Adjust.
10944         * rs6000-nat.c (_initialize_rs6000_nat): Use add_inf_child_target.
10945         * s390-linux-nat.c (_initialize_s390_nat): Use
10946         add_inf_child_target.
10947         * sh-nbsd-nat.c (_initialize_shnbsd_nat): Use
10948         add_inf_child_target.
10949         * sol-thread.c (thread_db_target_info): New.
10950         (sol_thread_target) <shortname, longname, doc>: Delete.
10951         <info>: New.
10952         * sparc-linux-nat.c (_initialize_sparc_linux_nat): Use
10953         add_inf_child_target.
10954         * sparc-nbsd-nat.c (_initialize_sparcnbsd_nat): Use
10955         add_inf_child_target.
10956         * sparc64-fbsd-nat.c (_initialize_sparc64fbsd_nat): Use
10957         add_inf_child_target.
10958         * sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Use
10959         add_inf_child_target.
10960         * sparc64-nbsd-nat.c (_initialize_sparc64nbsd_nat): Use
10961         add_inf_child_target.
10962         * sparc64-obsd-nat.c (_initialize_sparc64obsd_nat): Use
10963         add_inf_child_target.
10964         * spu-linux-nat.c (_initialize_spu_nat): Use
10965         add_inf_child_target.
10966         * spu-multiarch.c (spu_multiarch_target_info): New.
10967         (spu_multiarch_target) <shortname, longname, doc>: Delete.
10968         <info>: New.
10969         * target-delegates.c: Regenerate.
10970         * target.c: Include <unordered_map>.
10971         (target_ops_p): Delete.
10972         (DEF_VEC_P(target_ops_p)): Delete.
10973         (target_factories): New.
10974         (test_target_info): New.
10975         (test_target_ops::info): New.
10976         (open_target): Adjust to use target_factories.
10977         (add_target_with_completer): Rename to ...
10978         (add_target): ... this.  Change prototype.  Register target_info
10979         and open callback in target_factories.  Register target_info in
10980         command context instead of target_ops.
10981         (add_target): Delete old implementation.
10982         (add_deprecated_target_alias): Change prototype.  Adjust.
10983         (the_native_target): New.
10984         (set_native_target, get_native_target): New.
10985         (find_default_run_target): Use the_native_target.
10986         (find_attach_target, find_run_target): Simplify.
10987         (target_ops::open): Delete.
10988         (dummy_target_info): New.
10989         (dummy_target::shortname, dummy_target::longname)
10990         (dummy_target::doc): Delete.
10991         (dummy_target::info): New.
10992         (debug_target::shortname, debug_target::longname)
10993         (debug_target::doc): Delete.
10994         (debug_target::info): New.
10995         * target.h (struct target_info): New.
10996         (target_ops::~target_ops): Add comment.
10997         (target_ops::info): New.
10998         (target_ops::shortname, target_ops::longname, target_ops::doc): No
10999         longer virtual.  Implement in terms of target_info.
11000         (set_native_target, get_native_target): Declare.
11001         (target_open_ftype): New.
11002         (add_target, add_target_with_completer)
11003         (add_deprecated_target_alias): Change prototype.
11004         (test_target) <shortname, longname, doc>: Delete.
11005         <info>: New.
11006         * tilegx-linux-nat.c (_initialize_tile_linux_nat): Use
11007         add_inf_child_target.
11008         * tracefile-tfile.c (tfile_target_info): New.
11009         (tfile_target) <shortname, longname, doc>: Delete.
11010         <info>: New.
11011         (tfile_target::open): Rename to ...
11012         (tfile_target_open): ... this.
11013         (_initialize_tracefile_tfile): Adjust.
11014         * vax-bsd-nat.c (_initialize_vaxbsd_nat): Use
11015         add_inf_child_target.
11016         * windows-nat.c (_initialize_windows_nat): Use
11017         add_inf_child_target.
11018         * xtensa-linux-nat.c (_initialize_xtensa_linux_nat): Use
11019         add_inf_child_target.
11020
11021 2018-05-02  Pedro Alves  <palves@redhat.com>
11022
11023         * linux-nat.h (linux_nat_target) <low_new_thread,
11024         low_delete_thread, low_new_fork, low_forget_process,
11025         low_prepare_to_resume, low_siginfo_fixup, low_status_is_event>:
11026         New virtual methods.
11027         (linux_nat_set_new_thread, linux_nat_set_delete_thread)
11028         (linux_nat_new_fork_ftype, linux_nat_set_new_fork)
11029         (linux_nat_forget_process_ftype, linux_nat_set_forget_process)
11030         (linux_nat_forget_process, linux_nat_set_siginfo_fixup)
11031         (linux_nat_set_prepare_to_resume, linux_nat_set_status_is_event):
11032         Delete.
11033         * linux-fork.c (delete_fork): Adjust to call low method.
11034         * linux-nat.c (linux_nat_new_thread, linux_nat_delete_thread)
11035         (linux_nat_new_fork, linux_nat_forget_process_hook)
11036         (linux_nat_prepare_to_resume, linux_nat_siginfo_fixup)
11037         (linux_nat_status_is_event):
11038         (linux_nat_target::follow_fork, lwp_free, add_lwp, detach_one_lwp)
11039         (linux_resume_one_lwp_throw, linux_handle_extended_wait): Adjust
11040         to call low method.
11041         (sigtrap_is_event): Rename to ...
11042         (linux_nat_target::low_status_is_event): ... this.
11043         (linux_nat_set_status_is_event): Delete.
11044         (save_stop_reason, linux_nat_wait_1)
11045         (linux_nat_target::mourn_inferior, siginfo_fixup): Adjust to call
11046         low methods.
11047         (linux_nat_set_new_thread, linux_nat_set_delete_thread)
11048         (linux_nat_set_new_fork, linux_nat_set_forget_process)
11049         (linux_nat_forget_process, linux_nat_set_siginfo_fixup)
11050         (linux_nat_set_prepare_to_resume): Delete.
11051         * aarch64-linux-nat.c: All linux_nat_set_* callbacks converted to
11052         low virtual methods.
11053         * amd64-linux-nat.c: Likewise.
11054         * arm-linux-nat.c: Likewise.
11055         * i386-linux-nat.c: Likewise.
11056         * ia64-linux-nat.c: Likewise.
11057         * mips-linux-nat.c: Likewise.
11058         * ppc-linux-nat.c: Likewise.
11059         * s390-linux-nat.c: Likewise.
11060         * sparc64-linux-nat.c: Likewise.
11061         * x86-linux-nat.c: Likewise.
11062         * x86-linux-nat.h: Include "nat/x86-linux.h".
11063         (x86_linux_nat_target) <low_new_fork, low_forget_process,
11064         low_prepare_to_resume, low_new_thread, low_delete_thread>:
11065         Override methods.
11066
11067 2018-05-02  Pedro Alves  <palves@redhat.com>
11068
11069         * target.h (target_ops)
11070         <stopped_by_sw_breakpoint, supports_stopped_by_sw_breakpoint,
11071         stopped_by_hw_breakpoint, supports_stopped_by_hw_breakpoint,
11072         stopped_by_watchpoint, have_continuable_watchpoint,
11073         stopped_data_address, watchpoint_addr_within_range,
11074         can_accel_watchpoint_condition, can_run, thread_alive,
11075         has_all_memory, has_memory, has_stack, has_registers,
11076         has_execution, can_async_p, is_async_p, supports_non_stop,
11077         always_non_stop_p, can_execute_reverse, supports_multi_process,
11078         supports_enable_disable_tracepoint,
11079         supports_disable_randomization, supports_string_tracing,
11080         supports_evaluation_of_breakpoint_conditions,
11081         can_run_breakpoint_commands, filesystem_is_local,
11082         can_download_tracepoint, get_trace_state_variable_value,
11083         set_trace_notes, get_tib_address, use_agent, can_use_agent,
11084         record_is_replaying, record_will_replay,
11085         augmented_libraries_svr4_read>: Adjust to return bool.
11086         * aarch64-linux-nat.c: All implementations adjusted.
11087         * aix-thread.c: All implementations adjusted.
11088         * arm-linux-nat.c: All implementations adjusted.
11089         * breakpoint.c: All implementations adjusted.
11090         * bsd-kvm.c: All implementations adjusted.
11091         * bsd-uthread.c: All implementations adjusted.
11092         * corelow.c: All implementations adjusted.
11093         * ctf.c: All implementations adjusted.
11094         * darwin-nat.c: All implementations adjusted.
11095         * darwin-nat.h: All implementations adjusted.
11096         * exec.c: All implementations adjusted.
11097         * fbsd-nat.c: All implementations adjusted.
11098         * fbsd-nat.h: All implementations adjusted.
11099         * gnu-nat.c: All implementations adjusted.
11100         * gnu-nat.h: All implementations adjusted.
11101         * go32-nat.c: All implementations adjusted.
11102         * ia64-linux-nat.c: All implementations adjusted.
11103         * inf-child.c: All implementations adjusted.
11104         * inf-child.h: All implementations adjusted.
11105         * inf-ptrace.c: All implementations adjusted.
11106         * inf-ptrace.h: All implementations adjusted.
11107         * linux-nat.c: All implementations adjusted.
11108         * linux-nat.h: All implementations adjusted.
11109         * mips-linux-nat.c: All implementations adjusted.
11110         * nto-procfs.c: All implementations adjusted.
11111         * ppc-linux-nat.c: All implementations adjusted.
11112         * procfs.c: All implementations adjusted.
11113         * ravenscar-thread.c: All implementations adjusted.
11114         * record-btrace.c: All implementations adjusted.
11115         * record-full.c: All implementations adjusted.
11116         * remote-sim.c: All implementations adjusted.
11117         * remote.c: All implementations adjusted.
11118         * s390-linux-nat.c: All implementations adjusted.
11119         * sol-thread.c: All implementations adjusted.
11120         * spu-multiarch.c: All implementations adjusted.
11121         * target-delegates.c: All implementations adjusted.
11122         * target.c: All implementations adjusted.
11123         * target.h: All implementations adjusted.
11124         * tracefile-tfile.c: All implementations adjusted.
11125         * tracefile.c: All implementations adjusted.
11126         * tracefile.h: All implementations adjusted.
11127         * windows-nat.c: All implementations adjusted.
11128         * x86-linux-nat.h: All implementations adjusted.
11129         * x86-nat.h: All implementations adjusted.
11130
11131 2018-05-02  Pedro Alves  <palves@redhat.com>
11132
11133         * make-target-delegates (scan_target_h): Don't trim lines here.
11134         Replace sequences of tabs and/or whitespace with a single
11135         whitespace.
11136         (top level, parsing methods): Trim each line before processing it
11137         here.
11138
11139 2018-05-02  Pedro Alves  <palves@redhat.com>
11140             John Baldwin  <jhb@freebsd.org>
11141
11142         * target.h (enum strata) <debug_stratum>: New.
11143         (struct target_ops) <all delegation methods>: Replace by C++
11144         virtual methods, and drop "to_" prefix.  All references updated
11145         throughout.
11146         <to_shortname, to_longname, to_doc, to_data,
11147         to_have_steppable_watchpoint, to_have_continuable_watchpoint,
11148         to_has_thread_control, to_attach_no_wait>: Delete, replaced by
11149         virtual methods.  All references updated throughout.
11150         <can_attach, supports_terminal_ours, can_create_inferior,
11151         get_thread_control_capabilities, attach_no_wait>: New
11152         virtual methods.
11153         <insert_breakpoint, remove_breakpoint>: Now
11154         TARGET_DEFAULT_NORETURN methods.
11155         <info_proc>: Now returns bool.
11156         <to_magic>: Delete.
11157         (OPS_MAGIC): Delete.
11158         (current_target): Delete.  All references replaced by references
11159         to ...
11160         (target_stack): ... this.  New.
11161         (target_shortname, target_longname): Adjust.
11162         (target_can_run): Now a function declaration.
11163         (default_child_has_all_memory, default_child_has_memory)
11164         (default_child_has_stack, default_child_has_registers)
11165         (default_child_has_execution): Remove target_ops parameter.
11166         (complete_target_initialization): Delete.
11167         (memory_breakpoint_target): New template class.
11168         (test_target_ops): Refactor as a C++ class with virtual methods.
11169         * make-target-delegates (NAME_PART): Tighten.
11170         (POINTER_PART, CP_SYMBOL): New.
11171         (SIMPLE_RETURN_PART): Reimplement.
11172         (VEC_RETURN_PART): Expect less.
11173         (RETURN_PART, VIRTUAL_PART): New.
11174         (METHOD): Adjust to C++ virtual methods.
11175         (scan_target_h): Remove reference to C99.
11176         (dname): Output "target_ops::" prefix.
11177         (write_function_header): Adjust to output a C++ class method.
11178         (write_declaration): New.
11179         (write_delegator): Adjust to output a C++ class method.
11180         (tdname): Output "dummy_target::" prefix.
11181         (write_tdefault, write_debugmethod): Adjust to output a C++ class
11182         method.
11183         (tdefault_names, debug_names): Delete.
11184         (return_types, tdefaults, styles, argtypes_array): New.
11185         (top level): All methods are delegators.
11186         (print_class): New.
11187         (top level): Print dummy_target and debug_target classes.
11188         * target-delegates.c: Regenerate.
11189         * target-debug.h (target_debug_print_enum_info_proc_what)
11190         (target_debug_print_thread_control_capabilities)
11191         (target_debug_print_thread_info_p): New.
11192         * target.c (dummy_target): Delete.
11193         (the_dummy_target, the_debug_target): New.
11194         (target_stack): Now extern.
11195         (set_targetdebug): Push/unpush debug target.
11196         (default_child_has_all_memory, default_child_has_memory)
11197         (default_child_has_stack, default_child_has_registers)
11198         (default_child_has_execution): Remove target_ops parameter.
11199         (complete_target_initialization): Delete.
11200         (add_target_with_completer): No longer call
11201         complete_target_initialization.
11202         (target_supports_terminal_ours): Use regular delegation.
11203         (update_current_target): Delete.
11204         (push_target): No longer check magic number.  Don't call
11205         update_current_target.
11206         (unpush_target): Don't call update_current_target.
11207         (target_is_pushed): No longer check magic number.
11208         (target_require_runnable): Skip for all stratums over
11209         process_stratum.
11210         (target_ops::info_proc): New.
11211         (target_info_proc): Use find_target_at and
11212         find_default_run_target.
11213         (target_supports_disable_randomization): Use regular delegation.
11214         (target_get_osdata): Use find_target_at.
11215         (target_ops::open, target_ops::close, target_ops::can_attach)
11216         (target_ops::attach, target_ops::can_create_inferior)
11217         (target_ops::create_inferior, target_ops::can_run)
11218         (target_can_run): New.
11219         (default_fileio_target): Use regular delegation.
11220         (target_ops::fileio_open, target_ops::fileio_pwrite)
11221         (target_ops::fileio_pread, target_ops::fileio_fstat)
11222         (target_ops::fileio_close, target_ops::fileio_unlink)
11223         (target_ops::fileio_readlink): New.
11224         (target_fileio_open_1, target_fileio_unlink)
11225         (target_fileio_readlink): Always call the target method.  Handle
11226         FILEIO_ENOSYS.
11227         (return_zero, return_zero_has_execution): Delete.
11228         (init_dummy_target): Delete.
11229         (dummy_target::dummy_target, dummy_target::shortname)
11230         (dummy_target::longname, dummy_target::doc)
11231         (debug_target::debug_target, debug_target::shortname)
11232         (debug_target::longname, debug_target::doc): New.
11233         (target_supports_delete_record): Use regular delegation.
11234         (setup_target_debug): Delete.
11235         (maintenance_print_target_stack): Skip debug_stratum.
11236         (initialize_targets): Instantiate the_dummy_target and
11237         the_debug_target.
11238         * auxv.c (target_auxv_parse): Remove 'ops' parameter.  Adjust to
11239         use target_stack.
11240         (target_auxv_search, fprint_target_auxv): Adjust.
11241         (info_auxv_command): Adjust to use target_stack.
11242         * auxv.h (target_auxv_parse): Remove 'ops' parameter.
11243         * exceptions.c (print_flush): Handle a NULL target_stack.
11244         * regcache.c (target_ops_no_register): Refactor as class with
11245         virtual methods.
11246
11247         * exec.c (exec_target): New class.
11248         (exec_ops): Now an exec_target.
11249         (exec_open, exec_close_1, exec_get_section_table)
11250         (exec_xfer_partial, exec_files_info, exec_has_memory)
11251         (exec_make_note_section): Refactor as exec_target methods.
11252         (exec_file_clear, ignore, exec_remove_breakpoint, init_exec_ops):
11253         Delete.
11254         (exec_target::find_memory_regions): New.
11255         (_initialize_exec): Don't call init_exec_ops.
11256         * gdbcore.h (exec_file_clear): Delete.
11257
11258         * corefile.c (core_target): Delete.
11259         (core_file_command): Adjust.
11260         * corelow.c (core_target): New class.
11261         (the_core_target): New.
11262         (core_close): Remove target_ops parameter.
11263         (core_close_cleanup): Adjust.
11264         (core_target::close): New.
11265         (core_open, core_detach, get_core_registers, core_files_info)
11266         (core_xfer_partial, core_thread_alive, core_read_description)
11267         (core_pid_to_str, core_thread_name, core_has_memory)
11268         (core_has_stack, core_has_registers, core_info_proc): Rework as
11269         core_target methods.
11270         (ignore, core_remove_breakpoint, init_core_ops): Delete.
11271         (_initialize_corelow): Initialize the_core_target.
11272         * gdbcore.h (core_target): Delete.
11273         (the_core_target): New.
11274
11275         * ctf.c: (ctf_target): New class.
11276         (ctf_ops): Now a ctf_target.
11277         (ctf_open, ctf_close, ctf_files_info, ctf_fetch_registers)
11278         (ctf_xfer_partial, ctf_get_trace_state_variable_value)
11279         (ctf_trace_find, ctf_traceframe_info): Refactor as ctf_target
11280         methods.
11281         (init_ctf_ops): Delete.
11282         (_initialize_ctf): Don't call it.
11283         * tracefile-tfile.c (tfile_target): New class.
11284         (tfile_ops): Now a tfile_target.
11285         (tfile_open, tfile_close, tfile_files_info)
11286         (tfile_get_tracepoint_status, tfile_trace_find)
11287         (tfile_fetch_registers, tfile_xfer_partial)
11288         (tfile_get_trace_state_variable_value, tfile_traceframe_info):
11289         Refactor as tfile_target methods.
11290         (tfile_xfer_partial_features): Remove target_ops parameter.
11291         (init_tfile_ops): Delete.
11292         (_initialize_tracefile_tfile): Don't call it.
11293         * tracefile.c (tracefile_has_all_memory, tracefile_has_memory)
11294         (tracefile_has_stack, tracefile_has_registers)
11295         (tracefile_thread_alive, tracefile_get_trace_status): Refactor as
11296         tracefile_target methods.
11297         (init_tracefile_ops): Delete.
11298         (tracefile_target::tracefile_target): New.
11299         * tracefile.h: Include "target.h".
11300         (tracefile_target): New class.
11301         (init_tracefile_ops): Delete.
11302
11303         * spu-multiarch.c (spu_multiarch_target): New class.
11304         (spu_ops): Now a spu_multiarch_target.
11305         (spu_thread_architecture, spu_region_ok_for_hw_watchpoint)
11306         (spu_fetch_registers, spu_store_registers, spu_xfer_partial)
11307         (spu_search_memory, spu_mourn_inferior): Refactor as
11308         spu_multiarch_target methods.
11309         (init_spu_ops): Delete.
11310         (_initialize_spu_multiarch): Remove references to init_spu_ops,
11311         complete_target_initialization.
11312
11313         * ravenscar-thread.c (ravenscar_thread_target): New class.
11314         (ravenscar_ops): Now a ravenscar_thread_target.
11315         (ravenscar_resume, ravenscar_wait, ravenscar_update_thread_list)
11316         (ravenscar_thread_alive, ravenscar_pid_to_str)
11317         (ravenscar_fetch_registers, ravenscar_store_registers)
11318         (ravenscar_prepare_to_store, ravenscar_stopped_by_sw_breakpoint)
11319         (ravenscar_stopped_by_hw_breakpoint)
11320         (ravenscar_stopped_by_watchpoint, ravenscar_stopped_data_address)
11321         (ravenscar_mourn_inferior, ravenscar_core_of_thread)
11322         (ravenscar_get_ada_task_ptid): Refactor as ravenscar_thread_target
11323         methods.
11324         (init_ravenscar_thread_ops): Delete.
11325         (_initialize_ravenscar): Remove references to
11326         init_ravenscar_thread_ops and complete_target_initialization.
11327
11328         * bsd-uthread.c (bsd_uthread_ops_hack): Delete.
11329         (bsd_uthread_target): New class.
11330         (bsd_uthread_ops): Now a bsd_uthread_target.
11331         (bsd_uthread_activate): Adjust to refer to bsd_uthread_ops.
11332         (bsd_uthread_close, bsd_uthread_mourn_inferior)
11333         (bsd_uthread_fetch_registers, bsd_uthread_store_registers)
11334         (bsd_uthread_wait, bsd_uthread_resume, bsd_uthread_thread_alive)
11335         (bsd_uthread_update_thread_list, bsd_uthread_extra_thread_info)
11336         (bsd_uthread_pid_to_str): Refactor as bsd_uthread_target methods.
11337         (bsd_uthread_target): Delete function.
11338         (_initialize_bsd_uthread): Remove reference to
11339         complete_target_initialization.
11340
11341         * bfd-target.c (target_bfd_data): Delete.  Fields folded into ...
11342         (target_bfd): ... this new class.
11343         (target_bfd_xfer_partial, target_bfd_get_section_table)
11344         (target_bfd_close): Refactor as target_bfd methods.
11345         (target_bfd::~target_bfd): New.
11346         (target_bfd_reopen): Adjust.
11347         (target_bfd::close): New.
11348
11349         * record-btrace.c (record_btrace_target): New class.
11350         (record_btrace_ops): Now a record_btrace_target.
11351         (record_btrace_open, record_btrace_stop_recording)
11352         (record_btrace_disconnect, record_btrace_close)
11353         (record_btrace_async, record_btrace_info)
11354         (record_btrace_insn_history, record_btrace_insn_history_range)
11355         (record_btrace_insn_history_from, record_btrace_call_history)
11356         (record_btrace_call_history_range)
11357         (record_btrace_call_history_from, record_btrace_record_method)
11358         (record_btrace_is_replaying, record_btrace_will_replay)
11359         (record_btrace_xfer_partial, record_btrace_insert_breakpoint)
11360         (record_btrace_remove_breakpoint, record_btrace_fetch_registers)
11361         (record_btrace_store_registers, record_btrace_prepare_to_store)
11362         (record_btrace_to_get_unwinder)
11363         (record_btrace_to_get_tailcall_unwinder, record_btrace_resume)
11364         (record_btrace_commit_resume, record_btrace_wait)
11365         (record_btrace_stop, record_btrace_can_execute_reverse)
11366         (record_btrace_stopped_by_sw_breakpoint)
11367         (record_btrace_supports_stopped_by_sw_breakpoint)
11368         (record_btrace_stopped_by_hw_breakpoint)
11369         (record_btrace_supports_stopped_by_hw_breakpoint)
11370         (record_btrace_update_thread_list, record_btrace_thread_alive)
11371         (record_btrace_goto_begin, record_btrace_goto_end)
11372         (record_btrace_goto, record_btrace_stop_replaying_all)
11373         (record_btrace_execution_direction)
11374         (record_btrace_prepare_to_generate_core)
11375         (record_btrace_done_generating_core): Refactor as
11376         record_btrace_target methods.
11377         (init_record_btrace_ops): Delete.
11378         (_initialize_record_btrace): Remove reference to
11379         init_record_btrace_ops.
11380         * record-full.c (RECORD_FULL_IS_REPLAY): Adjust to always refer to
11381         the execution_direction global.
11382         (record_full_base_target, record_full_target)
11383         (record_full_core_target): New classes.
11384         (record_full_ops): Now a record_full_target.
11385         (record_full_core_ops): Now a record_full_core_target.
11386         (record_full_target::detach, record_full_target::disconnect)
11387         (record_full_core_target::disconnect)
11388         (record_full_target::mourn_inferior, record_full_target::kill):
11389         New.
11390         (record_full_open, record_full_close, record_full_async): Refactor
11391         as methods of the record_full_base_target class.
11392         (record_full_resume, record_full_commit_resume): Refactor
11393         as methods of the record_full_target class.
11394         (record_full_wait, record_full_stopped_by_watchpoint)
11395         (record_full_stopped_data_address)
11396         (record_full_stopped_by_sw_breakpoint)
11397         (record_full_supports_stopped_by_sw_breakpoint)
11398         (record_full_stopped_by_hw_breakpoint)
11399         (record_full_supports_stopped_by_hw_breakpoint): Refactor as
11400         methods of the record_full_base_target class.
11401         (record_full_store_registers, record_full_xfer_partial)
11402         (record_full_insert_breakpoint, record_full_remove_breakpoint):
11403         Refactor as methods of the record_full_target class.
11404         (record_full_can_execute_reverse, record_full_get_bookmark)
11405         (record_full_goto_bookmark, record_full_execution_direction)
11406         (record_full_record_method, record_full_info, record_full_delete)
11407         (record_full_is_replaying, record_full_will_replay)
11408         (record_full_goto_begin, record_full_goto_end, record_full_goto)
11409         (record_full_stop_replaying): Refactor as methods of the
11410         record_full_base_target class.
11411         (record_full_core_resume, record_full_core_kill)
11412         (record_full_core_fetch_registers)
11413         (record_full_core_prepare_to_store)
11414         (record_full_core_store_registers, record_full_core_xfer_partial)
11415         (record_full_core_insert_breakpoint)
11416         (record_full_core_remove_breakpoint)
11417         (record_full_core_has_execution): Refactor
11418         as methods of the record_full_core_target class.
11419         (record_full_base_target::supports_delete_record): New.
11420         (init_record_full_ops): Delete.
11421         (init_record_full_core_ops): Delete.
11422         (record_full_save): Refactor as method of the
11423         record_full_base_target class.
11424         (_initialize_record_full): Remove references to
11425         init_record_full_ops and init_record_full_core_ops.
11426
11427         * remote.c (remote_target, extended_remote_target): New classes.
11428         (remote_ops): Now a remote_target.
11429         (extended_remote_ops): Now an extended_remote_target.
11430         (remote_insert_fork_catchpoint, remote_remove_fork_catchpoint)
11431         (remote_insert_vfork_catchpoint, remote_remove_vfork_catchpoint)
11432         (remote_insert_exec_catchpoint, remote_remove_exec_catchpoint)
11433         (remote_pass_signals, remote_set_syscall_catchpoint)
11434         (remote_program_signals, )
11435         (remote_thread_always_alive): Remove target_ops parameter.
11436         (remote_thread_alive, remote_thread_name)
11437         (remote_update_thread_list, remote_threads_extra_info)
11438         (remote_static_tracepoint_marker_at)
11439         (remote_static_tracepoint_markers_by_strid)
11440         (remote_get_ada_task_ptid, remote_close, remote_start_remote)
11441         (remote_open): Refactor as methods of remote_target.
11442         (extended_remote_open, extended_remote_detach)
11443         (extended_remote_attach, extended_remote_post_attach):
11444         (extended_remote_supports_disable_randomization)
11445         (extended_remote_create_inferior): : Refactor as method of
11446         extended_remote_target.
11447         (remote_set_permissions, remote_open_1, remote_detach)
11448         (remote_follow_fork, remote_follow_exec, remote_disconnect)
11449         (remote_resume, remote_commit_resume, remote_stop)
11450         (remote_interrupt, remote_pass_ctrlc, remote_terminal_inferior)
11451         (remote_terminal_ours, remote_wait, remote_fetch_registers)
11452         (remote_prepare_to_store, remote_store_registers)
11453         (remote_flash_erase, remote_flash_done, remote_files_info)
11454         (remote_kill, remote_mourn, remote_insert_breakpoint)
11455         (remote_remove_breakpoint, remote_insert_watchpoint)
11456         (remote_watchpoint_addr_within_range)
11457         (remote_remove_watchpoint, remote_region_ok_for_hw_watchpoint)
11458         (remote_check_watch_resources, remote_stopped_by_sw_breakpoint)
11459         (remote_supports_stopped_by_sw_breakpoint)
11460         (remote_stopped_by_hw_breakpoint)
11461         (remote_supports_stopped_by_hw_breakpoint)
11462         (remote_stopped_by_watchpoint, remote_stopped_data_address)
11463         (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
11464         (remote_verify_memory): Refactor as methods of remote_target.
11465         (remote_write_qxfer, remote_read_qxfer): Remove target_ops
11466         parameter.
11467         (remote_xfer_partial, remote_get_memory_xfer_limit)
11468         (remote_search_memory, remote_rcmd, remote_memory_map)
11469         (remote_pid_to_str, remote_get_thread_local_address)
11470         (remote_get_tib_address, remote_read_description): Refactor as
11471         methods of remote_target.
11472         (remote_target::fileio_open, remote_target::fileio_pwrite)
11473         (remote_target::fileio_pread, remote_target::fileio_close): New.
11474         (remote_hostio_readlink, remote_hostio_fstat)
11475         (remote_filesystem_is_local, remote_can_execute_reverse)
11476         (remote_supports_non_stop, remote_supports_disable_randomization)
11477         (remote_supports_multi_process, remote_supports_cond_breakpoints)
11478         (remote_supports_enable_disable_tracepoint)
11479         (remote_supports_string_tracing)
11480         (remote_can_run_breakpoint_commands, remote_trace_init)
11481         (remote_download_tracepoint, remote_can_download_tracepoint)
11482         (remote_download_trace_state_variable, remote_enable_tracepoint)
11483         (remote_disable_tracepoint, remote_trace_set_readonly_regions)
11484         (remote_trace_start, remote_get_trace_status)
11485         (remote_get_tracepoint_status, remote_trace_stop)
11486         (remote_trace_find, remote_get_trace_state_variable_value)
11487         (remote_save_trace_data, remote_get_raw_trace_data)
11488         (remote_set_disconnected_tracing, remote_core_of_thread)
11489         (remote_set_circular_trace_buffer, remote_traceframe_info)
11490         (remote_get_min_fast_tracepoint_insn_len)
11491         (remote_set_trace_buffer_size, remote_set_trace_notes)
11492         (remote_use_agent, remote_can_use_agent, remote_enable_btrace)
11493         (remote_disable_btrace, remote_teardown_btrace)
11494         (remote_read_btrace, remote_btrace_conf)
11495         (remote_augmented_libraries_svr4_read, remote_load)
11496         (remote_pid_to_exec_file, remote_can_do_single_step)
11497         (remote_execution_direction, remote_thread_handle_to_thread_info):
11498         Refactor as methods of remote_target.
11499         (init_remote_ops, init_extended_remote_ops): Delete.
11500         (remote_can_async_p, remote_is_async_p, remote_async)
11501         (remote_thread_events, remote_upload_tracepoints)
11502         (remote_upload_trace_state_variables): Refactor as methods of
11503         remote_target.
11504         (_initialize_remote): Remove references to init_remote_ops and
11505         init_extended_remote_ops.
11506
11507         * remote-sim.c (gdbsim_target): New class.
11508         (gdbsim_fetch_register, gdbsim_store_register, gdbsim_kill)
11509         (gdbsim_load, gdbsim_create_inferior, gdbsim_open, gdbsim_close)
11510         (gdbsim_detach, gdbsim_resume, gdbsim_interrupt)
11511         (gdbsim_wait, gdbsim_prepare_to_store, gdbsim_xfer_partial)
11512         (gdbsim_files_info, gdbsim_mourn_inferior, gdbsim_thread_alive)
11513         (gdbsim_pid_to_str, gdbsim_has_all_memory, gdbsim_has_memory):
11514         Refactor as methods of gdbsim_target.
11515         (gdbsim_ops): Now a gdbsim_target.
11516         (init_gdbsim_ops): Delete.
11517         (gdbsim_cntrl_c): Adjust.
11518         (_initialize_remote_sim): Remove reference to init_gdbsim_ops.
11519
11520         * amd64-linux-nat.c (amd64_linux_nat_target): New class.
11521         (the_amd64_linux_nat_target): New.
11522         (amd64_linux_fetch_inferior_registers)
11523         (amd64_linux_store_inferior_registers): Refactor as methods of
11524         amd64_linux_nat_target.
11525         (_initialize_amd64_linux_nat): Adjust.  Set linux_target.
11526         * i386-linux-nat.c: Don't include "linux-nat.h".
11527         (i386_linux_nat_target): New class.
11528         (the_i386_linux_nat_target): New.
11529         (i386_linux_fetch_inferior_registers)
11530         (i386_linux_store_inferior_registers, i386_linux_resume): Refactor
11531         as methods of i386_linux_nat_target.
11532         (_initialize_i386_linux_nat): Adjust.  Set linux_target.
11533         * inf-child.c (inf_child_ops): Delete.
11534         (inf_child_fetch_inferior_registers)
11535         (inf_child_store_inferior_registers): Delete.
11536         (inf_child_post_attach, inf_child_prepare_to_store): Refactor as
11537         methods of inf_child_target.
11538         (inf_child_target::supports_terminal_ours)
11539         (inf_child_target::terminal_init)
11540         (inf_child_target::terminal_inferior)
11541         (inf_child_target::terminal_ours_for_output)
11542         (inf_child_target::terminal_ours, inf_child_target::interrupt)
11543         (inf_child_target::pass_ctrlc, inf_child_target::terminal_info):
11544         New.
11545         (inf_child_open, inf_child_disconnect, inf_child_close)
11546         (inf_child_mourn_inferior, inf_child_maybe_unpush_target)
11547         (inf_child_post_startup_inferior, inf_child_can_run)
11548         (inf_child_pid_to_exec_file): Refactor as methods of
11549         inf_child_target.
11550         (inf_child_follow_fork): Delete.
11551         (inf_child_target::can_create_inferior)
11552         (inf_child_target::can_attach): New.
11553         (inf_child_target::has_all_memory, inf_child_target::has_memory)
11554         (inf_child_target::has_stack, inf_child_target::has_registers)
11555         (inf_child_target::has_execution): New.
11556         (inf_child_fileio_open, inf_child_fileio_pwrite)
11557         (inf_child_fileio_pread, inf_child_fileio_fstat)
11558         (inf_child_fileio_close, inf_child_fileio_unlink)
11559         (inf_child_fileio_readlink, inf_child_use_agent)
11560         (inf_child_can_use_agent): Refactor as methods of
11561         inf_child_target.
11562         (return_zero, inf_child_target): Delete.
11563         (inf_child_target::inf_child_target): New.
11564         * inf-child.h: Include "target.h".
11565         (inf_child_target): Delete function prototype.
11566         (inf_child_target): New class.
11567         (inf_child_open_target, inf_child_mourn_inferior)
11568         (inf_child_maybe_unpush_target): Delete.
11569         * inf-ptrace.c (inf_ptrace_target::~inf_ptrace_target): New.
11570         (inf_ptrace_follow_fork, inf_ptrace_insert_fork_catchpoint)
11571         (inf_ptrace_remove_fork_catchpoint, inf_ptrace_create_inferior)
11572         (inf_ptrace_post_startup_inferior, inf_ptrace_mourn_inferior)
11573         (inf_ptrace_attach, inf_ptrace_post_attach, inf_ptrace_detach)
11574         (inf_ptrace_detach_success, inf_ptrace_kill, inf_ptrace_resume)
11575         (inf_ptrace_wait, inf_ptrace_xfer_partial)
11576         (inf_ptrace_thread_alive, inf_ptrace_files_info)
11577         (inf_ptrace_pid_to_str, inf_ptrace_auxv_parse): Refactor as
11578         methods of inf_ptrace_target.
11579         (inf_ptrace_target): Delete function.
11580         * inf-ptrace.h: Include "inf-child.h".
11581         (inf_ptrace_target): Delete function declaration.
11582         (inf_ptrace_target): New class.
11583         (inf_ptrace_trad_target, inf_ptrace_detach_success): Delete.
11584         * linux-nat.c (linux_target): New.
11585         (linux_ops, linux_ops_saved, super_xfer_partial): Delete.
11586         (linux_nat_target::~linux_nat_target): New.
11587         (linux_child_post_attach, linux_child_post_startup_inferior)
11588         (linux_child_follow_fork, linux_child_insert_fork_catchpoint)
11589         (linux_child_remove_fork_catchpoint)
11590         (linux_child_insert_vfork_catchpoint)
11591         (linux_child_remove_vfork_catchpoint)
11592         (linux_child_insert_exec_catchpoint)
11593         (linux_child_remove_exec_catchpoint)
11594         (linux_child_set_syscall_catchpoint, linux_nat_pass_signals)
11595         (linux_nat_create_inferior, linux_nat_attach, linux_nat_detach)
11596         (linux_nat_resume, linux_nat_stopped_by_watchpoint)
11597         (linux_nat_stopped_data_address)
11598         (linux_nat_stopped_by_sw_breakpoint)
11599         (linux_nat_supports_stopped_by_sw_breakpoint)
11600         (linux_nat_stopped_by_hw_breakpoint)
11601         (linux_nat_supports_stopped_by_hw_breakpoint, linux_nat_wait)
11602         (linux_nat_kill, linux_nat_mourn_inferior)
11603         (linux_nat_xfer_partial, linux_nat_thread_alive)
11604         (linux_nat_update_thread_list, linux_nat_pid_to_str)
11605         (linux_nat_thread_name, linux_child_pid_to_exec_file)
11606         (linux_child_static_tracepoint_markers_by_strid)
11607         (linux_nat_is_async_p, linux_nat_can_async_p)
11608         (linux_nat_supports_non_stop, linux_nat_always_non_stop_p)
11609         (linux_nat_supports_multi_process)
11610         (linux_nat_supports_disable_randomization, linux_nat_async)
11611         (linux_nat_stop, linux_nat_close, linux_nat_thread_address_space)
11612         (linux_nat_core_of_thread, linux_nat_filesystem_is_local)
11613         (linux_nat_fileio_open, linux_nat_fileio_readlink)
11614         (linux_nat_fileio_unlink, linux_nat_thread_events): Refactor as
11615         methods of linux_nat_target.
11616         (linux_nat_wait_1, linux_xfer_siginfo, linux_proc_xfer_partial)
11617         (linux_proc_xfer_spu, linux_nat_xfer_osdata): Remove target_ops
11618         parameter.
11619         (check_stopped_by_watchpoint): Adjust.
11620         (linux_xfer_partial): Delete.
11621         (linux_target_install_ops, linux_target, linux_nat_add_target):
11622         Delete.
11623         (linux_nat_target::linux_nat_target): New.
11624         * linux-nat.h: Include "inf-ptrace.h".
11625         (linux_nat_target): New.
11626         (linux_target, linux_target_install_ops, linux_nat_add_target):
11627         Delete function declarations.
11628         (linux_target): Declare global.
11629         * linux-thread-db.c (thread_db_target): New.
11630         (thread_db_target::thread_db_target): New.
11631         (thread_db_ops): Delete.
11632         (the_thread_db_target): New.
11633         (thread_db_detach, thread_db_wait, thread_db_mourn_inferior)
11634         (thread_db_update_thread_list, thread_db_pid_to_str)
11635         (thread_db_extra_thread_info)
11636         (thread_db_thread_handle_to_thread_info)
11637         (thread_db_get_thread_local_address, thread_db_get_ada_task_ptid)
11638         (thread_db_resume): Refactor as methods of thread_db_target.
11639         (init_thread_db_ops): Delete.
11640         (_initialize_thread_db): Remove reference to init_thread_db_ops.
11641         * x86-linux-nat.c: Don't include "linux-nat.h".
11642         (super_post_startup_inferior): Delete.
11643         (x86_linux_nat_target::~x86_linux_nat_target): New.
11644         (x86_linux_child_post_startup_inferior)
11645         (x86_linux_read_description, x86_linux_enable_btrace)
11646         (x86_linux_disable_btrace, x86_linux_teardown_btrace)
11647         (x86_linux_read_btrace, x86_linux_btrace_conf): Refactor as
11648         methods of x86_linux_nat_target.
11649         (x86_linux_create_target): Delete.  Bits folded ...
11650         (x86_linux_add_target): ... here.  Now takes a linux_nat_target
11651         pointer.
11652         * x86-linux-nat.h: Include "linux-nat.h" and "x86-nat.h".
11653         (x86_linux_nat_target): New class.
11654         (x86_linux_create_target): Delete.
11655         (x86_linux_add_target): Now takes a linux_nat_target pointer.
11656         * x86-nat.c (x86_insert_watchpoint, x86_remove_watchpoint)
11657         (x86_region_ok_for_watchpoint, x86_stopped_data_address)
11658         (x86_stopped_by_watchpoint, x86_insert_hw_breakpoint)
11659         (x86_remove_hw_breakpoint, x86_can_use_hw_breakpoint)
11660         (x86_stopped_by_hw_breakpoint): Remove target_ops parameter and
11661         make extern.
11662         (x86_use_watchpoints): Delete.
11663         * x86-nat.h: Include "breakpoint.h" and "target.h".
11664         (x86_use_watchpoints): Delete.
11665         (x86_can_use_hw_breakpoint, x86_region_ok_for_hw_watchpoint)
11666         (x86_stopped_by_watchpoint, x86_stopped_data_address)
11667         (x86_insert_watchpoint, x86_remove_watchpoint)
11668         (x86_insert_hw_breakpoint, x86_remove_hw_breakpoint)
11669         (x86_stopped_by_hw_breakpoint): New declarations.
11670         (x86_nat_target): New template class.
11671
11672         * ppc-linux-nat.c (ppc_linux_nat_target): New class.
11673         (the_ppc_linux_nat_target): New.
11674         (ppc_linux_fetch_inferior_registers)
11675         (ppc_linux_can_use_hw_breakpoint)
11676         (ppc_linux_region_ok_for_hw_watchpoint)
11677         (ppc_linux_ranged_break_num_registers)
11678         (ppc_linux_insert_hw_breakpoint, ppc_linux_remove_hw_breakpoint)
11679         (ppc_linux_insert_mask_watchpoint)
11680         (ppc_linux_remove_mask_watchpoint)
11681         (ppc_linux_can_accel_watchpoint_condition)
11682         (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint)
11683         (ppc_linux_stopped_data_address, ppc_linux_stopped_by_watchpoint)
11684         (ppc_linux_watchpoint_addr_within_range)
11685         (ppc_linux_masked_watch_num_registers)
11686         (ppc_linux_store_inferior_registers, ppc_linux_auxv_parse)
11687         (ppc_linux_read_description): Refactor as methods of
11688         ppc_linux_nat_target.
11689         (_initialize_ppc_linux_nat): Adjust.  Set linux_target.
11690
11691         * procfs.c (procfs_xfer_partial): Delete forward declaration.
11692         (procfs_target): New class.
11693         (the_procfs_target): New.
11694         (procfs_target): Delete function.
11695         (procfs_auxv_parse, procfs_attach, procfs_detach)
11696         (procfs_fetch_registers, procfs_store_registers, procfs_wait)
11697         (procfs_xfer_partial, procfs_resume, procfs_pass_signals)
11698         (procfs_files_info, procfs_kill_inferior, procfs_mourn_inferior)
11699         (procfs_create_inferior, procfs_update_thread_list)
11700         (procfs_thread_alive, procfs_pid_to_str)
11701         (procfs_can_use_hw_breakpoint, procfs_stopped_by_watchpoint)
11702         (procfs_stopped_data_address, procfs_insert_watchpoint)
11703         (procfs_remove_watchpoint, procfs_region_ok_for_hw_watchpoint)
11704         (proc_find_memory_regions, procfs_info_proc)
11705         (procfs_make_note_section): Refactor as methods of procfs_target.
11706         (_initialize_procfs): Adjust.
11707         * sol-thread.c (sol_thread_target): New class.
11708         (sol_thread_ops): Now a sol_thread_target.
11709         (sol_thread_detach, sol_thread_resume, sol_thread_wait)
11710         (sol_thread_fetch_registers, sol_thread_store_registers)
11711         (sol_thread_xfer_partial, sol_thread_mourn_inferior)
11712         (sol_thread_alive, solaris_pid_to_str, sol_update_thread_list)
11713         (sol_get_ada_task_ptid): Refactor as methods of sol_thread_target.
11714         (init_sol_thread_ops): Delete.
11715         (_initialize_sol_thread): Adjust.  Remove references to
11716         init_sol_thread_ops and complete_target_initialization.
11717
11718         * windows-nat.c (windows_nat_target): New class.
11719         (windows_fetch_inferior_registers)
11720         (windows_store_inferior_registers, windows_resume, windows_wait)
11721         (windows_attach, windows_detach, windows_pid_to_exec_file)
11722         (windows_files_info, windows_create_inferior)
11723         (windows_mourn_inferior, windows_interrupt, windows_kill_inferior)
11724         (windows_close, windows_pid_to_str, windows_xfer_partial)
11725         (windows_get_tib_address, windows_get_ada_task_ptid)
11726         (windows_thread_name, windows_thread_alive): Refactor as
11727         windows_nat_target methods.
11728         (do_initial_windows_stuff): Adjust.
11729         (windows_target): Delete function.
11730         (_initialize_windows_nat): Adjust.
11731
11732         * darwin-nat.c (darwin_resume, darwin_wait_to, darwin_interrupt)
11733         (darwin_mourn_inferior, darwin_kill_inferior)
11734         (darwin_create_inferior, darwin_attach, darwin_detach)
11735         (darwin_pid_to_str, darwin_thread_alive, darwin_xfer_partial)
11736         (darwin_pid_to_exec_file, darwin_get_ada_task_ptid)
11737         (darwin_supports_multi_process): Refactor as darwin_nat_target
11738         methods.
11739         (darwin_resume_to, darwin_files_info): Delete.
11740         (_initialize_darwin_inferior): Rename to ...
11741         (_initialize_darwin_nat): ... this.  Adjust to C++ification.
11742         * darwin-nat.h: Include "inf-child.h".
11743         (darwin_nat_target): New class.
11744         (darwin_complete_target): Delete.
11745         * i386-darwin-nat.c (i386_darwin_nat_target): New class.
11746         (darwin_target): New.
11747         (i386_darwin_fetch_inferior_registers)
11748         (i386_darwin_store_inferior_registers): Refactor as methods of
11749         darwin_nat_target.
11750         (darwin_complete_target): Delete, with ...
11751         (_initialize_i386_darwin_nat): ... bits factored out here.
11752
11753         * alpha-linux-nat.c (alpha_linux_nat_target): New class.
11754         (the_alpha_linux_nat_target): New.
11755         (alpha_linux_register_u_offset): Refactor as
11756         alpha_linux_nat_target method.
11757         (_initialize_alpha_linux_nat): Adjust.
11758         * linux-nat-trad.c (inf_ptrace_register_u_offset): Delete.
11759         (inf_ptrace_fetch_register, inf_ptrace_fetch_registers)
11760         (inf_ptrace_store_register, inf_ptrace_store_registers): Refact as
11761         methods of linux_nat_trad_target.
11762         (linux_trad_target): Delete.
11763         * linux-nat-trad.h (linux_trad_target): Delete function.
11764         (linux_nat_trad_target): New class.
11765         * mips-linux-nat.c (mips_linux_nat_target): New class.
11766         (super_fetch_registers, super_store_registers, super_close):
11767         Delete.
11768         (the_mips_linux_nat_target): New.
11769         (mips64_linux_regsets_fetch_registers)
11770         (mips64_linux_regsets_store_registers)
11771         (mips64_linux_fetch_registers, mips64_linux_store_registers)
11772         (mips_linux_register_u_offset, mips_linux_read_description)
11773         (mips_linux_can_use_hw_breakpoint)
11774         (mips_linux_stopped_by_watchpoint)
11775         (mips_linux_stopped_data_address)
11776         (mips_linux_region_ok_for_hw_watchpoint)
11777         (mips_linux_insert_watchpoint, mips_linux_remove_watchpoint)
11778         (mips_linux_close): Refactor as methods of mips_linux_nat.
11779         (_initialize_mips_linux_nat): Adjust to C++ification.
11780
11781         * aix-thread.c (aix_thread_target): New class.
11782         (aix_thread_ops): Now an aix_thread_target.
11783         (aix_thread_detach, aix_thread_resume, aix_thread_wait)
11784         (aix_thread_fetch_registers, aix_thread_store_registers)
11785         (aix_thread_xfer_partial, aix_thread_mourn_inferior)
11786         (aix_thread_thread_alive, aix_thread_pid_to_str)
11787         (aix_thread_extra_thread_info, aix_thread_get_ada_task_ptid):
11788         Refactor as methods of aix_thread_target.
11789         (init_aix_thread_ops): Delete.
11790         (_initialize_aix_thread): Remove references to init_aix_thread_ops
11791         and complete_target_initialization.
11792         * rs6000-nat.c (rs6000_xfer_shared_libraries): Delete.
11793         (rs6000_nat_target): New class.
11794         (the_rs6000_nat_target): New.
11795         (rs6000_fetch_inferior_registers, rs6000_store_inferior_registers)
11796         (rs6000_xfer_partial, rs6000_wait, rs6000_create_inferior)
11797         (rs6000_xfer_shared_libraries): Refactor as rs6000_nat_target methods.
11798         (super_create_inferior): Delete.
11799         (_initialize_rs6000_nat): Adjust to C++ification.
11800
11801         * arm-linux-nat.c (arm_linux_nat_target): New class.
11802         (the_arm_linux_nat_target): New.
11803         (arm_linux_fetch_inferior_registers)
11804         (arm_linux_store_inferior_registers, arm_linux_read_description)
11805         (arm_linux_can_use_hw_breakpoint, arm_linux_insert_hw_breakpoint)
11806         (arm_linux_remove_hw_breakpoint)
11807         (arm_linux_region_ok_for_hw_watchpoint)
11808         (arm_linux_insert_watchpoint, arm_linux_remove_watchpoint)
11809         (arm_linux_stopped_data_address, arm_linux_stopped_by_watchpoint)
11810         (arm_linux_watchpoint_addr_within_range): Refactor as methods of
11811         arm_linux_nat_target.
11812         (_initialize_arm_linux_nat): Adjust to C++ification.
11813
11814         * aarch64-linux-nat.c (aarch64_linux_nat_target): New class.
11815         (the_aarch64_linux_nat_target): New.
11816         (aarch64_linux_fetch_inferior_registers)
11817         (aarch64_linux_store_inferior_registers)
11818         (aarch64_linux_child_post_startup_inferior)
11819         (aarch64_linux_read_description)
11820         (aarch64_linux_can_use_hw_breakpoint)
11821         (aarch64_linux_insert_hw_breakpoint)
11822         (aarch64_linux_remove_hw_breakpoint)
11823         (aarch64_linux_insert_watchpoint, aarch64_linux_remove_watchpoint)
11824         (aarch64_linux_region_ok_for_hw_watchpoint)
11825         (aarch64_linux_stopped_data_address)
11826         (aarch64_linux_stopped_by_watchpoint)
11827         (aarch64_linux_watchpoint_addr_within_range)
11828         (aarch64_linux_can_do_single_step): Refactor as methods of
11829         aarch64_linux_nat_target.
11830         (super_post_startup_inferior): Delete.
11831         (_initialize_aarch64_linux_nat): Adjust to C++ification.
11832
11833         * hppa-linux-nat.c (hppa_linux_nat_target): New class.
11834         (the_hppa_linux_nat_target): New.
11835         (hppa_linux_fetch_inferior_registers)
11836         (hppa_linux_store_inferior_registers): Refactor as methods of
11837         hppa_linux_nat_target.
11838         (_initialize_hppa_linux_nat): Adjust to C++ification.
11839
11840         * ia64-linux-nat.c (ia64_linux_nat_target): New class.
11841         (the_ia64_linux_nat_target): New.
11842         (ia64_linux_insert_watchpoint, ia64_linux_remove_watchpoint)
11843         (ia64_linux_stopped_data_address)
11844         (ia64_linux_stopped_by_watchpoint, ia64_linux_fetch_registers)
11845         (ia64_linux_store_registers, ia64_linux_xfer_partial): Refactor as
11846         ia64_linux_nat_target methods.
11847         (super_xfer_partial): Delete.
11848         (_initialize_ia64_linux_nat): Adjust to C++ification.
11849
11850         * m32r-linux-nat.c (m32r_linux_nat_target): New class.
11851         (the_m32r_linux_nat_target): New.
11852         (m32r_linux_fetch_inferior_registers)
11853         (m32r_linux_store_inferior_registers): Refactor as
11854         m32r_linux_nat_target methods.
11855         (_initialize_m32r_linux_nat): Adjust to C++ification.
11856
11857         * m68k-linux-nat.c (m68k_linux_nat_target): New class.
11858         (the_m68k_linux_nat_target): New.
11859         (m68k_linux_fetch_inferior_registers)
11860         (m68k_linux_store_inferior_registers): Refactor as
11861         m68k_linux_nat_target methods.
11862         (_initialize_m68k_linux_nat): Adjust to C++ification.
11863
11864         * s390-linux-nat.c (s390_linux_nat_target): New class.
11865         (the_s390_linux_nat_target): New.
11866         (s390_linux_fetch_inferior_registers)
11867         (s390_linux_store_inferior_registers, s390_stopped_by_watchpoint)
11868         (s390_insert_watchpoint, s390_remove_watchpoint)
11869         (s390_can_use_hw_breakpoint, s390_insert_hw_breakpoint)
11870         (s390_remove_hw_breakpoint, s390_region_ok_for_hw_watchpoint)
11871         (s390_auxv_parse, s390_read_description): Refactor as methods of
11872         s390_linux_nat_target.
11873         (_initialize_s390_nat): Adjust to C++ification.
11874
11875         * sparc-linux-nat.c (sparc_linux_nat_target): New class.
11876         (the_sparc_linux_nat_target): New.
11877         (_initialize_sparc_linux_nat): Adjust to C++ification.
11878         * sparc-nat.c (sparc_fetch_inferior_registers)
11879         (sparc_store_inferior_registers): Remove target_ops parameter.
11880         * sparc-nat.h (sparc_fetch_inferior_registers)
11881         (sparc_store_inferior_registers): Remove target_ops parameter.
11882         * sparc64-linux-nat.c (sparc64_linux_nat_target): New class.
11883         (the_sparc64_linux_nat_target): New.
11884         (_initialize_sparc64_linux_nat): Adjust to C++ification.
11885
11886         * spu-linux-nat.c (spu_linux_nat_target): New class.
11887         (the_spu_linux_nat_target): New.
11888         (spu_child_post_startup_inferior, spu_child_post_attach)
11889         (spu_child_wait, spu_fetch_inferior_registers)
11890         (spu_store_inferior_registers, spu_xfer_partial)
11891         (spu_can_use_hw_breakpoint): Refactor as spu_linux_nat_target
11892         methods.
11893         (_initialize_spu_nat): Adjust to C++ification.
11894
11895         * tilegx-linux-nat.c (tilegx_linux_nat_target): New class.
11896         (the_tilegx_linux_nat_target): New.
11897         (fetch_inferior_registers, store_inferior_registers):
11898         Refactor as methods.
11899         (_initialize_tile_linux_nat): Adjust to C++ification.
11900
11901         * xtensa-linux-nat.c (xtensa_linux_nat_target): New class.
11902         (the_xtensa_linux_nat_target): New.
11903         (xtensa_linux_fetch_inferior_registers)
11904         (xtensa_linux_store_inferior_registers): Refactor as
11905         xtensa_linux_nat_target methods.
11906         (_initialize_xtensa_linux_nat): Adjust to C++ification.
11907
11908         * fbsd-nat.c (USE_SIGTRAP_SIGINFO): Delete.
11909         (fbsd_pid_to_exec_file, fbsd_find_memory_regions)
11910         (fbsd_find_memory_regions, fbsd_info_proc, fbsd_xfer_partial)
11911         (fbsd_thread_alive, fbsd_pid_to_str, fbsd_thread_name)
11912         (fbsd_update_thread_list, fbsd_resume, fbsd_wait)
11913         (fbsd_stopped_by_sw_breakpoint)
11914         (fbsd_supports_stopped_by_sw_breakpoint, fbsd_follow_fork)
11915         (fbsd_insert_fork_catchpoint, fbsd_remove_fork_catchpoint)
11916         (fbsd_insert_vfork_catchpoint, fbsd_remove_vfork_catchpoint)
11917         (fbsd_post_startup_inferior, fbsd_post_attach)
11918         (fbsd_insert_exec_catchpoint, fbsd_remove_exec_catchpoint)
11919         (fbsd_set_syscall_catchpoint)
11920         (super_xfer_partial, super_resume, super_wait)
11921         (fbsd_supports_stopped_by_hw_breakpoint): Delete.
11922         (fbsd_handle_debug_trap): Remove target_ops parameter.
11923         (fbsd_nat_add_target): Delete.
11924         * fbsd-nat.h: Include "inf-ptrace.h".
11925         (fbsd_nat_add_target): Delete.
11926         (USE_SIGTRAP_SIGINFO): Define.
11927         (fbsd_nat_target): New class.
11928
11929         * amd64-bsd-nat.c (amd64bsd_fetch_inferior_registers)
11930         (amd64bsd_store_inferior_registers): Remove target_ops parameter.
11931         (amd64bsd_target): Delete.
11932         * amd64-bsd-nat.h: New file.
11933         * amd64-fbsd-nat.c: Include "amd64-bsd-nat.h" instead of
11934         "x86-bsd-nat.h".
11935         (amd64_fbsd_nat_target): New class.
11936         (the_amd64_fbsd_nat_target): New.
11937         (amd64fbsd_read_description): Refactor as method of
11938         amd64_fbsd_nat_target.
11939         (amd64_fbsd_nat_target::supports_stopped_by_hw_breakpoint): New.
11940         (_initialize_amd64fbsd_nat): Adjust to C++ification.
11941         * amd64-nat.h (amd64bsd_target): Delete function declaration.
11942         * i386-bsd-nat.c (i386bsd_fetch_inferior_registers)
11943         (i386bsd_store_inferior_registers): Remove target_ops parameter.
11944         (i386bsd_target): Delete.
11945         * i386-bsd-nat.h (i386bsd_target): Delete function declaration.
11946         (i386bsd_fetch_inferior_registers)
11947         (i386bsd_store_inferior_registers): Declare.
11948         (i386_bsd_nat_target): New class.
11949         * i386-fbsd-nat.c (i386_fbsd_nat_target): New class.
11950         (the_i386_fbsd_nat_target): New.
11951         (i386fbsd_resume, i386fbsd_read_description): Refactor as
11952         i386_fbsd_nat_target methods.
11953         (i386_fbsd_nat_target::supports_stopped_by_hw_breakpoint): New.
11954         (_initialize_i386fbsd_nat): Adjust to C++ification.
11955         * x86-bsd-nat.c (super_mourn_inferior): Delete.
11956         (x86bsd_mourn_inferior, x86bsd_target): Delete.
11957         (_initialize_x86_bsd_nat): Adjust to C++ification.
11958         * x86-bsd-nat.h: Include "x86-nat.h".
11959         (x86bsd_target): Delete declaration.
11960         (x86bsd_nat_target): New class.
11961
11962         * aarch64-fbsd-nat.c (aarch64_fbsd_nat_target): New class.
11963         (the_aarch64_fbsd_nat_target): New.
11964         (aarch64_fbsd_fetch_inferior_registers)
11965         (aarch64_fbsd_store_inferior_registers): Refactor as methods of
11966         aarch64_fbsd_nat_target.
11967         (_initialize_aarch64_fbsd_nat): Adjust to C++ification.
11968         * alpha-bsd-nat.c (alpha_bsd_nat_target): New class.
11969         (the_alpha_bsd_nat_target): New.
11970         (alphabsd_fetch_inferior_registers)
11971         (alphabsd_store_inferior_registers): Refactor as
11972         alpha_bsd_nat_target methods.
11973         (_initialize_alphabsd_nat): Refactor as methods of
11974         alpha_bsd_nat_target.
11975         * amd64-nbsd-nat.c: Include "amd64-bsd-nat.h".
11976         (the_amd64_nbsd_nat_target): New.
11977         (_initialize_amd64nbsd_nat): Adjust to C++ification.
11978         * amd64-obsd-nat.c: Include "amd64-bsd-nat.h".
11979         (the_amd64_obsd_nat_target): New.
11980         (_initialize_amd64obsd_nat): Adjust to C++ification.
11981         * arm-fbsd-nat.c (arm_fbsd_nat_target): New.
11982         (the_arm_fbsd_nat_target): New.
11983         (arm_fbsd_fetch_inferior_registers)
11984         (arm_fbsd_store_inferior_registers, arm_fbsd_read_description):
11985         (_initialize_arm_fbsd_nat): Refactor as methods of
11986         arm_fbsd_nat_target.
11987         (_initialize_arm_fbsd_nat): Adjust to C++ification.
11988         * arm-nbsd-nat.c (arm_netbsd_nat_target): New class.
11989         (the_arm_netbsd_nat_target): New.
11990         (armnbsd_fetch_registers, armnbsd_store_registers): Refactor as
11991         arm_netbsd_nat_target.
11992         (_initialize_arm_netbsd_nat): Adjust to C++ification.
11993         * hppa-nbsd-nat.c (hppa_nbsd_nat_target): New class.
11994         (the_hppa_nbsd_nat_target): New.
11995         (hppanbsd_fetch_registers, hppanbsd_store_registers): Refactor as
11996         hppa_nbsd_nat_target methods.
11997         (_initialize_hppanbsd_nat): Adjust to C++ification.
11998         * hppa-obsd-nat.c (hppa_obsd_nat_target): New class.
11999         (the_hppa_obsd_nat_target): New.
12000         (hppaobsd_fetch_registers, hppaobsd_store_registers): Refactor as
12001         methods of hppa_obsd_nat_target.
12002         (_initialize_hppaobsd_nat): Adjust to C++ification.  Use
12003         add_target.
12004         * i386-nbsd-nat.c (the_i386_nbsd_nat_target): New.
12005         (_initialize_i386nbsd_nat): Adjust to C++ification.  Use
12006         add_target.
12007         * i386-obsd-nat.c (the_i386_obsd_nat_target): New.
12008         (_initialize_i386obsd_nat): Use add_target.
12009         * m68k-bsd-nat.c (m68k_bsd_nat_target): New class.
12010         (the_m68k_bsd_nat_target): New.
12011         (m68kbsd_fetch_inferior_registers)
12012         (m68kbsd_store_inferior_registers): Refactor as methods of
12013         m68k_bsd_nat_target.
12014         (_initialize_m68kbsd_nat): Adjust to C++ification.
12015         * mips-fbsd-nat.c (mips_fbsd_nat_target): New class.
12016         (the_mips_fbsd_nat_target): New.
12017         (mips_fbsd_fetch_inferior_registers)
12018         (mips_fbsd_store_inferior_registers): Refactor as methods of
12019         mips_fbsd_nat_target.
12020         (_initialize_mips_fbsd_nat): Adjust to C++ification.  Use
12021         add_target.
12022         * mips-nbsd-nat.c (mips_nbsd_nat_target): New class.
12023         (the_mips_nbsd_nat_target): New.
12024         (mipsnbsd_fetch_inferior_registers)
12025         (mipsnbsd_store_inferior_registers): Refactor as methods of
12026         mips_nbsd_nat_target.
12027         (_initialize_mipsnbsd_nat): Adjust to C++ification.
12028         * mips64-obsd-nat.c (mips64_obsd_nat_target): New class.
12029         (the_mips64_obsd_nat_target): New.
12030         (mips64obsd_fetch_inferior_registers)
12031         (mips64obsd_store_inferior_registers): Refactor as methods of
12032         mips64_obsd_nat_target.
12033         (_initialize_mips64obsd_nat): Adjust to C++ification.  Use
12034         add_target.
12035         * nbsd-nat.c (nbsd_pid_to_exec_file): Refactor as method of
12036         nbsd_nat_target.
12037         * nbsd-nat.h: Include "inf-ptrace.h".
12038         (nbsd_nat_target): New class.
12039         * obsd-nat.c (obsd_pid_to_str, obsd_update_thread_list)
12040         (obsd_wait): Refactor as methods of obsd_nat_target.
12041         (obsd_add_target): Delete.
12042         * obsd-nat.h: Include "inf-ptrace.h".
12043         (obsd_nat_target): New class.
12044         * ppc-fbsd-nat.c (ppc_fbsd_nat_target): New class.
12045         (the_ppc_fbsd_nat_target): New.
12046         (ppcfbsd_fetch_inferior_registers)
12047         (ppcfbsd_store_inferior_registers): Refactor as methods of
12048         ppc_fbsd_nat_target.
12049         (_initialize_ppcfbsd_nat): Adjust to C++ification.  Use
12050         add_target.
12051         * ppc-nbsd-nat.c (ppc_nbsd_nat_target): New class.
12052         (the_ppc_nbsd_nat_target): New.
12053         (ppcnbsd_fetch_inferior_registers)
12054         (ppcnbsd_store_inferior_registers): Refactor as methods of
12055         ppc_nbsd_nat_target.
12056         (_initialize_ppcnbsd_nat): Adjust to C++ification.
12057         * ppc-obsd-nat.c (ppc_obsd_nat_target): New class.
12058         (the_ppc_obsd_nat_target): New.
12059         (ppcobsd_fetch_registers, ppcobsd_store_registers): Refactor as
12060         methods of ppc_obsd_nat_target.
12061         (_initialize_ppcobsd_nat): Adjust to C++ification.  Use
12062         add_target.
12063         * sh-nbsd-nat.c (sh_nbsd_nat_target): New class.
12064         (the_sh_nbsd_nat_target): New.
12065         (shnbsd_fetch_inferior_registers)
12066         (shnbsd_store_inferior_registers): Refactor as methods of
12067         sh_nbsd_nat_target.
12068         (_initialize_shnbsd_nat): Adjust to C++ification.
12069         * sparc-nat.c (sparc_xfer_wcookie): Make extern.
12070         (inf_ptrace_xfer_partial): Delete.
12071         (sparc_xfer_partial, sparc_target): Delete.
12072         * sparc-nat.h (sparc_fetch_inferior_registers)
12073         (sparc_store_inferior_registers, sparc_xfer_wcookie): Declare.
12074         (sparc_target): Delete function declaration.
12075         (sparc_target): New template class.
12076         * sparc-nbsd-nat.c (the_sparc_nbsd_nat_target): New.
12077         (_initialize_sparcnbsd_nat): Adjust to C++ification.
12078         * sparc64-fbsd-nat.c (the_sparc64_fbsd_nat_target): New.
12079         (_initialize_sparc64fbsd_nat): Adjust to C++ification.  Use
12080         add_target.
12081         * sparc64-nbsd-nat.c (the_sparc64_nbsd_nat_target): New.
12082         (_initialize_sparc64nbsd_nat): Adjust to C++ification.
12083         * sparc64-obsd-nat.c (the_sparc64_obsd_nat_target): New.
12084         (_initialize_sparc64obsd_nat): Adjust to C++ification.  Use
12085         add_target.
12086         * vax-bsd-nat.c (vax_bsd_nat_target): New class.
12087         (the_vax_bsd_nat_target): New.
12088         (vaxbsd_fetch_inferior_registers)
12089         (vaxbsd_store_inferior_registers): Refactor as vax_bsd_nat_target
12090         methods.
12091         (_initialize_vaxbsd_nat): Adjust to C++ification.
12092
12093         * bsd-kvm.c (bsd_kvm_target): New class.
12094         (bsd_kvm_ops): Now a bsd_kvm_target.
12095         (bsd_kvm_open, bsd_kvm_close, bsd_kvm_xfer_partial)
12096         (bsd_kvm_files_info, bsd_kvm_fetch_registers)
12097         (bsd_kvm_thread_alive, bsd_kvm_pid_to_str): Refactor as methods of
12098         bsd_kvm_target.
12099         (bsd_kvm_return_one): Delete.
12100         (bsd_kvm_add_target): Adjust to C++ification.
12101
12102         * nto-procfs.c (nto_procfs_target, nto_procfs_target_native)
12103         (nto_procfs_target_procfs): New classes.
12104         (procfs_open_1, procfs_thread_alive, procfs_update_thread_list)
12105         (procfs_files_info, procfs_pid_to_exec_file, procfs_attach)
12106         (procfs_post_attach, procfs_wait, procfs_fetch_registers)
12107         (procfs_xfer_partial, procfs_detach, procfs_insert_breakpoint)
12108         (procfs_remove_breakpoint, procfs_insert_hw_breakpoint)
12109         (procfs_remove_hw_breakpoint, procfs_resume)
12110         (procfs_mourn_inferior, procfs_create_inferior, procfs_interrupt)
12111         (procfs_kill_inferior, procfs_store_registers)
12112         (procfs_pass_signals, procfs_pid_to_str, procfs_can_run): Refactor
12113         as methods of nto_procfs_target.
12114         (nto_procfs_ops): Now an nto_procfs_target_procfs.
12115         (nto_native_ops): Delete.
12116         (procfs_open, procfs_native_open): Delete.
12117         (nto_native_ops): Now an nto_procfs_target_native.
12118         (init_procfs_targets): Adjust to C++ification.
12119         (procfs_can_use_hw_breakpoint, procfs_remove_hw_watchpoint)
12120         (procfs_insert_hw_watchpoint, procfs_stopped_by_watchpoint):
12121         Refactor as methods of nto_procfs_target.
12122
12123         * go32-nat.c (go32_nat_target): New class.
12124         (the_go32_nat_target): New.
12125         (go32_attach, go32_resume, go32_wait, go32_fetch_registers)
12126         (go32_store_registers, go32_xfer_partial, go32_files_info)
12127         (go32_kill_inferior, go32_create_inferior, go32_mourn_inferior)
12128         (go32_terminal_init, go32_terminal_info, go32_terminal_inferior)
12129         (go32_terminal_ours, go32_pass_ctrlc, go32_thread_alive)
12130         (go32_pid_to_str): Refactor as methods of go32_nat_target.
12131         (go32_target): Delete.
12132         (_initialize_go32_nat): Adjust to C++ification.
12133
12134         * gnu-nat.c (gnu_wait, gnu_resume, gnu_kill_inferior)
12135         (gnu_mourn_inferior, gnu_create_inferior, gnu_attach, gnu_detach)
12136         (gnu_stop, gnu_thread_alive, gnu_xfer_partial)
12137         (gnu_find_memory_regions, gnu_pid_to_str): Refactor as methods of
12138         gnu_nat_target.
12139         (gnu_target): Delete.
12140         * gnu-nat.h (gnu_target): Delete.
12141         (gnu_nat_target): New class.
12142         * i386-gnu-nat.c (gnu_base_target): New.
12143         (i386_gnu_nat_target): New class.
12144         (the_i386_gnu_nat_target): New.
12145         (_initialize_i386gnu_nat): Adjust to C++ification.
12146
12147 2018-05-02  Pedro Alves  <palves@redhat.com>
12148
12149         * bfd-target.c (target_bfd_xclose): Rename to ...
12150         (target_bfd_close): ... this.
12151         (target_bfd_reopen): Adjust.
12152         * target.c (target_close): Remove references to to_xclose.
12153         * target.h (target_ops::to_xclose): Delete.
12154         (target_ops::to_close): Update comments.
12155
12156 2018-05-02  Pedro Alves  <palves@redhat.com>
12157
12158         * alpha-linux-nat.c: Include "linux-nat-trad.h" instead of
12159         "linux-nat.h".
12160         * configure.nat (alpha-linux, linux-mips): Add linux-nat-trad.o.
12161         * inf-ptrace.c (inf_ptrace_register_u_offset)
12162         (inf_ptrace_fetch_register, inf_ptrace_fetch_registers)
12163         (inf_ptrace_store_register, inf_ptrace_store_registers)
12164         (inf_ptrace_trad_target): Move to ...
12165         * linux-nat-trad.c: ... this new file.
12166         * linux-nat-trad.h: New file.
12167         * linux-nat.c (linux_target_install_ops): Make extern.
12168         (linux_trad_target): Delete.
12169         * linux-nat.h (linux_trad_target): Delete declaration.
12170         (linux_target_install_ops): Declare.
12171         * mips-linux-nat.c: Include "linux-nat-trad.h" instead of
12172         "linux-nat.h".
12173
12174 2018-05-02  Pedro Alves  <palves@redhat.com>
12175
12176         * i386-sol2-nat.c (_initialize_amd64_sol2_nat): Don't call
12177         procfs_target/add_target here.
12178         * procfs.c (procfs_target): Make static.
12179         (_initialize_procfs): Call add_target here.
12180         * procfs.h (struct target_ops): Remove forward declaration.
12181         (procfs_target): Remove declaration.
12182         * sparc-sol2-nat.c (_initialize_sparc_sol2_nat): Delete.
12183
12184 2018-05-02  Pedro Alves  <palves@redhat.com>
12185
12186         * procfs.c (procfs_stopped_by_watchpoint)
12187         (procfs_insert_watchpoint, procfs_remove_watchpoint)
12188         (procfs_region_ok_for_hw_watchpoint, procfs_stopped_data_address):
12189         Forward declare.
12190         (procfs_use_watchpoints): Delete, move contents...
12191         (procfs_target): ... here.
12192         * procfs.h (procfs_use_watchpoints): Delete declaration.
12193         * i386-sol2-nat.c (_initialize_amd64_sol2_nat): Don't call
12194         procfs_use_watchpoints.
12195         * sparc-sol2-nat.c (_initialize_sparc_sol2_nat): Don't call
12196         procfs_use_watchpoints.
12197
12198 2018-05-02  Tom Tromey  <tom@tromey.com>
12199
12200         PR python/20084:
12201         * python/python.c (gdbpy_parameter_value): Handle var_zuinteger
12202         and var_zuinteger_unlimited.
12203         * python/py-param.c (struct parm_constant): Add PARAM_ZUINTEGER
12204         and PARAM_ZUINTEGER_UNLIMITED.
12205         (set_parameter_value): Handle var_zuinteger and
12206         var_zuinteger_unlimited.
12207         (add_setshow_generic): Likewise.
12208         (parmpy_init): Likewise.
12209
12210 2018-04-28  Dan Robertson  <danlrobertson89@gmail.com>
12211
12212         PR rust/23124
12213         * gdb/rust-exp.y (convert_params_to_types): Ensure that the params
12214         pointer is not null before dereferencing it.
12215
12216 2018-04-30  Tom Tromey  <tom@tromey.com>
12217
12218         * darwin-nat-info.c (darwin_debug_regions_recurse): Remove use of
12219         is_mi_like_p.
12220
12221 2018-04-30  Tom Tromey  <tom@tromey.com>
12222
12223         * breakpoint.c (mention): Remove use of is_mi_like_p.
12224         (print_mention_ranged_breakpoint): Likewise.
12225         * break-catch-throw.c (print_it_exception_catchpoint): Remove use
12226         of is_mi_like_p.
12227
12228 2018-04-30  Tom Tromey  <tom@tromey.com>
12229
12230         * tracepoint.c (tvariables_info_1): Remove use of is_mi_like_p.
12231
12232 2018-04-30  Tom Tromey  <tom@tromey.com>
12233
12234         * spu-tdep.c (info_spu_mailbox_list, info_spu_dma_cmdlist)
12235         (info_spu_event_command): Remove some uses of is_mi_like_p.
12236
12237 2018-04-30  Tom Tromey  <tom@tromey.com>
12238
12239         * python/py-framefilter.c (py_print_single_arg)
12240         (enumerate_locals, py_print_args, py_print_frame): Remove some
12241         uses of is_mi_like_p.
12242
12243 2018-04-30  Tom Tromey  <tom@tromey.com>
12244
12245         * ui-out.c: Update.
12246         * cli-out.h (cli_ui_out::do_is_mi_like_p): Update.
12247         * ui-out.h (ui_out::is_mi_like_p): Now const.
12248         (ui_out::do_is_mi_like_p): Now const.
12249         * mi/mi-out.h (mi_ui_out::do_is_mi_like_p): Update.
12250
12251 2018-04-30  Tom Tromey  <tom@tromey.com>
12252
12253         * varobj.c (varobj_set_visualizer): Use new_reference.
12254         * python/python.c (gdbpy_decode_line): Use new_reference.
12255         * python/py-cmd.c (cmdpy_function, cmdpy_completer_helper): Use
12256         new_reference.
12257
12258 2018-04-30  Tom Tromey  <tom@tromey.com>
12259
12260         * varobj.c (install_new_value): Use new_reference.
12261         * value.h (value_incref): Return void.  Swap intro comment with
12262         value_decref.
12263         * value.c (set_value_parent): Use new_reference.
12264         (value_incref): Return void.  Update intro comment.
12265         (release_value): Use new_reference.
12266         * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use new_reference.
12267
12268 2018-04-30  Tom Tromey  <tom@tromey.com>
12269
12270         * symfile-mem.c (symbol_file_add_from_memory): Use new_reference.
12271         * gdb_bfd.h (new_bfd_ref): Remove.
12272         (gdb_bfd_open): Update comment.
12273         * gdb_bfd.c (gdb_bfd_open, gdb_bfd_fopen, gdb_bfd_openr)
12274         (gdb_bfd_openw, gdb_bfd_openr_iovec, gdb_bfd_record_inclusion)
12275         (gdb_bfd_fdopenr): Use new_reference.
12276         * exec.c (exec_file_attach): Use new_reference.
12277
12278 2018-04-30  Tom Tromey  <tom@tromey.com>
12279
12280         * common/gdb_ref_ptr.h (ref_ptr::new_reference): New static
12281         method.
12282
12283 2018-04-30  Tom Tromey  <tom@tromey.com>
12284
12285         * jit.c (jit_read_code_entry): Use type_align.
12286         * i386-tdep.c (i386_gdbarch_init): Don't call
12287         set_gdbarch_long_long_align_bit.
12288         * gdbarch.sh: Remove long_long_align_bit.
12289         * gdbarch.c, gdbarch.h: Rebuild.
12290         * arc-tdep.c (arc_type_align): New function.
12291         (arc_gdbarch_init): Use arc_type_align.  Don't call
12292         set_gdbarch_long_long_align_bit.
12293
12294 2018-04-30  Tom Tromey  <tom@tromey.com>
12295
12296         * rust-lang.c (rust_type_alignment): Remove.
12297         (rust_composite_type): Use type_align.
12298
12299 2018-04-30  Tom Tromey  <tom@tromey.com>
12300
12301         * NEWS: Mention Type.align.
12302         * python/py-type.c (typy_get_alignof): New function.
12303         (type_object_getset): Add "alignof".
12304
12305 2018-04-30  Tom Tromey  <tom@tromey.com>
12306
12307         PR exp/17095:
12308         * NEWS: Update.
12309         * std-operator.def (UNOP_ALIGNOF): New operator.
12310         * expprint.c (dump_subexp_body_standard) <case UNOP_ALIGNOF>:
12311         New.
12312         * eval.c (evaluate_subexp_standard) <case UNOP_ALIGNOF>: New.
12313         * c-lang.c (c_op_print_tab): Add alignof.
12314         * c-exp.y (ALIGNOF): New token.
12315         (exp): Add "ALIGNOF" production.
12316         (ident_tokens): Add _Alignof and alignof.
12317
12318 2018-04-30  Tom Tromey  <tom@tromey.com>
12319
12320         * i386-tdep.c (i386_type_align): New function.
12321         (i386_gdbarch_init): Update.
12322         * gdbarch.sh (type_align): New method.
12323         * gdbarch.c, gdbarch.h: Rebuild.
12324         * arch-utils.h (default_type_align): Declare.
12325         * arch-utils.c (default_type_align): New function.
12326         * gdbtypes.h (TYPE_ALIGN_BITS): New define.
12327         (struct type) <align_log2>: New field.
12328         <instance_flags>: Now a bitfield.
12329         (TYPE_RAW_ALIGN): New macro.
12330         (type_align, type_raw_align, set_type_align): Declare.
12331         * gdbtypes.c (type_align, type_raw_align, set_type_align): New
12332         functions.
12333         * dwarf2read.c (quirk_rust_enum): Set type alignment.
12334         (get_alignment, maybe_set_alignment): New functions.
12335         (read_structure_type, read_enumeration_type, read_array_type)
12336         (read_set_type, read_tag_pointer_type, read_tag_reference_type)
12337         (read_subrange_type, read_base_type): Set type alignment.
12338
12339 2018-04-30  Simon Marchi  <simon.marchi@ericsson.com>
12340
12341         * dwarf2read.c (read_index_from_section): Use bool.
12342
12343 2018-04-29  Fabian Groffen  <grobian@gentoo.org>
12344
12345         PR gdb/22950
12346         * proc-events.c (init_syscall_table): Guard usage os SYS_uuidsys
12347         with #ifdef.
12348
12349 2018-04-29  John Reiser  <jreiser@BitWagon.com>
12350
12351         PR build/22873
12352         * gdb/Makefile.in: (.c:.l, .c:.y): Write the target only in the
12353         last step, and do it atomically.
12354
12355 2018-04-27  Alexandre Oliva  <aoliva@redhat.com>
12356
12357         * compile/compile-c-types.c (convert_int, convert_float):
12358         Update for C FE v1.
12359
12360 2018-04-27  Tom Tromey  <tom@tromey.com>
12361
12362         PR rust/22545:
12363         * rust-lang.c (rust_inclusive_range_type_p): New function.
12364         (rust_range): Handle inclusive ranges.
12365         (rust_compute_range): Likewise.
12366         * rust-exp.y (struct rust_op) <inclusive>: New field.
12367         (DOTDOTEQ): New constant.
12368         (range_expr): Add "..=" productions.
12369         (operator_tokens): Add "..=" token.
12370         (ast_range): Add "inclusive" parameter.
12371         (convert_ast_to_expression) <case OP_RANGE>: Handle inclusive
12372         ranges.
12373         * parse.c (operator_length_standard) <case OP_RANGE>: Handle new
12374         bounds values.
12375         * expression.h (enum range_type) <NONE_BOUND_DEFAULT_EXCLUSIVE,
12376         LOW_BOUND_DEFAULT_EXCLUSIVE>: New constants.
12377         Update comments.
12378         * expprint.c (print_subexp_standard): Handle new bounds values.
12379         (dump_subexp_body_standard): Likewise.
12380
12381 2018-04-27  Tom Tromey  <tom@tromey.com>
12382
12383         * configure: Rebuild.
12384         * warning.m4 (AM_GDB_WARNINGS): Add -Wsuggest-override.
12385         * dwarf2loc.c (class dwarf_evaluate_loc_desc): Use "override", not
12386         "OVERRIDE".
12387         (class symbol_needs_eval_context): Likewise.
12388         * dwarf2read.c (mock_mapped_index::symbol_name_count)
12389         (mock_mapped_index::symbol_name_at): Use "override".  Remove
12390         "virtual".
12391         * dwarf2-frame.c (dwarf_expr_executor::get_addr_index): Use
12392         "override".
12393         (class dwarf_expr_executor): Use "override", not "OVERRIDE".
12394         * aarch64-tdep.c (instruction_reader::read): Use "override".
12395         (instruction_reader_test::read): Likewise.
12396         * arm-tdep.c (instruction_reader::read): Use "override".
12397         (instruction_reader_thumb::read): Likewise.
12398
12399 2018-04-26  Andrzej Kaczmarek  <andrzej.kaczmarek@codecoup.pl>
12400
12401         PR remote/9665
12402         * remote.c (send_g_packet): Use putpkt/getpkt/packet_check_result
12403         instead of remote_send.
12404         (remote_send): Remove.
12405
12406 2018-04-26  Pedro Alves  <palves@redhat.com>
12407
12408         * elfread.c (elf_gnu_ifunc_resolver_return_stop): Use
12409         find_function_start_sal instead of find_pc_line.
12410
12411 2018-04-26  Pedro Alves  <palves@redhat.com>
12412
12413         * breakpoint.c (set_breakpoint_location_function): Handle
12414         mst_data_gnu_ifunc.
12415         * c-exp.y (variable production): Handle mst_data_gnu_ifunc.
12416         * elfread.c (elf_symtab_read): Give data symbols with
12417         BSF_GNU_INDIRECT_FUNCTION set mst_data_gnu_ifunc type.
12418         (elf_rel_plt_read): Update comment.
12419         * linespec.c (convert_linespec_to_sals): Handle
12420         mst_data_gnu_ifunc.
12421         (minsym_found): Handle mst_data_gnu_ifunc.
12422         * minsyms.c (msymbol_is_function, minimal_symbol_reader::record)
12423         (find_solib_trampoline_target): Handle mst_data_gnu_ifunc.
12424         * parse.c (find_minsym_type_and_address): Handle
12425         mst_data_gnu_ifunc.
12426         * symmisc.c (dump_msymbols): Handle mst_data_gnu_ifunc.
12427         * symtab.c (find_gnu_ifunc): Handle mst_data_gnu_ifunc.
12428         * symtab.h (minimal_symbol_type) <mst_text_gnu_ifunc>: Update
12429         comment.
12430         <mst_data_gnu_ifunc>: New enumerator.
12431
12432 2018-04-26  Pedro Alves  <palves@redhat.com>
12433
12434         * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Rename to ...
12435         (lookup_minimal_symbol_by_pc_section): ... this.  Replace
12436         'want_trampoline' parameter by a lookup_msym_prefer parameter.
12437         Handle it.
12438         (lookup_minimal_symbol_by_pc_section): Delete old implementation.
12439         (lookup_minimal_symbol_by_pc): Adjust.
12440         (in_gnu_ifunc_stub): Prefer GNU ifunc symbols.
12441         (lookup_solib_trampoline_symbol_by_pc): Adjust.
12442         * minsyms.h (lookup_msym_prefer): New enum.
12443         (lookup_minimal_symbol_by_pc_section): Replace 'want_trampoline'
12444         parameter by a lookup_msym_prefer parameter.
12445
12446 2018-04-26  Pedro Alves  <palves@redhat.com>
12447
12448         * elfread.c (elf_gnu_ifunc_record_cache): Check if the symbol name
12449         ends in "@plt" instead of looking at the symbol's section.
12450
12451 2018-04-26  Pedro Alves  <palves@redhat.com>
12452
12453         * blockframe.c (cache_pc_function_is_gnu_ifunc): Delete.  Remove
12454         all references.
12455         (find_pc_partial_function_gnu_ifunc): Rename to ...
12456         (find_pc_partial_function): ... this, and remove references to
12457         'is_gnu_ifunc_p'.
12458         (find_pc_partial_function): Delete old implementation.
12459         * symtab.h (find_pc_partial_function_gnu_ifunc): Delete.
12460
12461 2018-04-26  Pedro Alves  <palves@redhat.com>
12462
12463         * linespec.c (struct bound_minimal_symbol_search_key): New.
12464         (convert_linespec_to_sals): Sort minimal symbols earlier.  Don't
12465         skip first line if we found a GNU ifunc minimal symbol by name.
12466         (compare_msymbols): Change parameters to work with a destructured
12467         lhs minsym.
12468         (compare_msymbols_for_qsort, compare_msymbols_for_bsearch): New
12469         functions.
12470
12471 2018-04-26  Pedro Alves  <palves@redhat.com>
12472
12473         * breakpoint.c (set_breakpoint_location_function): Don't resolve
12474         ifunc targets here.  Instead, if we have an ifunc minsym, use its
12475         address/name.
12476         (add_location_to_breakpoint): Store the minsym and the objfile in
12477         the breakpoint location.
12478         * breakpoint.h (bp_location) <msymbol, objfile>: New fields.
12479         * linespec.c (minsym_found): Resolve GNU ifunc targets here.
12480         Record the minsym in the sal.
12481         * symtab.h (symtab_and_line) <msymbol>: New field.
12482
12483 2018-04-26  Pedro Alves  <palves@redhat.com>
12484
12485         * elfread.c (elf_gnu_ifunc_resolve_by_got): Don't write to *ADDR_P
12486         unless we actually resolved the ifunc.
12487
12488 2018-04-26  Pedro Alves  <palves@redhat.com>
12489
12490         * c-exp.y (variable production): Prefer ifunc minsyms over
12491         regular function symbols.
12492         * symtab.c (find_gnu_ifunc): New function.
12493         * minsyms.h (lookup_msym_prefer): New enum.
12494         (lookup_minimal_symbol_by_pc_section): Replace 'want_trampoline'
12495         parameter by a lookup_msym_prefer parameter.
12496         * symtab.h (find_gnu_ifunc): New declaration.
12497
12498 2018-04-26  Pedro Alves  <palves@redhat.com>
12499
12500         * blockframe.c (find_gnu_ifunc_target_type): New function.
12501         (find_function_type): New.
12502         * eval.c (evaluate_var_msym_value): For GNU ifunc types, always
12503         return a value with a memory address.
12504         (eval_call): For calls to GNU ifunc functions, try to find the
12505         type of the target function from the type that the resolver
12506         returns.
12507         * gdbtypes.c (objfile_type): Don't install a return type for ifunc
12508         symbols.
12509         * infcall.c (find_function_return_type): Delete.
12510         (find_function_addr): Add 'function_type' parameter.  For calls to
12511         GNU ifunc functions, try to find the type of the target function
12512         from the type that the resolver returns, and return it via
12513         FUNCTION_TYPE.
12514         (call_function_by_hand_dummy): Adjust to use the function type
12515         returned by find_function_addr.
12516         (find_function_addr): Add 'function_type' parameter and move
12517         description here.
12518         * symtab.h (find_function_type, find_gnu_ifunc_target_type): New
12519         declarations.
12520
12521 2018-04-26  Pedro Alves  <palves@redhat.com>
12522
12523         * c-exp.y (variable production): Skip finding an alias for ifunc
12524         symbols.
12525
12526 2018-04-26  Pedro Alves  <palves@redhat.com>
12527
12528         * elfread.c (elf_rel_plt_read): Look for relocations for .got.plt too.
12529
12530 2018-04-25  Pedro Alves  <palves@redhat.com>
12531
12532         * infcmd.c (kill_command): Print the pid as string, not the whole
12533         thread's ptid.  Add comment.  s/has been killed/killed/ in output
12534         message.
12535         * remote.c (remote_detach_1): Print the pid as string, not the
12536         whole thread's ptid.
12537
12538 2018-04-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
12539             Sergio Durigan Junior  <sergiodj@redhat.com>
12540             Pedro Alves  <palves@redhat.com>
12541
12542         * infcmd.c (kill_command): Print message when inferior has
12543         been killed.
12544         * inferior.c (print_inferior_events): Remove 'static'.  Set as
12545         '1'.
12546         (add_inferior): Improve message printed when
12547         'print_inferior_events' is on.
12548         (exit_inferior): Remove message printed when
12549         'print_inferior_events' is on.
12550         (detach_inferior): Improve message printed when
12551         'print_inferior_events' is on.
12552         (initialize_inferiors): Use 'add_inferior_silent' to set
12553         'current_inferior_'.
12554         * inferior.h (print_inferior_events): Declare here as
12555         'extern'.
12556         * infrun.c (follow_fork_inferior): Print '[Attaching...]' or
12557         '[Detaching...]' messages when 'print_inferior_events' is on.
12558         Use 'add_thread_silent' instead of 'add_thread'.  Add '[' and ']'
12559         as prefix/suffix for messages.  Remove periods.  Fix erroneous
12560         'Detaching after fork from child...', replace it by '... from
12561         parent...'.
12562         (handle_vfork_child_exec_or_exit): Add '[' and ']' as
12563         prefix/suffix when printing 'Detaching...' messages.  Print
12564         them when 'print_inferior_events' is on.
12565         * remote.c (remote_detach_1): Print message when detaching
12566         from inferior and '!is_fork_parent'.
12567
12568 2018-04-24  Tom Tromey  <tom@tromey.com>
12569
12570         * cli-out.h: Reindent.
12571
12572 2018-04-24  Tom Tromey  <tom@tromey.com>
12573
12574         * cli-out.c (cli_ui_out::out_field_fmt): Remove.
12575         (cli_ui_out::do_field_string): Use fputs_filtered.
12576         * cli-out.h (class cli_ui_out) <out_field_fmt>: Remove.
12577
12578 2018-04-23  Tom Tromey  <tom@tromey.com>
12579
12580         * guile/scm-frame.c (gdbscm_frame_read_var): Use
12581         gdb::unique_xmalloc_ptr.
12582
12583 2018-04-23  Tom Tromey  <tom@tromey.com>
12584
12585         * configure: Rebuild.
12586
12587 2018-04-22  Rajendra SY  <rajendra.sy@gmail.com>
12588
12589         PR gdb/23095
12590         * gdb/testsuite/gdb.base/break-probes.exp: Pass shlib_load to
12591         prepare_for_testing.  Set normal_bp to r_debug_state if target
12592         is bsd.
12593
12594 2018-04-21  Pedro Alves  <palves@redhat.com>
12595             Rajendra SY  <rajendra.sy@gmail.com>
12596
12597         * inf-ptrace.c (inf_ptrace_attach): Mark the thread as executing.
12598         * remote.c (extended_remote_attach): In all-stop mode, mark the
12599         thread as executing.
12600
12601 2018-04-19  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
12602
12603         * thread.c (thread_apply_all_command): Fix comment.
12604         (thread_command): Fix comment.
12605
12606 2018-04-10  Alan Hayward  <alan.hayward@arm.com>
12607
12608         * common/tdesc.h (tdesc_create_feature): Remove xml filename
12609         parameter.
12610         * features/aarch64-core.c (create_feature_aarch64_core):
12611         Regenerate.
12612         * features/aarch64-fpu.c (create_feature_aarch64_fpu):
12613         Likewise.
12614         * features/i386/32bit-avx.c (create_feature_i386_32bit_avx):
12615         Likewise.
12616         * features/i386/32bit-avx512.c
12617         (create_feature_i386_32bit_avx512): Likewise.
12618         * features/i386/32bit-core.c (create_feature_i386_32bit_core):
12619         Likewise.
12620         * features/i386/32bit-linux.c (create_feature_i386_32bit_linux):
12621         Likewise.
12622         * features/i386/32bit-mpx.c (create_feature_i386_32bit_mpx):
12623         Likewise.
12624         * features/i386/32bit-pkeys.c (create_feature_i386_32bit_pkeys):
12625         Likewise.
12626         * features/i386/32bit-sse.c (create_feature_i386_32bit_sse):
12627         Likewise.
12628         * features/i386/64bit-avx.c (create_feature_i386_64bit_avx):
12629         Likewise.
12630         * features/i386/64bit-avx512.c
12631         (create_feature_i386_64bit_avx512): Likewise.
12632         * features/i386/64bit-core.c (create_feature_i386_64bit_core):
12633         Likewise.
12634         * features/i386/64bit-linux.c (create_feature_i386_64bit_linux):
12635         Likewise.
12636         * features/i386/64bit-mpx.c (create_feature_i386_64bit_mpx):
12637         Likewise.
12638         * features/i386/64bit-pkeys.c (create_feature_i386_64bit_pkeys):
12639         Likewise.
12640         * features/i386/64bit-segments.c
12641         (create_feature_i386_64bit_segments): Likewise.
12642         * features/i386/64bit-sse.c (create_feature_i386_64bit_sse):
12643         Likewise.
12644         * features/i386/x32-core.c
12645         (create_feature_i386_x32_core): Likewise.
12646         * features/tic6x-c6xp.c (create_feature_tic6x_c6xp): Likewise.
12647         * features/tic6x-core.c (create_feature_tic6x_core): Likewise.
12648         * features/tic6x-gp.c (create_feature_tic6x_gp): Likewise.
12649         * target-descriptions.c: In generated code, don't pass xml
12650         filename.
12651
12652 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12653
12654         * common/tdesc.c (print_xml_feature::visit_pre): Add xml parsing.
12655         (print_xml_feature::visit_post): Likewise.
12656         (print_xml_feature::visit): Likewise.
12657         * common/tdesc.h (tdesc_get_features_xml): Use const tdesc.
12658         (print_xml_feature): Add new class.
12659         * regformats/regdat.sh: Null xmltarget on feature targets.
12660         * target-descriptions.c (struct target_desc): Add xmltarget.
12661         (maintenance_check_tdesc_xml_convert): Add unittest function.
12662         (tdesc_get_features_xml): Add function to get xml.
12663         (maintenance_check_xml_descriptions): Test xml generation.
12664         * xml-tdesc.c (string_read_description_xml): Add function.
12665         * xml-tdesc.h (string_read_description_xml): Add declaration.
12666
12667 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12668
12669         * features/Makefile: Add feature marker to targets with new style
12670         target descriptions.
12671         * regformats/aarch64.dat: Regenerate.
12672         * regformats/i386/amd64-avx-avx512-linux.dat: Likewise.
12673         * regformats/i386/amd64-avx-linux.dat: Likewise.
12674         * regformats/i386/amd64-avx-mpx-avx512-pku-linux.dat: Likewise.
12675         * regformats/i386/amd64-avx-mpx-linux.dat: Likewise.
12676         * regformats/i386/amd64-linux.dat: Likewise.
12677         * regformats/i386/amd64-mpx-linux.dat: Likewise.
12678         * regformats/i386/amd64.dat: Likewise.
12679         * regformats/i386/i386-avx-avx512-linux.dat: Likewise.
12680         * regformats/i386/i386-avx-linux.dat: Likewise.
12681         * regformats/i386/i386-avx-mpx-avx512-pku-linux.dat: Likewise.
12682         * regformats/i386/i386-avx-mpx-linux.dat: Likewise.
12683         * regformats/i386/i386-linux.dat: Likewise.
12684         * regformats/i386/i386-mmx-linux.dat: Likewise.
12685         * regformats/i386/i386-mpx-linux.dat: Likewise.
12686         * regformats/i386/i386.dat: Likewise.
12687         * regformats/i386/x32-avx-avx512-linux.dat: Likewise.
12688         * regformats/i386/x32-avx-linux.dat: Likewise.
12689         * regformats/i386/x32-linux.dat: Likewise.
12690         * regformats/tic6x-c62x-linux.dat: Likewise.
12691         * regformats/tic6x-c64x-linux.dat: Likewise.
12692         * regformats/tic6x-c64xp-linux.dat: Likewise.
12693         * regformats/regdat.sh: Parse feature marker.
12694
12695 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12696
12697         * common/tdesc.h (tdesc_architecture_name): Add new declaration.
12698         (tdesc_osabi_name): Likewise.
12699         * target-descriptions.c (tdesc_architecture_name): Add new
12700         function.
12701         (tdesc_osabi_name): Likewise.
12702
12703 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12704
12705         * common/tdesc.c (tdesc_predefined_type): Move to here.
12706         (tdesc_named_type): Likewise.
12707         (tdesc_create_vector): Likewise.
12708         (tdesc_create_struct): Likewise.
12709         (tdesc_set_struct_size): Likewise.
12710         (tdesc_create_union): Likewise.
12711         (tdesc_create_flags): Likewise.
12712         (tdesc_create_enum): Likewise.
12713         (tdesc_add_field): Likewise.
12714         (tdesc_add_typed_bitfield): Likewise.
12715         (tdesc_add_bitfield): Likewise.
12716         (tdesc_add_flag): Likewise.
12717         (tdesc_add_enum_value): Likewise.
12718         * common/tdesc.h (struct tdesc_type_builtin): Likewise.
12719         (struct tdesc_type_vector): Likewise.
12720         (struct tdesc_type_field): Likewise.
12721         (struct tdesc_type_with_fields): Likewise.
12722         (tdesc_create_enum): Add declaration.
12723         (tdesc_add_typed_bitfield): Likewise.
12724         (tdesc_add_enum_value): Likewise.
12725         * target-descriptions.c (tdesc_type_field): Move from here.
12726         (tdesc_type_builtin): Likewise.
12727         (tdesc_type_vector): Likewise.
12728         (tdesc_type_with_fields): Likewise.
12729         (tdesc_predefined_types): Likewise.
12730         (tdesc_named_type): Likewise.
12731         (tdesc_create_vector): Likewise.
12732         (tdesc_create_struct): Likewise.
12733         (tdesc_set_struct_size): Likewise.
12734         (tdesc_create_union): Likewise.
12735         (tdesc_create_flags): Likewise.
12736         (tdesc_create_enum): Likewise.
12737         (tdesc_add_field): Likewise.
12738         (tdesc_add_typed_bitfield): Likewise.
12739         (tdesc_add_bitfield): Likewise.
12740         (tdesc_add_flag): Likewise.
12741         (tdesc_add_enum_value): Likewise.
12742         * gdb/target-descriptions.h (tdesc_create_enum): Likewise.
12743         (tdesc_add_typed_bitfield): Likewise.
12744         (tdesc_add_enum_value): Likewise.
12745
12746 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12747
12748         * common/tdesc.c (tdesc_feature::accept): Move to here.
12749         (tdesc_feature::operator==): Likewise.
12750         (tdesc_create_reg): Likewise.
12751         * common/tdesc.h (tdesc_type_kind): Likewise.
12752         (struct tdesc_type): Likewise.
12753         (struct tdesc_feature): Likewise.
12754         * regformats/regdat.sh: Create a feature.
12755         * target-descriptions.c (tdesc_type_kind): Move from here.
12756         (tdesc_type): Likewise.
12757         (tdesc_type_up): Likewise.
12758         (tdesc_feature): Likewise.
12759         (tdesc_create_reg): Likewise.
12760
12761 2018-04-18  Alan Hayward  <alan.hayward@arm.com>
12762
12763         * Makefile.in: Add arch/tdesc.c
12764         * common/tdesc.c: New file.
12765         * common/tdesc.h (tdesc_element_visitor): Move to here.
12766         (tdesc_element): Likewise.
12767         (tdesc_reg): Likewise.
12768         (tdesc_reg_up): Likewise.
12769         * regformats/regdef.h (reg): Add offset to constructors.
12770         * target-descriptions.c (tdesc_element_visitor): Move from here.
12771         (tdesc_element): Likewise.
12772         (tdesc_reg): Likewise.
12773         (tdesc_reg_up): Likewise.
12774
12775 2018-04-17  Tom Tromey  <tom@tromey.com>
12776
12777         * dwarf2read.c (quirk_rust_enum): Conditionally drop the
12778         discriminant field.
12779
12780 2018-04-17  Tom Tromey  <tom@tromey.com>
12781
12782         * dwarf2read.c (quirk_rust_enum): Handle unions correctly.
12783
12784 2018-04-17  Andreas Arnez  <arnez@linux.vnet.ibm.com>
12785
12786         * symtab.c (print_symbol_info): Skip printing filename and line
12787         number when `last' is NULL.
12788         (symtab_symbol_info): Use empty string instead of NULL for first
12789         invocation of print_symbol_info.
12790         (rbreak_command): Pass NULL to `last' parameter of
12791         print_symbol_info.
12792
12793 2018-04-16  Simon Marchi  <simon.marchi@ericsson.com>
12794
12795         * linux-tdep.c (linux_spu_make_corefile_notes): Return note_data
12796         instead of nullptr.
12797
12798 2018-04-16  Pedro Alves  <palves@redhat.com>
12799
12800         * MAINTAINERS (sh): Remove.
12801         * Makefile.in (ALL_TARGET_OBS): Remove sh64-tdep.o.
12802         (HFILES_NO_SRCDIR): Remove sh64-tdep.h.
12803         (ALLDEPFILES): Remove sh64-tdep.c.
12804         * NEWS: Mentions that support for SH-5/SH64 is removed.
12805         * configure.tgt (sh*-*-linux*): Remove reference to sh64-tdep.o.
12806         (sh*-*-openbsd*): Ditto.
12807         (sh64-*-elf*): Remove.
12808         (sh*): Remove.
12809         * regcache.c (cooked_write_test): Remove bfd_mach_sh5 case.
12810         * sh-linux-tdep.c: Remove reference to bfd_mach_sh5.
12811         * sh-tdep.c: No longer include "sh64-tdep.h".
12812         (sh_gdbarch_init): Remove reference to bfd_mach_sh5.
12813         * sh64-tdep.c, sh64-tdep.h: Remove files.
12814
12815 2018-04-16  Pedro Alves  <palves@redhat.com>
12816
12817         * MAINTAINERS: Remove m88k.
12818         * Makefile.in (ALL_TARGET_OBS): Remove m88k-tdep.o.
12819         (HFILES_NO_SRCDIR): Remove m88k-tdep.h.
12820         (ALLDEPFILES): Remove m88k-bsd-nat.c and m88k-tdep.c.
12821         * NEWS: Mention that support for m88k was removed.
12822         * configure.host (m88*-*-*): Remove support.
12823         * configure.nat (m88k-*-*): Remove support.
12824         * configure.tgt (m88*-*-openbsd*): Remove.
12825         * m88k-bsd-nat.c, m88k-tdep.c, m88k-tdep.h: Delete.
12826
12827 2018-04-15  Simon Marchi  <simon.marchi@polymtl.ca>
12828
12829         * configure.tgt (x86_tobjs): New variable.
12830         (amd64_tobjs, i386_tobjs): Use it.
12831
12832 2018-04-13  Andreas Arnez  <arnez@linux.vnet.ibm.com>
12833
12834         * symtab.c (print_symbol_info): Precede the symbol definition by
12835         the line number when available.
12836         * NEWS: Advertise this enhancement.
12837
12838 2018-04-13  Markus Metzger  <markus.t.metzger@intel.com>
12839
12840         * NEWS (New options): announce set/show record btrace cpu.
12841         * btrace.c: Include record-btrace.h.
12842         (btrace_compute_ftrace_pt): Skip enabling errata workarounds if
12843         the vendor is unknown.
12844         (btrace_compute_ftrace_1): Add cpu parameter.  Update callers.
12845         Maybe overwrite the btrace configuration's cpu.
12846         (btrace_compute_ftrace): Add cpu parameter.  Update callers.
12847         (btrace_fetch): Add cpu parameter.  Update callers.
12848         (btrace_maint_update_pt_packets): Call record_btrace_get_cpu.
12849         Maybe overwrite the btrace configuration's cpu.  Skip enabling
12850         errata workarounds if the vendor is unknown.
12851         * python/py-record-btrace.c: Include record-btrace.h.
12852         (recpy_bt_begin, recpy_bt_end, recpy_bt_instruction_history)
12853         (recpy_bt_function_call_history): Call record_btrace_get_cpu.
12854         * record-btrace.c (record_btrace_cpu_state_kind): New.
12855         (record_btrace_cpu): New.
12856         (set_record_btrace_cpu_cmdlist): New.
12857         (record_btrace_get_cpu): New.
12858         (require_btrace_thread, record_btrace_info)
12859         (record_btrace_resume_thread): Call record_btrace_get_cpu.
12860         (cmd_set_record_btrace_cpu_none): New.
12861         (cmd_set_record_btrace_cpu_auto): New.
12862         (cmd_set_record_btrace_cpu): New.
12863         (cmd_show_record_btrace_cpu): New.
12864         (_initialize_record_btrace): Initialize set/show record btrace cpu
12865         commands.
12866         * record-btrace.h (record_btrace_get_cpu): New.
12867
12868 2018-04-13  Markus Metzger  <markus.t.metzger@intel.com>
12869
12870         * record.c (set_record_command): Fix typo in message.
12871
12872 2018-04-13  Markus Metzger  <markus.t.metzger@intel.com>
12873
12874         * record-btrace.c (cmd_set_record_btrace): Print sub-commands.
12875
12876 2018-04-13  Markus Metzger  <markus.t.metzger@intel.com>
12877
12878         * infrun.c (process_event_stop_test): Call
12879         gdbarch_in_indirect_branch_thunk.
12880         * gdbarch.sh (in_indirect_branch_thunk): New.
12881         * gdbarch.c: Regenerated.
12882         * gdbarch.h: Regenerated.
12883         * x86-tdep.h: New.
12884         * x86-tdep.c: New.
12885         * Makefile.in (ALL_TARGET_OBS): Add x86-tdep.o.
12886         (HFILES_NO_SRCDIR): Add x86-tdep.h.
12887         (ALLDEPFILES): Add x86-tdep.c.
12888         * arch-utils.h (default_in_indirect_branch_thunk): New.
12889         * arch-utils.c (default_in_indirect_branch_thunk): New.
12890         * i386-tdep: Include x86-tdep.h.
12891         (i386_in_indirect_branch_thunk): New.
12892         (i386_elf_init_abi): Set in_indirect_branch_thunk gdbarch
12893         function.
12894         * amd64-tdep: Include x86-tdep.h.
12895         (amd64_in_indirect_branch_thunk): New.
12896         (amd64_init_abi): Set in_indirect_branch_thunk gdbarch function.
12897
12898 2018-04-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
12899
12900         PR gdb/23053
12901         * dwarf-index-write.c (data_buf::grow) (write_one_signatured_type)
12902         (recursively_write_psymbols) (debug_names::recursively_write_psymbols)
12903         (debug_names::write_one_signatured_type): Fix -D_GLIBCXX_DEBUG
12904         regression.
12905
12906 2018-04-12  Tom Tromey  <tom@tromey.com>
12907
12908         * rust-lang.c (rust_print_struct_def): Remove univariant code.
12909         (rust_evaluate_subexp): Likewise.
12910
12911 2018-04-12  Pedro Alves  <palves@redhat.com>
12912
12913         * procfs.c (procfs_detach): Make forward declaration's prototype
12914         match definition's protototype.
12915         (proc_get_LDT_entry): Remove stale do_cleanups call.
12916
12917 2018-04-12  Pedro Alves  <palves@redhat.com>
12918
12919         * target.h (target_ops::to_has_exited): Delete.
12920         (target_has_exited): Delete.
12921         * target-delegates.c: Regenerate.
12922
12923 2018-04-11  Pedro Alves  <palves@redhat.com>
12924
12925         * target.c (fileio_fh_t::t): Add comment.
12926         (target_fileio_pwrite, target_fileio_pread, target_fileio_fstat)
12927         (target_fileio_close): Handle a NULL target.
12928         (invalidate_fileio_fh): New.
12929         (target_close): Call it.
12930         * remote.c (remote_hostio_send_command): No longer check whether
12931         remote_desc is open.
12932
12933 2018-04-11  Pedro Alves  <palves@redhat.com>
12934
12935         * target.c (fileio_fh_t): Make it a named struct instead of a
12936         typedef.
12937         (fileio_fh_t::is_closed): New method.
12938         (DEF_VEC_O (fileio_fh_t)): Remove.
12939         (fileio_fhandles): Now a std::vector.
12940         (is_closed_fileio_fh): Delete.
12941         (acquire_fileio_fd): Adjust.  Rename parameters.
12942         (release_fileio_fd): Adjust.
12943         (fileio_fd_to_fh): Reimplement as a function instead of a macro.
12944         (target_fileio_pwrite, target_fileio_pread, target_fileio_fstat)
12945         (target_fileio_close): Adjust.
12946
12947 2018-04-10  Simon Marchi  <simon.marchi@ericsson.com>
12948
12949         * auto-load.c (auto_load_safe_path_vec_update): Iterate by
12950         index.
12951
12952 2018-04-10  Pedro Alves  <palves@redhat.com>
12953
12954         * gdbthread.h (finish_thread_state_cleanup): Delete declaration.
12955         (scoped_finish_thread_state): New class.
12956         * infcmd.c (run_command_1): Use it instead of finish_thread_state
12957         cleanup.
12958         * infrun.c (proceed, prepare_for_detach, wait_for_inferior)
12959         (fetch_inferior_event, normal_stop): Likewise.
12960         * thread.c (finish_thread_state_cleanup): Delete.
12961
12962 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12963             Pedro Alves  <palves@redhat.com>
12964
12965         * value.c: Include "selftest.h" and "common/array-view.h".
12966         (struct range) <operator ==>: New.
12967         (test_ranges_contain): New.
12968         (check_ranges_vector): New.
12969         (test_insert_into_bit_range_vector): New.
12970         (_initialize_values): Register selftests.
12971         * common/array-view.h (operator==, operator!=): New.
12972
12973 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12974
12975         * common/gdb_vecs.h (unordered_remove): Add overload that takes
12976         an iterator.
12977         * inline-frame.c: Include <algorithm>.
12978         (struct inline_state): Add constructor.
12979         (inline_state_s): Remove.
12980         (DEF_VEC_O(inline_state_s)): Remove.
12981         (inline_states): Change type to std::vector.
12982         (find_inline_frame_state): Adjust to std::vector.
12983         (allocate_inline_frame_state): Remove.
12984         (clear_inline_frame_state): Adjust to std::vector.
12985         (skip_inline_frames): Adjust to std::vector.
12986
12987 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
12988
12989         * tracepoint.h (struct trace_state_variable): Add constructor.
12990         <name>: Change type to std::string.
12991         * tracepoint.c (tsv_s): Remove.
12992         (DEF_VEC_O(tsv_s)): Remove.
12993         (tvariables): Change to std::vector.
12994         (create_trace_state_variable): Adjust to std::vector.
12995         (find_trace_state_variable): Likewise.
12996         (find_trace_state_variable_by_number): Likewise.
12997         (delete_trace_state_variable): Likewise.
12998         (trace_variable_command): Adjust to std::string.
12999         (delete_trace_variable_command): Likewise.
13000         (tvariables_info_1): Adjust to std::vector.
13001         (save_trace_state_variables): Likewise.
13002         (start_tracing): Likewise.
13003         (merge_uploaded_trace_state_variables): Adjust to std::vector
13004         and std::string.
13005         * target.h (struct target_ops)
13006         <to_download_trace_state_variable>: Pass reference to
13007         trace_state_variable.
13008         * target-debug.h (target_debug_print_const_trace_state_variable_r): New.
13009         * target-delegates.c: Re-generate.
13010         * mi/mi-interp.c (mi_tsv_created): Adjust to std::string.
13011         (mi_tsv_deleted): Likewise.
13012         * mi/mi-main.c (mi_cmd_trace_frame_collected): Likewise.
13013         * remote.c (remote_download_trace_state_variable): Change
13014         pointer to reference and adjust.
13015         * make-target-delegates (parse_argtypes): Handle references.
13016         (write_function_header): Likewise.
13017         (munge_type): Likewise.
13018
13019 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
13020
13021         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
13022         string_view-selftests.c.
13023         * unittests/basic_string_view/capacity/1.cc: Adapt to GDB
13024         testsuite.
13025         * unittests/basic_string_view/cons/char/1.cc: Likewise.
13026         * unittests/basic_string_view/cons/char/2.cc: Likewise.
13027         * unittests/basic_string_view/cons/char/3.cc: Likewise.
13028         * unittests/basic_string_view/element_access/char/1.cc:
13029         Likewise.
13030         * unittests/basic_string_view/element_access/char/empty.cc:
13031         Likewise.
13032         * unittests/basic_string_view/element_access/char/front_back.cc:
13033         Likewise.
13034         * unittests/basic_string_view/inserters/char/2.cc: Likewise.
13035         * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc:
13036         Likewise.
13037         * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc:
13038         Likewise.
13039         * unittests/basic_string_view/modifiers/swap/char/1.cc:
13040         Likewise.
13041         * unittests/basic_string_view/operations/compare/char/1.cc:
13042         Likewise.
13043         * unittests/basic_string_view/operations/compare/char/13650.cc:
13044         Likewise.
13045         * unittests/basic_string_view/operations/copy/char/1.cc:
13046         Likewise.
13047         * unittests/basic_string_view/operations/data/char/1.cc:
13048         Likewise.
13049         * unittests/basic_string_view/operations/find/char/1.cc:
13050         Likewise.
13051         * unittests/basic_string_view/operations/find/char/2.cc:
13052         Likewise.
13053         * unittests/basic_string_view/operations/find/char/3.cc:
13054         Likewise.
13055         * unittests/basic_string_view/operations/find/char/4.cc:
13056         Likewise.
13057         * unittests/basic_string_view/operations/rfind/char/1.cc:
13058         Likewise.
13059         * unittests/basic_string_view/operations/rfind/char/2.cc:
13060         Likewise.
13061         * unittests/basic_string_view/operations/rfind/char/3.cc:
13062         Likewise.
13063         * unittests/basic_string_view/operations/substr/char/1.cc:
13064         Likewise.
13065         * unittests/basic_string_view/operators/char/2.cc: Likewise.
13066         * unittests/string_view-selftests.c: New file.
13067
13068 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
13069
13070         * unittests/basic_string_view/capacity/1.cc: New file.
13071         * unittests/basic_string_view/capacity/empty_neg.cc: New file.
13072         * unittests/basic_string_view/cons/char/1.cc: New file.
13073         * unittests/basic_string_view/cons/char/2.cc: New file.
13074         * unittests/basic_string_view/cons/char/3.cc: New file.
13075         * unittests/basic_string_view/cons/wchar_t/1.cc: New file.
13076         * unittests/basic_string_view/cons/wchar_t/2.cc: New file.
13077         * unittests/basic_string_view/cons/wchar_t/3.cc: New file.
13078         * unittests/basic_string_view/element_access/char/1.cc: New file.
13079         * unittests/basic_string_view/element_access/char/2.cc: New file.
13080         * unittests/basic_string_view/element_access/char/empty.cc: New file.
13081         * unittests/basic_string_view/element_access/char/front_back.cc: New file.
13082         * unittests/basic_string_view/element_access/wchar_t/1.cc: New file.
13083         * unittests/basic_string_view/element_access/wchar_t/2.cc: New file.
13084         * unittests/basic_string_view/element_access/wchar_t/empty.cc: New file.
13085         * unittests/basic_string_view/element_access/wchar_t/front_back.cc: New file.
13086         * unittests/basic_string_view/include.cc: New file.
13087         * unittests/basic_string_view/inserters/char/1.cc: New file.
13088         * unittests/basic_string_view/inserters/char/2.cc: New file.
13089         * unittests/basic_string_view/inserters/char/3.cc: New file.
13090         * unittests/basic_string_view/inserters/pod/10081-out.cc: New file.
13091         * unittests/basic_string_view/inserters/wchar_t/1.cc: New file.
13092         * unittests/basic_string_view/inserters/wchar_t/2.cc: New file.
13093         * unittests/basic_string_view/inserters/wchar_t/3.cc: New file.
13094         * unittests/basic_string_view/literals/types.cc: New file.
13095         * unittests/basic_string_view/literals/values.cc: New file.
13096         * unittests/basic_string_view/modifiers/remove_prefix/char/1.cc: New file.
13097         * unittests/basic_string_view/modifiers/remove_prefix/wchar_t/1.cc: New file.
13098         * unittests/basic_string_view/modifiers/remove_suffix/char/1.cc: New file.
13099         * unittests/basic_string_view/modifiers/remove_suffix/wchar_t/1.cc: New file.
13100         * unittests/basic_string_view/modifiers/swap/char/1.cc: New file.
13101         * unittests/basic_string_view/modifiers/swap/wchar_t/1.cc: New file.
13102         * unittests/basic_string_view/operations/compare/char/1.cc: New file.
13103         * unittests/basic_string_view/operations/compare/char/13650.cc: New file.
13104         * unittests/basic_string_view/operations/compare/char/2.cc: New file.
13105         * unittests/basic_string_view/operations/compare/char/70483.cc: New file.
13106         * unittests/basic_string_view/operations/compare/wchar_t/1.cc: New file.
13107         * unittests/basic_string_view/operations/compare/wchar_t/13650.cc: New file.
13108         * unittests/basic_string_view/operations/compare/wchar_t/2.cc: New file.
13109         * unittests/basic_string_view/operations/copy/char/1.cc: New file.
13110         * unittests/basic_string_view/operations/copy/wchar_t/1.cc: New file.
13111         * unittests/basic_string_view/operations/data/char/1.cc: New file.
13112         * unittests/basic_string_view/operations/data/wchar_t/1.cc: New file.
13113         * unittests/basic_string_view/operations/find/char/1.cc: New file.
13114         * unittests/basic_string_view/operations/find/char/2.cc: New file.
13115         * unittests/basic_string_view/operations/find/char/3.cc: New file.
13116         * unittests/basic_string_view/operations/find/char/4.cc: New file.
13117         * unittests/basic_string_view/operations/find/wchar_t/1.cc: New file.
13118         * unittests/basic_string_view/operations/find/wchar_t/2.cc: New file.
13119         * unittests/basic_string_view/operations/find/wchar_t/3.cc: New file.
13120         * unittests/basic_string_view/operations/find/wchar_t/4.cc: New file.
13121         * unittests/basic_string_view/operations/rfind/char/1.cc: New file.
13122         * unittests/basic_string_view/operations/rfind/char/2.cc: New file.
13123         * unittests/basic_string_view/operations/rfind/char/3.cc: New file.
13124         * unittests/basic_string_view/operations/rfind/wchar_t/1.cc: New file.
13125         * unittests/basic_string_view/operations/rfind/wchar_t/2.cc: New file.
13126         * unittests/basic_string_view/operations/rfind/wchar_t/3.cc: New file.
13127         * unittests/basic_string_view/operations/string_conversion/1.cc: New file.
13128         * unittests/basic_string_view/operations/substr/char/1.cc: New file.
13129         * unittests/basic_string_view/operations/substr/wchar_t/1.cc: New file.
13130         * unittests/basic_string_view/operators/char/2.cc: New file.
13131         * unittests/basic_string_view/operators/wchar_t/2.cc: New file.
13132         * unittests/basic_string_view/range_access/char/1.cc: New file.
13133         * unittests/basic_string_view/range_access/wchar_t/1.cc: New file.
13134         * unittests/basic_string_view/requirements/explicit_instantiation/1.cc: New file.
13135         * unittests/basic_string_view/requirements/explicit_instantiation/char/1.cc: New file.
13136         * unittests/basic_string_view/requirements/explicit_instantiation/char16_t/1.cc: New file.
13137         * unittests/basic_string_view/requirements/explicit_instantiation/char32_t/1.cc: New file.
13138         * unittests/basic_string_view/requirements/explicit_instantiation/wchar_t/1.cc: New file.
13139         * unittests/basic_string_view/requirements/typedefs.cc: New file.
13140         * unittests/basic_string_view/typedefs.cc: New file.
13141         * unittests/basic_string_view/types/1.cc: New file.
13142
13143 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
13144
13145         * common/gdb_string_view.h: Remove libstdc++ implementation
13146         details, adjust to gdb reality.
13147         * common/gdb_string_view.tcc: Likewise.
13148         * cli/cli-script.c (struct string_view): Remove.
13149         (user_args) <m_args>: Change element type to gdb::string_view.
13150         (user_args::insert_args): Adjust.
13151
13152 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
13153
13154         * common/gdb_string_view.h: New file.
13155         * common/gdb_string_view.tcc: New file.
13156
13157 2018-04-09  Simon Marchi  <simon.marchi@polymtl.ca>
13158
13159         * ax_cxx_compile_stdcxx.m4: Sync with upstream.
13160         * configure: Re-generate.
13161
13162 2018-04-09  Pedro Alves  <palves@redhat.com>
13163
13164         * gdbarch.sh: Include "observable.h" instead of "observer.h".
13165         (set_target_gdbarch): Call
13166         gdb::observers::architecture_changed.notify instead of
13167         observer_notify_architecture_changed.
13168
13169 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
13170
13171         * tracepoint.c (struct current_traceframe_cleanup): Remove.
13172         (do_restore_current_traceframe_cleanup): Remove.
13173         (restore_current_traceframe_cleanup_dtor): Remove.
13174         (make_cleanup_restore_current_traceframe): Remove.
13175         (scoped_restore_current_traceframe::scoped_restore_current_traceframe):
13176         New.
13177         * tracepoint.h (struct scoped_restore_current_traceframe): New.
13178         * infrun.c (fetch_inferior_event): Use
13179         scoped_restore_current_traceframe.
13180
13181 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
13182
13183         * dwarf2read.h (struct dwarf2_per_objfile) <n_type_units>:
13184         Remove.
13185         <n_allocated_type_units>: Remove.
13186         <all_type_units>: Change to std::vector.
13187         * dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile): Adjust
13188         to std::vector change.
13189         (dwarf2_per_objfile::get_cutu): Likewise.
13190         (dwarf2_per_objfile::get_tu): Likewise.
13191         (create_signatured_type_table_from_index): Likewise.
13192         (create_signatured_type_table_from_debug_names): Likewise.
13193         (dw2_symtab_iter_next): Likewise.
13194         (dw2_print_stats): Likewise.
13195         (dw2_expand_all_symtabs): Likewise.
13196         (dw2_expand_marked_cus): Likewise.
13197         (dw2_debug_names_iterator::next): Likewise.
13198         (dwarf2_initialize_objfile): Likewise.
13199         (add_signatured_type_cu_to_table): Likewise.
13200         (create_all_type_units): Likewise.
13201         (add_type_unit): Likewise.
13202         (struct tu_abbrev_offset): Add constructor.
13203         (build_type_psymtabs_1): Adjust to std::vector change.
13204         (print_tu_stats): Likewise.
13205         * dwarf-index-write.c (check_dwarf64_offsets): Likewise.
13206         (write_debug_names): Likewise.
13207
13208 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
13209
13210         * dwarf2read.h (struct dwarf2_per_objfile) <all_comp_units>: Likewise.
13211         Make an std::vector.
13212         <n_comp_units>: Remove.
13213         * dwarf2read.c (dwarf2_per_objfile::~dwarf2_per_objfile): Adjust
13214         to std::vector change.
13215         (dwarf2_per_objfile::get_cutu): Likewise.
13216         (dwarf2_per_objfile::get_cu): Likewise.
13217         (create_cus_from_index): Likewise.
13218         (create_addrmap_from_index): Likewise.
13219         (create_addrmap_from_aranges): Likewise.
13220         (dwarf2_read_index): Likewise.
13221         (dw2_find_last_source_symtab): Likewise.
13222         (dw2_map_symtabs_matching_filename): Likewise.
13223         (dw2_symtab_iter_next): Likewise.
13224         (dw2_print_stats): Likewise.
13225         (dw2_expand_all_symtabs): Likewise.
13226         (dw2_expand_symtabs_with_fullname): Likewise.
13227         (dw2_expand_marked_cus): Likewise.
13228         (dw2_map_symbol_filenames): Likewise.
13229         (create_cus_from_debug_names): Likewise.
13230         (dwarf2_read_debug_names): Likewise.
13231         (dw2_debug_names_iterator::next): Likewise.
13232         (dwarf2_initialize_objfile): Likewise.
13233         (set_partial_user): Likewise.
13234         (dwarf2_build_psymtabs_hard): Likewise.
13235         (read_comp_units_from_section): Remove arguments, adjust to
13236         std::vector change.
13237         (create_all_comp_units): Adjust to std::vector and
13238         read_comp_units_from_section changes.
13239         (dwarf2_find_containing_comp_unit): Adjust to std::vector
13240         change.
13241         * dwarf-index-write.c (check_dwarf64_offsets): Likewise.
13242         (psyms_seen_size): Likewise.
13243         (write_gdbindex): Likewise.
13244         (write_debug_names): Likewise.
13245
13246 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
13247
13248         * dwarf2read.c (create_cus_from_index_list): Replace objfile arg
13249         with dwarf2_per_objfile.
13250         (create_cus_from_index): Likewise.
13251         (create_signatured_type_table_from_index): Likewise.
13252         (dwarf2_read_index): Likewise.
13253         (dwarf2_initialize_objfile): Likewise.
13254         (dwarf2_fetch_die_loc_sect_off):  Get dwarf2_per_objfile from
13255         per_cu rather than get_dwarf2_per_objfile.
13256
13257 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
13258
13259         * dwarf2read.h (struct signatured_type): Forward declare.
13260         (struct dwarf2_per_objfile) <get_cutu, get_cu, get_tu>:
13261         New methods.
13262         * dwarf2read.c (dwarf2_per_objfile::get_cutu): Rename from...
13263         (dw2_get_cutu): ...this.
13264         (dwarf2_per_objfile::get_cu): Rename from...
13265         (dw2_get_cu): ...this.
13266         (dwarf2_per_objfile::get_tu): New.
13267         (create_addrmap_from_index): Adjust.
13268         (create_addrmap_from_aranges): Adjust.
13269         (dw2_find_last_source_symtab): Adjust.
13270         (dw2_map_symtabs_matching_filename): Adjust.
13271         (dw2_symtab_iter_next): Adjust.
13272         (dw2_print_stats): Adjust.
13273         (dw2_expand_all_symtabs): Adjust.
13274         (dw2_expand_symtabs_with_fullname): Adjust.
13275         (dw2_expand_marked_cus): Adjust.
13276         (dw_expand_symtabs_matching_file_matcher): Adjust.
13277         (dw2_map_symbol_filenames): Adjust.
13278         (dw2_debug_names_iterator::next): Adjust.
13279         (dwarf2_initialize_objfile): Adjust.
13280         (set_partial_user): Adjust.
13281         (dwarf2_build_psymtabs_hard): Adjust.
13282
13283 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
13284
13285         * dwarf2read.c (create_signatured_type_table_from_debug_names):
13286         Remove unused variables.
13287         (dw2_map_symtabs_matching_filename): Likewise.
13288         (dwarf2_record_block_ranges): Likewise.
13289         (dwarf2_read_addr_index): Likewise.
13290         (follow_die_offset): Likewise.
13291
13292 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
13293
13294         * progspace.c (clone_program_space): Pass SYMFILE_DEFER_BP_RESET
13295         to symbol_file_add_main.
13296
13297 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
13298
13299         PR mi/22299
13300         * mi/mi-console.c (do_fputc_async_safe): New.
13301         (mi_console_file::write_async_safe): New.
13302         (mi_console_file::flush): Adjust calls to fputstrn_unfiltered.
13303         * mi/mi-console.h (class mi_console_file) <write_async_safe>:
13304         New.
13305         * ui-file.c (ui_file::putstrn): Adjust call to
13306         fputstrn_unfiltered.
13307         * utils.c (printchar): Replace do_fputs and do_fprintf
13308         parameters by do_fputc.
13309         (fputstr_filtered): Adjust call to printchar.
13310         (fputstr_unfiltered): Likewise.
13311         (fputstrn_filtered): Likewise.
13312         (fputstrn_unfiltered): Add do_fputc parameter, pass to
13313         printchar.
13314         * utils.h (do_fputc_ftype): New typedef.
13315         (fputstrn_unfiltered): Add do_fputc parameter.
13316
13317 2018-04-07  Simon Marchi  <simon.marchi@polymtl.ca>
13318
13319         * regformats/i386/i386-avx.dat: Remove.
13320
13321 2018-04-07  Simon Marchi  <simon.marchi@ericsson.com>
13322
13323         PR gdb/22979
13324         * amd64-tdep.c (amd64_none_init_abi): New function.
13325         (amd64_x32_none_init_abi): New function.
13326         (_initialize_amd64_tdep): Register handlers for x86-64 and
13327         x64_32 with GDB_OSABI_NONE.
13328         * osabi.c (gdbarch_init_osabi): Allow running handlers for the
13329         GDB_OSABI_NONE osabi.
13330
13331 2018-04-07  Simon Marchi  <simon.marchi@ericsson.com>
13332
13333         PR gdb/22980
13334         * defs.h (enum gdb_osabi): Remove GDB_OSABI_UNINITIALIZED, add
13335         GDB_OSABI_NONE.
13336         * arch-utils.c (gdbarch_info_init): Don't set info->osabi.
13337         * osabi.c (gdb_osabi_names): Add "unknown" entry.
13338
13339 2018-04-07  Simon Marchi  <simon.marchi@ericsson.com>
13340
13341         * common/byte-vector.h (char_vector): New type.
13342         * target.h (target_read_alloc): Return
13343         gdb::optional<byte_vector>.
13344         (target_read_stralloc): Return gdb::optional<char_vector>.
13345         (target_get_osdata): Return gdb::optional<char_vector>.
13346         * target.c (target_read_alloc_1): Templatize.  Replacement
13347         manual memory management with vector.
13348         (target_read_alloc): Change return type, adjust.
13349         (target_read_stralloc): Change return type, adjust.
13350         (target_get_osdata): Change return type, adjust.
13351         * auxv.c (struct auxv_info) <length>: Remove.
13352         <data>: Change type to gdb::optional<byte_vector>.
13353         (auxv_inferior_data_cleanup): Free auxv_info with delete.
13354         (get_auxv_inferior_data): Allocate auxv_info with new, adjust.
13355         (target_auxv_search): Adjust.
13356         (fprint_target_auxv): Adjust.
13357         * avr-tdep.c (avr_io_reg_read_command): Adjust.
13358         * linux-tdep.c (linux_spu_make_corefile_notes): Adjust.
13359         (linux_make_corefile_notes): Adjust.
13360         * osdata.c (get_osdata): Adjust.
13361         * remote.c (remote_get_threads_with_qxfer): Adjust.
13362         (remote_memory_map): Adjust.
13363         (remote_traceframe_info): Adjust.
13364         (btrace_read_config): Adjust.
13365         (remote_read_btrace): Adjust.
13366         (remote_pid_to_exec_file): Adjust.
13367         * solib-aix.c (solib_aix_get_library_list): Adjust.
13368         * solib-dsbt.c (decode_loadmap): Don't free buf.
13369         (dsbt_get_initial_loadmaps): Adjust.
13370         * solib-svr4.c (svr4_current_sos_via_xfer_libraries): Adjust.
13371         * solib-target.c (solib_target_current_sos): Adjust.
13372         * tracepoint.c (sdata_make_value): Adjust.
13373         * xml-support.c (xinclude_start_include): Adjust.
13374         (xml_fetch_content_from_file): Adjust.
13375         * xml-support.h (xml_fetch_another): Change return type.
13376         (xml_fetch_content_from_file): Change return type.
13377         * xml-syscall.c (xml_init_syscalls_info): Adjust.
13378         * xml-tdesc.c (file_read_description_xml): Adjust.
13379         (fetch_available_features_from_target): Change return type.
13380         (target_fetch_description_xml): Adjust.
13381         (target_read_description_xml): Adjust.
13382
13383 2018-04-06  Tom Tromey  <tom@tromey.com>
13384
13385         * value.c (~value): Update.
13386         (struct value) <contents>: Now unique_xmalloc_ptr.
13387         (value_contents_bits_eq, allocate_value_contents)
13388         (value_contents_raw, value_contents_all_raw)
13389         (value_contents_for_printing, value_contents_for_printing_const)
13390         (set_value_enclosing_type): Update.
13391
13392 2018-04-06  Tom Tromey  <tom@tromey.com>
13393
13394         * value.c (range_s): Remove typedef, VEC.
13395         (struct range): Add operator<.
13396         (range_lessthan): Remove.
13397         (ranges_contain): Change type.
13398         (~value): Update.
13399         (struct value) <unavailable, optimized_out>: Now std::vector.
13400         (value_entirely_available)
13401         (value_entirely_covered_by_range_vector)
13402         (value_entirely_unavailable, value_entirely_optimized_out):
13403         Update.
13404         (insert_into_bit_range_vector): Change argument type.
13405         (find_first_range_overlap): Likewise.
13406         (struct ranges_and_idx, value_contents_bits_eq)
13407         (require_not_optimized_out, require_available): Update.
13408         (ranges_copy_adjusted): Change argument types.
13409         (value_optimized_out, value_copy, value_fetch_lazy): Update.
13410
13411 2018-04-06  Tom Tromey  <tom@tromey.com>
13412
13413         * value.c (~value): Update.
13414         (struct value) <parent>: Now a value_ref_ptr.
13415         (value_parent, set_value_parent, value_address, value_copy):
13416         Update.
13417
13418 2018-04-06  Tom Tromey  <tom@tromey.com>
13419
13420         * value.c (struct value): Add constructor, destructor, and member
13421         initializers.
13422         (allocate_value_lazy, value_decref): Update.
13423
13424 2018-04-06  Tom Tromey  <tom@tromey.com>
13425
13426         * value.c (struct value) <released, next>: Remove.
13427         (all_values): Now a std::vector.
13428         (allocate_value_lazy): Update.
13429         (value_next): Remove.
13430         (value_mark, value_free_to_mark, release_value)
13431         (value_release_to_mark): Update.
13432
13433 2018-04-06  Tom Tromey  <tom@tromey.com>
13434
13435         * value.h (fetch_subexp_value, value_release_to_mark): Update.
13436         (free_value_chain): Remove.
13437         * value.c (free_value_chain): Remove.
13438         (value_release_to_mark): Return a std::vector.
13439         * ppc-linux-nat.c (num_memory_accesses): Change "chain" to a
13440         std::vector.
13441         (check_condition): Update.
13442         * eval.c (fetch_subexp_value): Change "val_chain" to a
13443         std::vector.
13444         * breakpoint.c (update_watchpoint): Update.
13445         (can_use_hardware_watchpoint): Change "vals" to a std::vector.
13446
13447 2018-04-06  Tom Tromey  <tom@tromey.com>
13448
13449         * value.h (free_all_values): Remove.
13450         * value.c (free_all_values): Remove.
13451
13452 2018-04-06  Tom Tromey  <tom@tromey.com>
13453
13454         * value.c (VALUE_HISTORY_CHUNK, struct value_history_chunk)
13455         (value_history_chain, value_history_count): Remove.
13456         (value_history): New global.
13457         (record_latest_value, access_value_history, show_values)
13458         (preserve_values): Update.
13459
13460 2018-04-06  Tom Tromey  <tom@tromey.com>
13461
13462         * varobj.h (struct varobj) <value>: Now a value_ref_ptr.
13463         * varobj.c (varobj_set_display_format, varobj_set_value)
13464         (install_default_visualizer, construct_visualizer)
13465         (install_new_value, ~varobj, varobj_get_value_type)
13466         (my_value_of_variable, varobj_editable_p): Update.
13467         * c-varobj.c (c_describe_child, c_value_of_variable)
13468         (cplus_number_of_children, cplus_describe_child): Update.
13469         * ada-varobj.c (ada_number_of_children, ada_name_of_child)
13470         (ada_path_expr_of_child, ada_value_of_child, ada_type_of_child)
13471         (ada_value_of_variable, ada_value_is_changeable_p): Update.
13472
13473 2018-04-06  Tom Tromey  <tom@tromey.com>
13474
13475         * printcmd.c (last_examine_address): Change type to
13476         value_ref_ptr.
13477         (do_examine, x_command): Update.
13478
13479 2018-04-06  Tom Tromey  <tom@tromey.com>
13480
13481         * value.c (release_value): Update.
13482         * breakpoint.h (struct watchpoint) <val>: Now a value_ref_ptr.
13483         (struct bpstats) <val>: Now a value_ref_ptr.
13484         * breakpoint.c (update_watchpoint, breakpoint_init_inferior)
13485         (~bpstats, bpstats, bpstat_clear_actions, watchpoint_check)
13486         (~watchpoint, print_it_watchpoint, watch_command_1)
13487         (invalidate_bp_value_on_memory_change): Update.
13488
13489 2018-04-06  Tom Tromey  <tom@tromey.com>
13490
13491         * varobj.c (varobj_clear_saved_item)
13492         (update_dynamic_varobj_children, install_new_value, ~varobj):
13493         Update.
13494         * value.h (value_incref): Move declaration earlier.
13495         (value_decref): Rename from value_free.
13496         (struct value_ref_policy): New.
13497         (value_ref_ptr): New typedef.
13498         (struct value_deleter): Remove.
13499         (gdb_value_up): Remove typedef.
13500         (release_value): Change return type.
13501         (release_value_or_incref): Remove.
13502         * value.c (set_value_parent): Update.
13503         (value_incref): Change return type.
13504         (value_decref): Rename from value_free.
13505         (value_free_to_mark, free_all_values, free_value_chain): Update.
13506         (release_value): Return value_ref_ptr.
13507         (release_value_or_incref): Remove.
13508         (record_latest_value, set_internalvar, clear_internalvar):
13509         Update.
13510         * stack.c (info_frame_command): Don't call value_free.
13511         * python/py-value.c (valpy_dealloc, valpy_new)
13512         (value_to_value_object): Update.
13513         * printcmd.c (do_examine): Update.
13514         * opencl-lang.c (lval_func_free_closure): Update.
13515         * mi/mi-main.c (register_changed_p): Don't call value_free.
13516         * mep-tdep.c (mep_frame_prev_register): Don't call value_free.
13517         * m88k-tdep.c (m88k_frame_prev_register): Don't call value_free.
13518         * m68hc11-tdep.c (m68hc11_frame_prev_register): Don't call
13519         value_free.
13520         * guile/scm-value.c (vlscm_free_value_smob)
13521         (vlscm_scm_from_value): Update.
13522         * frame.c (frame_register_unwind, frame_unwind_register_signed)
13523         (frame_unwind_register_unsigned, get_frame_register_bytes)
13524         (put_frame_register_bytes): Don't call value_free.
13525         * findvar.c (address_from_register): Don't call value_free.
13526         * dwarf2read.c (dwarf2_compute_name): Don't call value_free.
13527         * dwarf2loc.c (entry_data_value_free_closure)
13528         (value_of_dwarf_reg_entry, free_pieced_value_closure)
13529         (dwarf2_evaluate_loc_desc_full): Update.
13530         * breakpoint.c (update_watchpoint, breakpoint_init_inferior)
13531         (~bpstats, bpstats, bpstat_clear_actions, watchpoint_check)
13532         (~watchpoint, watch_command_1)
13533         (invalidate_bp_value_on_memory_change): Update.
13534         * alpha-tdep.c (alpha_register_to_value): Don't call value_free.
13535
13536 2018-04-06  Simon Marchi  <simon.marchi@polymtl.ca>
13537
13538         PR gdb/23022
13539         * warning.m4: Add -Wno-error=deprecated-register.
13540         * configure: Re-generate.
13541
13542 2018-04-05  Tom Tromey  <tom@tromey.com>
13543
13544         * linespec.h: Remove include of "vec.h".
13545
13546 2018-04-05  Tom Tromey  <tom@tromey.com>
13547
13548         * linespec.c (typep): Remove typedef.
13549         (find_methods, find_superclass_methods): Take a std::vector.
13550         (find_method): Use std::vector.
13551
13552 2018-04-05  Tom Tromey  <tom@tromey.com>
13553
13554         * utils.c (compare_strings): Remove.
13555         * utils.h (compare_strings): Remove.
13556         * objc-lang.h (find_imps): Update.
13557         * objc-lang.c (find_methods): Take a std::vector.
13558         (uniquify_strings, find_imps): Likewise.
13559         * linespec.c (find_methods): Take a std::vector.
13560         (decode_objc): Use std::vector.
13561         (add_all_symbol_names_from_pspace, find_superclass_methods): Take
13562         a std::vector.
13563         (find_method, find_function_symbols): Use std::vector.
13564
13565 2018-04-05  Tom Tromey  <tom@tromey.com>
13566
13567         * completer.c (completion_tracker::completion_tracker): Remove
13568         cast.
13569         (completion_tracker::discard_completions): Likewise.
13570         * breakpoint.c (ambiguous_names_p): Remove cast.
13571         * ada-lang.c (_initialize_ada_language): Remove cast.
13572         * utils.h (streq): Update.
13573         (streq_hash): Add new declaration.
13574         * utils.c (streq): Return bool.
13575         (streq_hash): New function.
13576
13577 2018-04-05  Tom Tromey  <tom@tromey.com>
13578
13579         * linespec.c (event_location_to_sals) <case ADDRESS_LOCATION>:
13580         Remove a string copy.
13581
13582 2018-04-05  Tom Tromey  <tom@tromey.com>
13583
13584         * linespec.c (filter_results): Use std::vector.
13585         (decode_line_2, decode_line_full): Update.
13586
13587 2018-04-05  Tom Tromey  <tom@tromey.com>
13588
13589         * linespec.c (canonical_to_fullform): Return std::string.
13590         (filter_results): Update.
13591         (struct decode_line_2_item): Add constructor.
13592         <fullform, displayform>: Now std::string.
13593         (decode_line_2_compare_items): Now a std::sort comparator.
13594         (decode_line_2): Update.
13595
13596 2018-04-05  Tom Tromey  <tom@tromey.com>
13597
13598         * linespec.c (copy_token_string): Return a unique_xmalloc_ptr.
13599         (unexpected_linespec_error): Update.
13600         (linespec_parse_basic, parse_linespec): Update.
13601
13602 2018-04-05  Tom Tromey  <tom@tromey.com>
13603
13604         * linespec.c (linespec_parse_basic): Reindent.
13605
13606 2018-04-05  Tom Tromey  <tom@tromey.com>
13607
13608         * minsyms.h (iterate_over_minimal_symbols): Update.
13609         * minsyms.c (iterate_over_minimal_symbols): Take a
13610         gdb::function_view.
13611         * linespec.c (struct collect_minsyms): Remove.
13612         (compare_msyms): Now a std::sort comparator.
13613         (add_minsym): Add parameters.
13614         (search_minsyms_for_name): Update.  Use std::vector.
13615
13616 2018-04-03  Tom Tromey  <tom@tromey.com>
13617
13618         * mipsread.c (read_alphacoff_dynamic_symtab): Use
13619         gdb::byte_vector.
13620
13621 2018-04-02  Weimin Pan  <weimin.pan@oracle.com>
13622
13623         * MAINTAINERS (Write After Approval): Add Weimin Pan.
13624
13625 2018-04-02  Weimin Pan  <weimin.pan@oracle.com>
13626
13627         PR gdb/16959
13628         * cp-valprint.c: (cp_print_static_field) Fix infinite recursion when 
13629         printing static type.
13630
13631 2018-04-01  Tom Tromey  <tom@tromey.com>
13632
13633         * rs6000-nat.c (rs6000_ptrace_ldinfo): Return a byte_vector.
13634         (rs6000_xfer_shared_libraries): Update.
13635
13636 2018-04-01  Simon Marchi  <simon.marchi@polymtl.ca>
13637
13638         * common/gdb_vecs.h (char_ptr): Remove.
13639         * tracepoint.c (encode_actions_1): Remove usage of char_ptr.
13640
13641 2018-03-30  Simon Marchi  <simon.marchi@polymtl.ca>
13642
13643         * guile/scm-utils.c (gdbscm_parse_function_args): Replace VEC
13644         with std::vector.
13645         * common/gdb_vecs.h (DEF_VEC_P (char_ptr)): Remove.
13646
13647 2018-03-30  Simon Marchi  <simon.marchi@polymtl.ca>
13648
13649         * tracepoint.h (struct uploaded_tp): Initialize fields.
13650         <actions, step_actions, cmd_strings>: Change type to
13651         std::vector<char *>.
13652         * tracepoint.c (get_uploaded_tp): Allocate with new.
13653         (free_uploaded_tps): Free with delete.
13654         (parse_tracepoint_definition): Adjust to std::vector change.
13655         * breakpoint.c (read_uploaded_action): Likewise.
13656         (create_tracepoint_from_upload): Likewise.
13657         * ctf.c (ctf_write_uploaded_tp): Likewise.
13658         (SET_ARRAY_FIELD): Likewise.
13659         * tracefile-tfile.c (tfile_write_uploaded_tp): Likewise.
13660
13661 2018-03-30  Tom Tromey  <tom@tromey.com>
13662
13663         * solib-svr4.c (lm_info_read): Use gdb::byte_vector.  Return
13664         std::unique_ptr.
13665         (svr4_keep_data_in_core): Update.
13666         (svr4_read_so_list): Update.
13667
13668 2018-03-30  Tom Tromey  <tom@tromey.com>
13669
13670         * windows-nat.c (handle_output_debug_string, handle_exception):
13671         Update.
13672         * target.h (target_read_string): Update.
13673         * target.c (target_read_string): Change "string" to
13674         unique_xmalloc_ptr.
13675         * solib-svr4.c (open_symbol_file_object, svr4_read_so_list):
13676         Update.
13677         * solib-frv.c (frv_current_sos): Update.
13678         * solib-dsbt.c (dsbt_current_sos): Update.
13679         * solib-darwin.c (darwin_current_sos): Update.
13680         * linux-thread-db.c (inferior_has_bug): Update.
13681         * expprint.c (print_subexp_standard) <case OP_OBJC_MSGCALL>:
13682         Update.  Remove alloca.
13683         * ada-lang.c (ada_main_name): Update.
13684
13685 2018-03-30  Tom Tromey  <tom@tromey.com>
13686
13687         * dwarf2read.c (struct free_dwo_file_cleanup_data): Remove.
13688         (struct dwo_file_deleter): New.
13689         (dwo_file_up): New typedef.
13690         (open_and_init_dwo_file): Use dwo_file_up.
13691         (free_dwo_file_cleanup): Remove.
13692
13693 2018-03-30  Tom Tromey  <tom@tromey.com>
13694
13695         * dwarf2read.c (free_dwo_file): Remove "objfile" parameter.
13696         (free_dwo_file_cleanup, free_dwo_file_from_slot): Update.
13697
13698 2018-03-30  Tom Tromey  <tom@tromey.com>
13699
13700         * dwarf2read.c (class free_cached_comp_units): New class.
13701         (dw2_instantiate_symtab, dwarf2_build_psymtabs_hard): Use it.
13702         (free_cached_comp_units): Remove function.
13703
13704 2018-03-30  Tom Tromey  <tom@tromey.com>
13705
13706         * utils.h (make_cleanup_unpush_target): Remove.
13707         * inf-ptrace.c (struct target_unpusher): New.
13708         (target_unpush_up) New typedef.
13709         (inf_ptrace_create_inferior, inf_ptrace_attach): Use
13710         target_unpush_up.
13711         * utils.c (do_unpush_target, make_cleanup_unpush_target): Remove.
13712
13713 2018-03-27  Tom Tromey  <tom@tromey.com>
13714
13715         * utils.c (prompt_for_continue): Use unique_xmalloc_ptr.
13716
13717 2018-03-27  Pedro Alves  <palves@redhat.com>
13718             Tom Tromey  <tom@tromey.com>
13719
13720         * top.c (class gdb_readline_wrapper_cleanup): Add constructor,
13721         destructor.  Now a class.
13722         (gdb_readline_wrapper_cleanup): Remove function.
13723         (gdb_readline_wrapper): Remove cleanups.
13724
13725 2018-03-27  Tom Tromey  <tom@tromey.com>
13726
13727         * typeprint.h (struct type_print_options) <local_typedefs,
13728         global_typedefs>: Remove "struct" keyword.
13729         (class typedef_hash_table): New class.
13730         (recursively_update_typedef_hash, add_template_parameters)
13731         (create_typedef_hash, free_typedef_hash, copy_typedef_hash)
13732         (find_typedef_in_hash): Don't declare.
13733         * typeprint.c (struct typedef_hash_table): Move to typeprint.h.
13734         (typedef_hash_table::recursively_update): Rename from
13735         recursively_update_typedef_hash.  Now a member.
13736         (typedef_hash_table::add_template_parameters): Rename from
13737         add_template_parameters.  Now a member.
13738         (typedef_hash_table::typedef_hash_table): Now a constructor;
13739         rename from create_typedef_hash.
13740         (typedef_hash_table::~typedef_hash_table): Now a destructor;
13741         rename from free_typedef_hash.
13742         (do_free_typedef_hash, make_cleanup_free_typedef_hash)
13743         (do_free_global_table): Remove.
13744         (typedef_hash_table::typedef_hash_table): New constructor; renamed
13745         from copy_type_recursive.
13746         (create_global_typedef_table): Remove.
13747         (typedef_hash_table::find_global_typedef): Now a member of
13748         typedef_hash_table.
13749         (typedef_hash_table::find_typedef): Rename from
13750         find_typedef_in_hash; now a member.
13751         (whatis_exp): Update.
13752         * extension.h (struct ext_lang_type_printers): Add constructor and
13753         destructor.
13754         (start_ext_lang_type_printers, free_ext_lang_type_printers): Don't
13755         declare.
13756         * extension.c (ext_lang_type_printers::ext_lang_type_printers):
13757         Now a constructor; rename from start_ext_lang_type_printers.
13758         (ext_lang_type_printers): Now a destructor; rename from
13759         free_ext_lang_type_printers.
13760         * c-typeprint.c (find_typedef_for_canonicalize, c_print_type_1):
13761         Update.
13762         (c_type_print_base_struct_union): Update.  Remove cleanups.
13763
13764 2018-03-27  Tom Tromey  <tom@tromey.com>
13765
13766         * dwarf-index-write.c: Include <cmath>.
13767
13768 2018-03-27  Joel Brobecker  <brobecker@adacore.com>
13769
13770         * NEWS: Add entry describing new "set|show varsize-limit" command.
13771         * ada-lang.c (_initialize_ada_language): Add "set/show varsize-limit"
13772         command.
13773         * printcmd.c (_initialize_printcmd): Add "set var" alias of
13774         "set variable".
13775
13776 2018-03-27  Simon Marchi  <simon.marchi@ericsson.com>
13777
13778         * Makefile.in (COMMON_SFILES): Add dwarf-index-common.c and
13779         dwarf-index-write.c
13780         (HFILES_NO_SRCDIR): Add dwarf-index-common.h and dwarf2read.h.
13781         * dwarf-index-common.c: New file.
13782         * dwarf-index-common.h: New file.
13783         * dwarf-index-write.c: New file.
13784         * dwarf2read.c: Include dwarf2read.h and dwarf-index-common.h.
13785         (struct dwarf2_section_info): Move from here.
13786         (dwarf2_section_info_def): Likewise.
13787         (DEF_VEC_O (dwarf2_section_info_def)): Likewise.
13788         (offset_type): Likewise.
13789         (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): Likewise.
13790         (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): Likewise.
13791         (DW2_GDB_INDEX_CU_SET_VALUE): Likewise.
13792         (byte_swap): Likewise.
13793         (MAYBE_SWAP): Likewise.
13794         (dwarf2_per_cu_ptr): Likewise.
13795         (DEF_VEC_P (dwarf2_per_cu_ptr)): Likewise.
13796         (struct tu_stats): Likewise.
13797         (struct dwarf2_per_objfile): Likewise.
13798         (struct dwarf2_per_cu_data): Likewise.
13799         (struct signatured_type): Likewise.
13800         (sig_type_ptr): Likewise.
13801         (DEF_VEC_P (sig_type_ptr)): Likewise.
13802         (INDEX4_SUFFIX): Likewise.
13803         (INDEX5_SUFFIX): Likewise.
13804         (DEBUG_STR_SUFFIX): Likewise.
13805         (dwarf2_read_section): Make non-static.
13806         (mapped_index_string_hash): Move from here.
13807         (dwarf5_djb_hash): Likewise.
13808         (file_write): Likewise.
13809         (class data_buf): Likewise.
13810         (struct symtab_index_entry): Likewise.
13811         (struct mapped_symtab): Likewise.
13812         (find_slot): Likewise.
13813         (hash_expand): Likewise.
13814         (add_index_entry): Likewise.
13815         (uniquify_cu_indices): Likewise.
13816         (class c_str_view): Likewise.
13817         (class c_str_view_hasher): Likewise.
13818         (class vector_hasher): Likewise.
13819         (write_hash_table): Likewise.
13820         (psym_index_map): Likewise.
13821         (struct addrmap_index_data): Likewise.
13822         (add_address_entry): Likewise.
13823         (add_address_entry_worker): Likewise.
13824         (write_address_map): Likewise.
13825         (symbol_kind): Likewise.
13826         (write_psymbols): Likewise.
13827         (struct signatured_type_index_data): Likewise.
13828         (write_one_signatured_type): Likewise.
13829         (recursively_count_psymbols): Likewise.
13830         (recursively_write_psymbols): Likewise.
13831         (class debug_names): Likewise.
13832         (check_dwarf64_offsets): Likewise.
13833         (psyms_seen_size): Likewise.
13834         (write_gdbindex): Likewise.
13835         (write_debug_names): Likewise.
13836         (assert_file_size): Likewise.
13837         (write_psymtabs_to_index): Likewise.
13838         (save_gdb_index_command): Likewise.
13839         (_initialize_dwarf2_read): Don't register the "save gdb-index"
13840         command.
13841         * dwarf2read.h: New file.
13842
13843 2018-03-27  Joel Brobecker  <brobecker@adacore.com>
13844
13845         PR gdb/22670
13846         * dwarf2read.c (dwarf2_physname): Do not return the demangled
13847         symbol name if the CU's language stores symbol names in linkage
13848         format.
13849         * language.h (struct language_defn)
13850         <la_store_sym_names_in_linkage_form_p>: New field.  Adjust
13851         all instances of this struct.
13852
13853 2018-03-26  Tom Tromey  <tom@tromey.com>
13854
13855         * stack.c (backtrace_command_1): Remove verbose code.
13856
13857 2018-03-26  Tom Tromey  <tom@tromey.com>
13858
13859         * python/py-framefilter.c (py_print_type): Don't catch
13860         exceptions.  Return void.
13861         (py_print_value): Likewise.
13862         (py_print_single_arg): Likewise.
13863         (enumerate_args): Don't catch exceptions.
13864         (py_print_args): Likewise.
13865         (py_print_frame): Likewise.
13866         (gdbpy_apply_frame_filter): Catch exceptions here.
13867
13868 2018-03-26  Tom Tromey  <tom@tromey.com>
13869
13870         * stack.c (_initialize_stack): Remove trailing newlines from help
13871         text.  Add "Usage" line to "backtrace" help.
13872
13873 2018-03-26  Tom Tromey  <tom@tromey.com>
13874
13875         PR python/16486:
13876         * python/py-framefilter.c (py_print_args): Call wrap_hint.
13877
13878 2018-03-26  Tom Tromey  <tom@tromey.com>
13879
13880         * python/py-framefilter.c (py_print_single_arg): Return
13881         EXT_LANG_BT_ERROR from catch.
13882
13883 2018-03-26  Tom Tromey  <tom@tromey.com>
13884
13885         PR backtrace/15584:
13886         * stack.c (backtrace_command_1): Move some code into no-filters
13887         "if".
13888
13889 2018-03-26  Tom Tromey  <tom@tromey.com>
13890
13891         * python/py-framefilter.c (throw_quit_or_print_exception): New
13892         function.
13893         (gdbpy_apply_frame_filter): Use it.
13894
13895 2018-03-26  Tom Tromey  <tom@tromey.com>
13896
13897         PR cli/17716:
13898         * python/py-framefilter.c (py_print_type, py_print_value)
13899         (enumerate_args, py_print_args, gdbpy_apply_frame_filter): Use
13900         RETURN_MASK_ERROR.
13901
13902 2018-03-26  Tom Tromey  <tom@tromey.com>
13903
13904         * python/py-framefilter.c (enumerate_args): Use
13905         gdb::unique_xmalloc_ptr.
13906
13907 2018-03-26  Tom Tromey  <tom@tromey.com>
13908
13909         * python/py-framefilter.c (py_print_frame): Return
13910         EXT_LANG_BT_OK.
13911         (gdbpy_apply_frame_filter): Update comment.
13912         * extension.h (enum ext_lang_bt_status) <EXT_LANG_BT_COMPLETED>:
13913         Remove.
13914         <EXT_LANG_BT_NO_FILTERS>: Change value.
13915
13916 2018-03-26  Tom Tromey  <tom@tromey.com>
13917
13918         PR backtrace/15582:
13919         * stack.c (backtrace_command): Parse "hide" argument.
13920         * python/py-framefilter.c (py_print_frame): Handle PRINT_HIDE.
13921         * extension.h (enum frame_filter_flags) <PRINT_HIDE>: New
13922         constant.
13923
13924 2018-03-26  Tom Tromey  <tom@tromey.com>
13925
13926         * stack.c (backtrace_command_1): Remove "show_locals" parameter,
13927         add "flags".
13928         (backtrace_command): Remove "fulltrace", add "flags".
13929
13930 2018-03-26  Tom Tromey  <tom@tromey.com>
13931
13932         * stack.c (backtrace_command): Rewrite command line parsing.
13933
13934 2018-03-26  Simon Marchi  <simon.marchi@ericsson.com>
13935
13936         * dwarf2read.c (DEF_VEC_I(offset_type)): Remove.
13937
13938 2018-03-26  Simon Marchi  <simon.marchi@ericsson.com>
13939
13940         * filename-seen-cache.h: Add include guard.
13941
13942 2018-03-26  Keith Seitz  <keiths@redhat.com>
13943
13944         * symfile.c (place_section): Remove "struct" from section_addr_info
13945         in comment.
13946         * windows-nat.c (struct safe_symbol_file_add_args) <addrs>: Remove
13947         "struct" keyword from section_addr_info.
13948
13949 2018-03-26  Alan Hayward  <alan.hayward@arm.com>
13950
13951         * regformats/regdef.h (reg): Add constructors.
13952
13953 2018-03-25  Pedro Alves  <palves@redhat.com>
13954
13955         * eval.c (evaluate_funcall): Swap OP_VAR_MSYM_VALUE/OP_VAR_VALUE
13956         if then/else bodies in var_func_name extraction.
13957
13958 2018-03-23  Weimin Pan  <weimin.pan@oracle.com>
13959
13960         * minsyms.c (lookup_minimal_symbol_and_objfile): Use
13961         lookup_minimal_symbol() to find symbol entry.
13962         * minsyms.h (lookup_minimal_symbol_and_objfile): Update comment.
13963
13964 2018-03-23  Keith Seitz  <keiths@redhat.com>
13965
13966         PR c++/22968
13967         * dwarf2read.c (scan_partial_symbols): Scan structs/classes for
13968         nested type definitions for C++, too.
13969
13970 2018-03-23  Tom Tromey  <tom@tromey.com>
13971
13972         * machoread.c (struct oso_el): Add a constructor.  Don't define as
13973         a typedef.
13974         (macho_register_oso): Remove.
13975         (macho_symtab_read): Take a std::vector.
13976         (oso_el_compare_name): Now a std::sort comparator.
13977         (macho_symfile_read_all_oso): Take a std::vector.
13978         (macho_symfile_read): Use std::vector.  Remove cleanups.
13979
13980 2018-03-22  Tom Tromey  <tom@tromey.com>
13981
13982         * record-full.c (record_full_exec_insn): Use gdb::byte_vector.
13983         (record_full_goto_bookmark): Use std::string.
13984
13985 2018-03-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
13986
13987         PR tdep/18295
13988         * rs6000-tdep.c (skip_prologue): Match both stwux and stdux
13989         a single mask.
13990
13991 2018-03-22  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
13992
13993         * rs6000-tdep.c (store_insn_p): New function.
13994         (skip_prologue): New variable alloca_reg_offset. Set lr_reg
13995         and cr_reg to their unshifted values. Use store_insn_p to
13996         match LR saves using either R1 or fdata->alloca_reg. Use
13997         store_insn_p to match CR saves. Set alloca_reg_offset
13998         when alloca_reg and framep are set. Remove lr_reg shift
13999         when assigning to fdata->lr_register.
14000
14001 2018-03-22  Andreas Arnez  <arnez@linux.vnet.ibm.com>
14002
14003         * linux-tdep.c (linux_info_proc): For "info proc cmdline", print
14004         command line args instead of emitting a warning.
14005
14006 2018-03-22  Simon Marchi  <simon.marchi@polymtl.ca>
14007
14008         * tracepoint.h (struct static_tracepoint_marker): Initialize
14009         fields, define default constructor, move constructor and move
14010         assignment, disable the rest.
14011         <str_id, extra>: Make std::string.
14012         (release_static_tracepoint_marker): Remove.
14013         (free_current_marker): Remove.
14014         * tracepoint.c (free_current_marker): Remove.
14015         (parse_static_tracepoint_marker_definition): Adjust to
14016         std::string, use new hex2str overload.
14017         (release_static_tracepoint_marker): Remove.
14018         (print_one_static_tracepoint_marker): Get marker by reference
14019         and adjust to std::string.
14020         (info_static_tracepoint_markers_command): Adjust to std::vector
14021         changes
14022         * target.h (static_tracepoint_marker_p): Remove typedef.
14023         (DEF_VEC_P(static_tracepoint_marker_p)): Remove.
14024         (struct target_ops) <to_static_tracepoint_marker_at>: Return
14025         bool.
14026         <to_static_tracepoint_markers_by_strid>: Return std::vector.
14027         * target-debug.h
14028         (target_debug_print_VEC_static_tracepoint_marker_p_p): Remove.
14029         (target_debug_print_std_vector_static_tracepoint_marker): New.
14030         (target_debug_print_struct_static_tracepoint_marker_p): Rename
14031         to...
14032         (target_debug_print_static_tracepoint_marker_p): ... this.
14033         * target-delegates.c: Re-generate.
14034         * breakpoint.h (struct tracepoint) <static_trace_marker_id>:
14035         Make std::string.
14036         * breakpoint.c (init_breakpoint_sal): Adjust to std::string.
14037         (decode_static_tracepoint_spec): Adjust to std::vector.
14038         (tracepoint_print_one_detail): Adjust to std::string.
14039         (strace_marker_decode_location): Adjust to std::string.
14040         (update_static_tracepoint): Adjust to std::string, remove call
14041         to release_static_tracepoint_marker.
14042         * linux-nat.c (linux_child_static_tracepoint_markers_by_strid):
14043         Adjust to std::vector.
14044         * remote.c (remote_static_tracepoint_marker_at): Return bool.
14045         (remote_static_tracepoint_markers_by_strid): Adjust to
14046         std::vector.
14047         * common/rsp-low.h (hex2str): New overload with explicit count
14048         of bytes.
14049         * common/rsp-low.c (hex2str): New overload with explicit count
14050         of bytes.
14051         * unittests/rsp-low-selftests.c (test_hex2str): New function.
14052         (_initialize_rsp_low_selftests): Add test_hex2str test.
14053         * unittests/tracepoint-selftests.c
14054         (test_parse_static_tracepoint_marker_definition): Adjust to
14055         std::string.
14056
14057 2018-03-22  Simon Marchi  <simon.marchi@polymtl.ca>
14058
14059         * tracepoint.c (parse_static_tracepoint_marker_definition):
14060         Consider case where the definition is followed by more
14061         definitions.
14062         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
14063         tracepoint-selftests.c.
14064         * unittests/tracepoint-selftests.c: New.
14065
14066 2018-03-21  Pedro Franco de Carvalho  <pedromfc@linux.vnet.ibm.com>
14067
14068         * MAINTAINERS (Write After Approval): Add Pedro Franco de
14069         Carvalho.
14070
14071 2018-03-20  Stephen Roberts  <stephen.roberts@arm.com>
14072
14073         * symtab.c (find_pc_sect_line): fixed indentation.
14074
14075 2018-03-20  Stephen Roberts  <stephen.roberts@arm.com>
14076
14077         * symtab.c (find_pc_sect_line): now uses binary search.
14078
14079 2018-03-19  Tom Tromey  <tom@tromey.com>
14080
14081         * rust-exp.y (struct_expr_tail, struct_expr_list): Add plain
14082         "IDENT" production.
14083
14084 2018-03-19  Pedro Alves  <palves@redhat.com>
14085             Tom Tromey  <tom@tromey.com>
14086
14087         * unittests/observable-selftests.c: New file.
14088         * common/observable.h: New file.
14089         * observable.h: New file.
14090         * ada-lang.c, ada-tasks.c, agent.c, aix-thread.c, annotate.c,
14091         arm-tdep.c, auto-load.c, auxv.c, break-catch-syscall.c,
14092         breakpoint.c, bsd-uthread.c, cli/cli-interp.c, cli/cli-setshow.c,
14093         corefile.c, dummy-frame.c, event-loop.c, event-top.c, exec.c,
14094         extension.c, frame.c, gdbarch.c, guile/scm-breakpoint.c,
14095         infcall.c, infcmd.c, inferior.c, inflow.c, infrun.c, jit.c,
14096         linux-tdep.c, linux-thread-db.c, m68klinux-tdep.c,
14097         mi/mi-cmd-break.c, mi/mi-interp.c, mi/mi-main.c, objfiles.c,
14098         ppc-linux-nat.c, ppc-linux-tdep.c, printcmd.c, procfs.c,
14099         python/py-breakpoint.c, python/py-finishbreakpoint.c,
14100         python/py-inferior.c, python/py-unwind.c, ravenscar-thread.c,
14101         record-btrace.c, record-full.c, record.c, regcache.c, remote.c,
14102         riscv-tdep.c, sol-thread.c, solib-aix.c, solib-spu.c, solib.c,
14103         spu-multiarch.c, spu-tdep.c, stack.c, symfile-mem.c, symfile.c,
14104         symtab.c, thread.c, top.c, tracepoint.c, tui/tui-hooks.c,
14105         tui/tui-interp.c, valops.c: Update all users.
14106         * tui/tui-hooks.c (tui_bp_created_observer)
14107         (tui_bp_deleted_observer, tui_bp_modified_observer)
14108         (tui_inferior_exit_observer, tui_before_prompt_observer)
14109         (tui_normal_stop_observer, tui_register_changed_observer):
14110         Remove.
14111         (tui_observers_token): New global.
14112         (attach_or_detach, tui_attach_detach_observers): New functions.
14113         (tui_install_hooks, tui_remove_hooks): Use
14114         tui_attach_detach_observers.
14115         * record-btrace.c (record_btrace_thread_observer): Remove.
14116         (record_btrace_thread_observer_token): New global.
14117         * observer.sh: Remove.
14118         * observer.c: Rename to observable.c.
14119         * observable.c (namespace gdb_observers): Define new objects.
14120         (observer_debug): Move into gdb_observers namespace.
14121         (struct observer, struct observer_list, xalloc_observer_list_node)
14122         (xfree_observer_list_node, generic_observer_attach)
14123         (generic_observer_detach, generic_observer_notify): Remove.
14124         (_initialize_observer): Update.
14125         Don't include observer.inc.
14126         * Makefile.in (generated_files): Remove observer.h, observer.inc.
14127         (clean mostlyclean): Likewise.
14128         (observer.h, observer.inc): Remove targets.
14129         (SUBDIR_UNITTESTS_SRCS): Add observable-selftests.c.
14130         (COMMON_SFILES): Use observable.c, not observer.c.
14131         * .gitignore: Remove observer.h.
14132
14133 2018-03-18  Tom Tromey  <tom@tromey.com>
14134
14135         * solib.c (gdb_bfd_lookup_symbol_from_symtab): Use
14136         gdb::def_vector.
14137         (bfd_lookup_symbol_from_dyn_symtab): Likewise.
14138
14139 2018-03-17  Tom Tromey  <tom@tromey.com>
14140
14141         * auto-load.c (auto_load_objfile_script_1): Use std::string.
14142
14143 2018-03-17  Tom Tromey  <tom@tromey.com>
14144
14145         * target.c (class scoped_target_fd): New.
14146         (target_fileio_close_cleanup): Remove.
14147         (target_fileio_read_alloc_1): Use scoped_target_fd.
14148
14149 2018-03-16  Simon Marchi  <simon.marchi@polymtl.ca>
14150
14151         * silent-rules.mk: New.
14152         * Makefile.in: Include silent-rules.mk
14153         (srcdir, VPATH, top_srcdir): Move up.
14154         (COMPILE): Add ECHO_CXX.
14155         (test-cp-name-parser$(EXEEXT)): Add ECHO_CXXLD.
14156         (init.c): Add ECHO_INIT_C.
14157         (gdb$(EXEEXT)): Add SILENCE and ECHO_CXXLD.
14158         (version.c): Add ECHO_GEN.
14159         (printcmd.o): Add ECHO_CXX.
14160         (target-float.o): Add ECHO_CXX.
14161         (ada-exp.o): Add ECHO_CXX.
14162         (stamp-xml): Add SILENCE and ECHO_GEN_XML_BUILTIN.
14163         (insight$(EXEEXT)): Add ECHO_CXXLD.
14164         * gnulib/configure.ac: Add AM_SILENT_RULES.
14165         * gnulib/aclocal.m4: Re-generate.
14166         * gnulib/configure: Re-generate.
14167         * gnulib/import/Makefile.in: Re-generate.
14168
14169 2018-03-16  Tom Tromey  <tom@tromey.com>
14170
14171         * xcoffread.c (xcoff_symfile_offsets): Change type of "addrs".
14172         * utils.h (make_cleanup_free_section_addr_info): Don't declare.
14173         * utils.c (do_free_section_addr_info)
14174         (make_cleanup_free_section_addr_info): Remove.
14175         * symfile.h (struct other_sections): Add constructor.
14176         (struct section_addr_info): Remove.
14177         (section_addr_info): New typedef.
14178         (struct sym_fns) <sym_offsets>: Change type of parameter.
14179         (build_section_addr_info_from_objfile)
14180         (relative_addr_info_to_section_offsets, addr_info_make_relative)
14181         (default_symfile_offsets, symbol_file_add)
14182         (symbol_file_add_from_bfd)
14183         (build_section_addr_info_from_section_table): Update.
14184         (alloc_section_addr_info, free_section_addr_info): Don't declare.
14185         * symfile.c (alloc_section_addr_info): Remove.
14186         (build_section_addr_info_from_section_table): Change return type.
14187         Update.
14188         (build_section_addr_info_from_bfd)
14189         (build_section_addr_info_from_objfile): Likewise.
14190         (free_section_addr_info): Remove.
14191         (relative_addr_info_to_section_offsets): Change type of "addrs".
14192         (addrs_section_compar): Now a std::sort comparator.
14193         (addrs_section_sort): Change return type.
14194         (addr_info_make_relative): Change type of "addrs".  Update.
14195         (default_symfile_offsets, syms_from_objfile_1)
14196         (syms_from_objfile, symbol_file_add_with_addrs): Likewise.
14197         (symbol_file_add_separate): Update.
14198         (symbol_file_add): Change type of "addrs".  Update.
14199         (add_symbol_file_command): Update.  Remove cleanups.
14200         * symfile-mem.c (symbol_file_add_from_memory): Update.  Remove
14201         cleanups.
14202         * symfile-debug.c (debug_sym_offsets): Change type of "info".
14203         * solib.c (solib_read_symbols): Update.
14204         * objfiles.c (objfile_relocate): Update.  Remove cleanups.
14205         * machoread.c (macho_symfile_offsets): Update.
14206         * jit.c (jit_bfd_try_read_symtab): Update.
14207
14208 2018-03-15  Simon Marchi  <simon.marchi@polymtl.ca>
14209
14210         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
14211         unittests/utils-selftests.c.
14212         * unittests/utils-selftests.c: New file.
14213
14214 2018-03-14  Tom Tromey  <tom@tromey.com>
14215
14216         PR cli/14977:
14217         * printcmd.c (printf_c_string, printf_wide_c_string): Special case
14218         for NULL.
14219
14220 2018-03-14  Tom Tromey  <tom@tromey.com>
14221
14222         PR cli/19918:
14223         * printcmd.c (printf_pointer): Allow "-" in format.
14224
14225 2018-03-14  Tom Tromey  <tom@tromey.com>
14226
14227         * printcmd.c (_initialize_printcmd): Add usage to printf.
14228
14229 2018-03-14  Yao Qi  <qiyao@sourceware.org>
14230
14231         * MAINTAINERS: Update my email address.
14232
14233 2018-03-13  Tom Tromey  <tom@tromey.com>
14234
14235         * machoread.c (macho_check_dsym): Change filenamep to a
14236         std::string*.
14237         (macho_symfile_read): Update.
14238         * symfile.c (load_command): Use std::string.
14239
14240 2018-03-12  Andrew Burgess  <andrew.burgess@embecosm.com>
14241
14242         * riscv-tdep.c (riscv_sw_breakpoint_from_kind): Add localization
14243         to error message string.
14244         (riscv_register_name): Use xsnprintf instead of sprintf.
14245         (riscv_insn::fetch_instruction): Use gdb_assert instead of
14246         internal_error.
14247         (riscv_print_arg_location): Use gdb_assert_not_reached instead of
14248         error.
14249         (riscv_push_dummy_call): Likewise.
14250
14251 2018-03-12  Tom Tromey  <tom@tromey.com>
14252
14253         * rs6000-aix-tdep.c (rs6000_aix_core_xfer_shared_libraries_aix):
14254         Use gdb::byte_vector.
14255         * arm-tdep.c (arm_exidx_new_objfile): Use gdb::byte_vector.
14256
14257 2018-03-12  Yao Qi  <yao.qi@linaro.org>
14258
14259         * ia64-libunwind-tdep.c (libunwind_get_reg_special): Change
14260         parameter type to readable_regcache.
14261         * ia64-libunwind-tdep.h (libunwind_get_reg_special): Update
14262         the declaration.
14263
14264 2018-03-11  Tom Tromey  <tom@tromey.com>
14265
14266         * dwarf2read.c (struct nextfield): Add initializers.
14267         (struct nextfnfield): Remove.
14268         (struct fnfieldlist): Add initializers.  Remove "length" and
14269         "head", use std::vector.
14270         (struct decl_field_list): Remove.
14271         (struct field_info): Add initializers.
14272         <fields, baseclasses>: Now std::vector.
14273         <nbaseclasses, nfnfields, typedef_field_list_count,
14274         nested_types_list_count>: Remove.
14275         (dwarf2_add_field, dwarf2_add_type_defn)
14276         (dwarf2_attach_fields_to_type, dwarf2_add_member_fn)
14277         (dwarf2_attach_fn_fields_to_type, handle_struct_member_die)
14278         (process_structure_scope): Update.
14279
14280 2018-03-11  Tom Tromey  <tom@tromey.com>
14281
14282         * dwarf2read.c (sort_tu_by_abbrev_offset): Change to be suitable
14283         for use by std::sort.
14284         (build_type_psymtabs_1): Use std::vector.
14285
14286 2018-03-09  Eli Zaretskii  <eliz@gnu.org>
14287
14288         * top.c (print_gdb_configuration): Reflect LIBIPT, LIBMEMCHECK,
14289         and LIBMPFR in the printed configuration.
14290
14291 2018-03-08  Tom Tromey  <tom@tromey.com>
14292
14293         * source.c (get_filename_and_charpos): Use scoped_fd.
14294         * nto-procfs.c (procfs_open_1): Use scoped_fd.
14295         (procfs_pidlist): Likewise.
14296         * procfs.c (proc_get_LDT_entry): Use scoped_fd.
14297         (iterate_over_mappings): Likewise.
14298
14299 2018-03-08  Tom Tromey  <tom@tromey.com>
14300
14301         * infcall.c (struct call_return_meta_info)
14302         <stack_temporaries_enabled>: Remove.
14303         (get_call_return_value, call_function_by_hand_dummy): Update.
14304         * thread.c (disable_thread_stack_temporaries): Remove.
14305         (enable_thread_stack_temporaries): Remove.
14306         (thread_stack_temporaries_enabled_p): Return bool.
14307         (push_thread_stack_temporary, value_in_thread_stack_temporaries)
14308         (get_last_thread_stack_temporary): Update.
14309         * eval.c (evaluate_subexp): Update.
14310         * gdbthread.h (class enable_thread_stack_temporaries): Now a
14311         class, not a function.
14312         (value_ptr, value_vec): Remove typedefs.
14313         (class thread_info) <stack_temporaries_enabled>: Now bool.
14314         <stack_temporaries>: Now a std::vector.
14315         (thread_stack_temporaries_enabled_p)
14316         (value_in_thread_stack_temporaries): Return bool.
14317
14318 2018-03-08  Simon Marchi  <simon.marchi@ericsson.com>
14319
14320         * remote.c (putpkt_binary): Fix omitted bytes reporting.
14321         (getpkt_or_notif_sane_1): Likewise.
14322
14323 2018-03-08  Simon Marchi  <simon.marchi@polymtl.ca>
14324
14325         * build-id.c (build_id_to_debug_bfd): Use std::string.
14326
14327 2018-03-08  Simon Marchi  <simon.marchi@polymtl.ca>
14328
14329         * build-id.c (find_separate_debug_file_by_buildid): Return
14330         std::string.
14331         * build-id.h (find_separate_debug_file_by_buildid): Return
14332         std::string.
14333         * coffread.c (coff_symfile_read): Adjust to std::string.
14334         * elfread.c (elf_symfile_read): Adjust to std::string.
14335         * symfile.c (separate_debug_file_exists): Change parameter to
14336         std::string.
14337         (find_separate_debug_file): Return std::string.
14338         (find_separate_debug_file_by_debuglink): Return std::string.
14339         * symfile.h (find_separate_debug_file_by_debuglink): Return
14340         std::string.
14341
14342 2018-03-08  Simon Marchi  <simon.marchi@polymtl.ca>
14343
14344         * common/xml-utils.c (xml_escape_text): Move code to...
14345         (xml_escape_text_append): ... this new function.
14346         * common/xml-utils.h (xml_escape_text_append): New declaration.
14347         * unittests/xml-utils-selftests.c (test_xml_escape_text_append):
14348         New function.
14349         (_initialize_xml_utils): register test_xml_escape_text_append as
14350         a selftest.
14351
14352 2018-03-07  Alan Hayward  <alan.hayward@arm.com>
14353
14354         * defs.h: Remove MAX_REGISTER_SIZE.
14355         * regcache.c (init_regcache_descr): Remove MAX_REGISTER_SIZE
14356         asserts.
14357         * python/py-unwind.c (pyuw_sniffer): Likewise.
14358
14359 2018-03-07  Tom Tromey  <tom@tromey.com>
14360
14361         * linux-tdep.c (linux_info_proc): Update.
14362         * target.h (struct target_ops) <to_fileio_readlink>: Return
14363         optional<string>.
14364         (target_fileio_readlink): Return optional<string>.
14365         * remote.c (remote_hostio_readlink): Return optional<string>.
14366         * inf-child.c (inf_child_fileio_readlink): Return
14367         optional<string>.
14368         * target.c (target_fileio_readlink): Return optional<string>.
14369
14370 2018-03-07  Andrew Burgess  <andrew.burgess@embecosm.com>
14371
14372         * regcache.c (cooked_read_test): Add riscv to the list of
14373         architectures that have a save_reggroup.
14374
14375 2018-03-07  Andreas Arnez  <arnez@linux.vnet.ibm.com>
14376
14377         * gnu-v3-abi.c (gnuv3_rtti_type): Add early exit if the given
14378         value is not a dynamic class object.
14379
14380 2018-03-06  Tom Tromey  <tom@tromey.com>
14381
14382         * rust-exp.y: Formatting fixes.
14383
14384 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14385
14386         * riscv-tdep.c (riscv_register_name): Remove target description
14387         support.
14388         (riscv_gdbarch_init): Remove target description check.
14389
14390 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14391
14392         * riscv-tdep.c: Remove 'Contributed by ...' lines from header
14393         comment.
14394         * riscv-tdep.h: Likewise.
14395
14396 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14397
14398         * riscv-tdep.c (riscv_pseudo_register_read): Delete.
14399         (riscv_pseudo_register_write): Delete.
14400         (riscv_gdbarch_init): Remove all use of pseudo registers.
14401
14402 2018-03-06  Simon Marchi  <simon.marchi@polymtl.ca>
14403
14404         * record-btrace.c (btrace_print_lines): Replace cleanup
14405         parameter with RAII equivalents.
14406         (btrace_insn_history): Replace cleanup with RAII equivalents.
14407         * ui-out.h (make_cleanup_ui_out_list_begin_end,
14408         make_cleanup_ui_out_tuple_begin_end): Remove.
14409         * ui-out.c (struct ui_out_end_cleanup_data, do_cleanup_end,
14410         make_cleanup_ui_out_end, make_cleanup_ui_out_tuple_begin_end,
14411         make_cleanup_ui_out_list_begin_end): Remove.
14412
14413 2018-03-06  Simon Marchi  <simon.marchi@polymtl.ca>
14414
14415         * record-btrace.c (record_btrace_maybe_mark_async_event): Change
14416         parameter types to std::vector.  Use bool.
14417         (record_btrace_wait): Replace VEC(tp_t) with
14418         std::vector<thread_info *>.
14419         * common/gdb_vecs.h (unordered_remove, ordered_remove): New.
14420
14421 2018-03-06  Simon Marchi  <simon.marchi@polymtl.ca>
14422
14423         * record-btrace.c (record_btrace_disable_callback): Remove.
14424         (struct scoped_btrace_disable): New.
14425         (record_btrace_open): Use scoped_btrace_disable.
14426
14427 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14428
14429         * riscv-tdep.c (riscv_return_value): Change type to ULONGEST for
14430         reading values from registers.
14431
14432 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14433
14434         * riscv-tdep.c (riscv_push_dummy_call): Use core_addr_to_string_nz
14435         where appropriate.
14436
14437 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14438
14439         * riscv-tdep.c (riscv_print_arg_location): Add header comment,
14440         change parameter type.  Use GDB's print functions, and use
14441         core_addr_to_string where appropriate.
14442         (riscv_push_dummy_call): Use core_addr_to_string where
14443         appropriate, update call to riscv_print_arg_location, and reindent
14444         a few lines.
14445         (riscv_return_value): Update call to riscv_print_arg_location.
14446
14447 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14448             Tim Newsome <tim@sifive.com>
14449             Albert Ou <a0u@eecs.berkeley.edu>
14450             Darius Rad <darius@bluespec.com>
14451
14452         * Makefile.in (ALL_TARGET_OBS): Add riscv-tdep.o
14453         (HFILES_NO_SRCDIR): Add riscv-tdep.h.
14454         (ALLDEPFILES): Add riscv-tdep.c
14455         * configure.tgt: Add riscv support.
14456         * riscv-tdep.c: New file.
14457         * riscv-tdep.h: New file.
14458         * NEWS: Mention new target.
14459         * MAINTAINERS: Add entry for riscv.
14460
14461 2018-03-06  Andrew Burgess  <andrew.burgess@embecosm.com>
14462
14463         * amd64-tdep.c (amd64_classify_aggregate): Ignore zero sized
14464         fields within aggregates.
14465
14466 2018-03-04  Simon Marchi  <simon.marchi@polymtl.ca>
14467
14468         * record-btrace.c (btrace_print_lines): Change type of flags to
14469         gdb_disassembly_flags.
14470
14471 2018-03-04  John Baldwin  <jhb@FreeBSD.org>
14472
14473         * fbsd-nat.c: Include "inf-ptrace.h".
14474         (USE_SIGTRAP_SIGINFO): Conditionally define.
14475         [USE_SIGTRAP_SIGINFO] (fbsd_handle_debug_trap): New function.
14476         (fbsd_wait) [USE_SIGTRAP_SIGINFO]: Call "fbsd_handle_debug_trap".
14477         [USE_SIGTRAP_SIGINFO] (fbsd_stopped_by_sw_breakpoint): New
14478         function.
14479         [USE_SIGTRAP_SIGINFO] (fbsd_supports_stopped_by_sw_breakpoint):
14480         Likewise.
14481         [USE_SIGTRAP_SIGINFO] (fbsd_supports_stopped_by_hw_breakpoint):
14482         Likewise.
14483         (fbsd_nat_add_target) [USE_SIGTRAP_SIGINFO]: Set
14484         "stopped_by_sw_breakpoint", "supports_stopped_by_sw_breakpoint",
14485         "supports_stopped_by_hw_breakpoint" target methods.
14486
14487 2018-03-04  John Baldwin  <jhb@FreeBSD.org>
14488
14489         * NEWS (Changes since GDB 8.1): Add "set/show debug fbsd-nat".
14490         * fbsd-nat.c (debug_fbsd_nat): New variable.
14491         (show_fbsd_nat_debug): New function.
14492         (fbsd_wait): Log LWP info if "debug_fbsd_nat" is enabled.
14493         (_initialize_fbsd_nat): Add "fbsd-nat" debug boolean command.
14494
14495 2018-03-04  John Baldwin  <jhb@FreeBSD.org>
14496
14497         * nat/x86-dregs.c (x86_dr_stopped_by_hw_breakpoint): New function.
14498         * nat/x86-dregs.h (x86_dr_stopped_by_hw_breakpoint): New
14499         prototype.
14500         * x86-nat.c (x86_stopped_by_hw_breakpoint): New function.
14501         (x86_use_watchpoints): Set "stopped_by_hw_breakpoint" target
14502         method.
14503
14504 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
14505
14506         * common/gdb_vecs.c (free_char_ptr_vec): Remove.
14507         * common/gdb_vecs.h (free_char_ptr_vec): Remove.
14508
14509 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
14510
14511         * charset.c (struct charset_vector): New.
14512         (charsets): Change type to charset_vector.
14513         (find_charset_names): Adjust.
14514         (add_one): Adjust.
14515         (_initialize_charset): Adjust.
14516
14517 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
14518
14519         * progspace.h (struct program_space) <deleted_solibs>: Change
14520         type to std::vector<std::string>.
14521         * progspace.c (clear_program_space_solib_cache): Adjust.
14522         * breakpoint.c (print_solib_event): Adjust.
14523         (check_status_catch_solib): Adjust.
14524         * solib.c (update_solib_list): Adjust.
14525         * ui-out.h (class ui_out) <field_string>: New overload.
14526         * ui-out.c (ui_out::field_string): New overload.
14527
14528 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
14529
14530         * progspace.h (struct program_space): Add constructor and
14531         destructor, initialize fields.
14532         (add_program_space): Remove.
14533         * progspace.c (add_program_space): Rename to...
14534         (program_space::program_space): ... this.
14535         (release_program_space): Rename to...
14536         (program_space::~program_space): ... this.
14537         (delete_program_space): Use delete to delete program_space.
14538         (initialize_progspace): Use new to allocate program_space.
14539         * inferior.c (add_inferior_with_spaces): Likewise.
14540         (clone_inferior_command): Likewise.
14541         * infrun.c (follow_fork_inferior): Likewise.
14542         (handle_vfork_child_exec_or_exit): Likewise.
14543
14544 2018-03-02  Simon Marchi  <simon.marchi@polymtl.ca>
14545
14546         * common/gdb_vecs.h (make_cleanup_free_char_ptr_vec): Remove.
14547         (delim_string_to_char_ptr_vec): Return std::vector of
14548         gdb::unique_xmalloc_ptr.
14549         (dirnames_to_char_ptr_vec_append): Take std::vector of
14550         gdb::unique_xmalloc_ptr.
14551         (dirnames_to_char_ptr_vec): Return std::vector of
14552         gdb::unique_xmalloc_ptr.
14553         * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append):
14554         Take std::vector of gdb::unique_xmalloc_ptr, adjust the code.
14555         (delim_string_to_char_ptr_vec): Return an std::vector of
14556         gdb::unique_xmalloc_ptr, adjust the code.
14557         (dirnames_to_char_ptr_vec_append): Take an std::vector of
14558         gdb::unique_xmalloc_ptr, adjust the code.
14559         (dirnames_to_char_ptr_vec): Return an std::vector of
14560         gdb::unique_xmalloc_ptr, adjust the code.
14561         * auto-load.c (auto_load_safe_path_vec): Change type to
14562         std::vector of gdb::unique_xmalloc_ptr.
14563         (auto_load_expand_dir_vars): Return an std::vector of
14564         gdb::unique_xmalloc_ptr, adjust the code.
14565         (auto_load_safe_path_vec_update): Adjust.
14566         (filename_is_in_auto_load_safe_path_vec): Adjust.
14567         (auto_load_objfile_script_1): Adjust.
14568         * build-id.c (build_id_to_debug_bfd): Adjust.
14569         * linux-thread-db.c (thread_db_load_search): Adjust.
14570         * source.c (add_path): Adjust.
14571         (openp): Adjust.
14572         * symfile.c (find_separate_debug_file): Adjust.
14573         * utils.c (do_free_char_ptr_vec): Remove.
14574         (make_cleanup_free_char_ptr_vec): Remove.
14575
14576 2018-03-01  Sergio Durigan Junior  <sergiodj@redhat.com>
14577
14578         PR gdb/22907
14579         * common/pathstuff.c: Conditionally include "<windows.h>".
14580
14581 2018-03-01  Georg Sauthoff  <mail@georg.so>
14582
14583         PR gdb/22888
14584         * gcore.in: Quote variables and switch interpreter to bash.
14585
14586 2018-03-01  Tom Tromey  <tom@tromey.com>
14587
14588         * dwarf2read.c (alloc_discriminant_info): Fix default_index
14589         assertion.  Add assertion for discriminant_index.
14590         (quirk_rust_enum): Use correct base type name in univariant case.
14591
14592 2018-03-01  Simon Marchi  <simon.marchi@ericsson.com>
14593
14594         * record.c (get_call_history_modifiers): Return a
14595         record_print_flags.
14596         (cmd_record_call_history): Adjust.
14597         * record-btrace.c (record_btrace_call_history): Adjust.
14598         (record_btrace_call_history_range): Adjust.
14599         (record_btrace_call_history_from): Adjust.
14600         * target-debug.h (target_debug_print_record_print_flags): New.
14601         * target-delegates.c: Re-generate.
14602         * target.c (target_call_history): Change flags type.
14603         (target_call_history_from): Likewise.
14604         (target_call_history_range): Likewise.
14605         * target.h (struct target_ops) <target_call_history>: Likewise.
14606         (target_call_history_from): Likewise.
14607         (target_call_history_range): Likewise.
14608
14609 2018-02-28  Sergio Durigan Junior  <sergiodj@redhat.com>
14610             Simon Marchi  <simon.marchi@polymtl.ca>
14611
14612         * common/common-utils.c: Include "sys/stat.h".
14613         (is_regular_file): Move here from "source.c"; change return
14614         type to "bool".
14615         * common/common-utils.h (is_regular_file): New prototype.
14616         * common/pathstuff.c (contains_dir_separator): New function.
14617         * common/pathstuff.h (contains_dir_separator): New prototype.
14618         * source.c: Don't include "sys/stat.h".
14619         (is_regular_file): Move to "common/common-utils.c".
14620
14621 2018-02-28  Sergio Durigan Junior  <sergiodj@redhat.com>
14622
14623         * Makefile.in (COMMON_SFILES): Add "common/pathstuff.c".
14624         (HFILES_NO_SRCDIR): Add "common/pathstuff.h".
14625         * auto-load.c: Include "common/pathstuff.h".
14626         * common/common-def.h (current_directory): Move here.
14627         * common/gdb_tilde_expand.c (gdb_tilde_expand_up): New
14628         function.
14629         * common/gdb_tilde_expand.h (gdb_tilde_expand_up): New
14630         prototype.
14631         * common/pathstuff.c: New file.
14632         * common/pathstuff.h: New file.
14633         * compile/compile.c: Include "common/pathstuff.h".
14634         * defs.h (current_directory): Move to "common/common-defs.h".
14635         * dwarf2read.c: Include "common/pathstuff.h".
14636         * exec.c: Likewise.
14637         * guile/scm-safe-call.c: Likewise.
14638         * linux-thread-db.c: Likewise.
14639         * main.c: Likewise.
14640         * nto-tdep.c: Likewise.
14641         * objfiles.c: Likewise.
14642         * source.c: Likewise.
14643         * symtab.c: Likewise.
14644         * utils.c: Include "common/pathstuff.h".
14645         (gdb_realpath): Move to "common/pathstuff.c".
14646         (gdb_realpath_keepfile): Likewise.
14647         (gdb_abspath): Likewise.
14648         * utils.h (gdb_realpath): Move to "common/pathstuff.h".
14649         (gdb_realpath_keepfile): Likewise.
14650         (gdb_abspath): Likewise.
14651
14652 2018-02-28  John Baldwin  <jhb@FreeBSD.org>
14653
14654         * fbsd-nat.c (fbsd_resume): Use PT_SETSTEP for stepping and a
14655         wildcard process pid for super_resume for kernels with a
14656         specific bug.
14657
14658 2018-02-27  Phil Muldoon  <pmuldoon@redhat.com>
14659
14660         * compile/compile.c (get_args): Add additional comments
14661         explaining function.
14662
14663 2018-02-27  Simon Marchi  <simon.marchi@polymtl.ca>
14664             Tom Tromey  <tom@tromey.com>
14665
14666         * target.h (memory_write_request_s): Remove typedef.  Don't define
14667         VEC.
14668         (target_write_memory_blocks): Change argument to std::vector.
14669         (struct memory_write_request): Add constructor.
14670         * target-memory.c (compare_block_starting_address): Return bool.
14671         Change argument types.
14672         (claim_memory): Change arguments to use std::vector.
14673         (split_regular_and_flash_blocks, blocks_to_erase)
14674         (compute_garbled_blocks): Likewise.
14675         (cleanup_request_data, cleanup_write_requests_vector): Remove.
14676         (target_write_memory_blocks): Change argument to std::vector.
14677         * symfile.c (struct load_section_data): Add constructor and
14678         destructor.  Use std::vector for "requests".
14679         (struct load_progress_data): Add initializers.
14680         (load_section_callback): Update.  Use "new".
14681         (clear_memory_write_data): Remove.
14682         (generic_load): Update.
14683
14684 2018-02-27  Alan Hayward  <alan.hayward@arm.com>
14685
14686         * arch/aarch64.h: Use common/tdesc.h.
14687
14688 2018-02-26  Maciej W. Rozycki  <macro@mips.com>
14689
14690         * mips-tdep.c (mips_gdbarch_init): Don't use a 32-bit BFD
14691         architecture with a 64-bit ABI.
14692
14693 2018-02-26  Maciej W. Rozycki  <macro@mips.com>
14694
14695         * gdb/mips-tdep.c (mips_gdbarch_init): Reorder ABI determination
14696         ahead of target description loading.
14697
14698 2018-02-26  Tom Tromey  <tom@tromey.com>
14699
14700         * stack.c (backtrace_command_1): Update.
14701         * python/python-internal.h (gdbpy_apply_frame_filter): Change type
14702         of "flags".
14703         * python/py-framefilter.c (py_print_frame)
14704         (gdbpy_apply_frame_filter): Change type of "flags".
14705         * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): Change type
14706         of "flags".
14707         (mi_cmd_stack_list_frames, mi_cmd_stack_list_locals)
14708         (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Update.
14709         * extension.h (enum frame_filter_flag): Rename from
14710         frame_filter_flags.
14711         (frame_filter_flags): Define using DEF_ENUM_FLAGS_TYPE.
14712         (apply_ext_lang_frame_filter): Change type of "flags".
14713         * extension.c (apply_ext_lang_frame_filter): Change type of
14714         "flags".
14715         * extension-priv.h (struct extension_language_ops)
14716         <apply_frame_filter>: Change type of "flags".
14717
14718 2018-02-26  Tom Tromey  <tom@tromey.com>
14719
14720         PR python/16497:
14721         * stack.c (backtrace_command_1): Set PRINT_MORE_FRAMES flag.  Fix
14722         off-by-one in py_end computation.
14723         * python/py-framefilter.c (gdbpy_apply_frame_filter): Handle
14724         PRINT_MORE_FRAMES.
14725         * extension.h (enum frame_filter_flags) <PRINT_MORE_FRAMES>: New
14726         constant.
14727
14728 2018-02-26  Tom Tromey  <tom@tromey.com>
14729
14730         * dwarf2read.c (struct variant_field): New.
14731         (struct nextfield) <variant>: New field.
14732         (dwarf2_add_field): Handle DW_TAG_variant_part.
14733         (dwarf2_attach_fields_to_type): Attach a discriminant_info to a
14734         discriminated union.
14735         (read_structure_type): Handle DW_TAG_variant_part.
14736         (handle_struct_member_die): New function, extracted from
14737         process_structure_scope.  Handle DW_TAG_variant.
14738         (process_structure_scope): Handle discriminated unions.  Call
14739         handle_struct_member_die.
14740
14741 2018-02-26  Tom Tromey  <tom@tromey.com>
14742
14743         * rust-lang.h (rust_last_path_segment): Declare.
14744         * rust-lang.c (rust_last_path_segment): Now public.  Change
14745         contract.
14746         (struct disr_info): Remove.
14747         (RUST_ENUM_PREFIX, RUST_ENCODED_ENUM_REAL)
14748         (RUST_ENCODED_ENUM_HIDDEN, rust_union_is_untagged)
14749         (rust_get_disr_info, rust_tuple_variant_type_p): Remove.
14750         (rust_enum_p, rust_enum_variant): New function.
14751         (rust_underscore_fields): Remove "offset" parameter.
14752         (rust_print_enum): New function.
14753         (rust_val_print) <TYPE_CODE_UNION>: Remove enum code.
14754         <TYPE_CODE_STRUCT>: Call rust_print_enum when appropriate.
14755         (rust_print_struct_def): Add "for_rust_enum" parameter.  Handle
14756         enums.
14757         (rust_internal_print_type): New function, from rust_print_type.
14758         Remove enum code.
14759         (rust_print_type): Call rust_internal_print_type.
14760         (rust_evaluate_subexp) <STRUCTOP_ANONYMOUS, STRUCTOP_STRUCT>:
14761         Update enum handling.
14762         * dwarf2read.c (struct dwarf2_cu) <rust_unions>: New field.
14763         (rust_fully_qualify, alloc_discriminant_info, quirk_rust_enum)
14764         (rust_union_quirks): New functions.
14765         (process_full_comp_unit, process_full_type_unit): Call
14766         rust_union_quirks.
14767         (process_structure_scope): Update rust_unions if necessary.
14768
14769 2018-02-26  Tom Tromey  <tom@tromey.com>
14770
14771         * value.h (value_union_variant): Declare.
14772         * valops.c (value_union_variant): New function.
14773         * gdbtypes.h (TYPE_FLAG_DISCRIMINATED_UNION): New macro.
14774         (struct discriminant_info): New.
14775         (enum dynamic_prop_node_kind) <DYN_PROP_DISCRIMINATED>: New
14776         enumerator.
14777         (struct main_type) <flag_discriminated_union>: New field.
14778
14779 2018-02-26  Tom Tromey  <tom@tromey.com>
14780
14781         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
14782         unittests/unpack-selftests.c.
14783         * unittests/unpack-selftests.c: New file.
14784         * value.c (unpack_bits_as_long): Fix bugs in non-bitfield cases.
14785
14786 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14787
14788         * dwarf2read.c (struct partial_die_info) <read>: New method.
14789         (read_partial_die): Remove the declaration.
14790         (load_partial_dies): Update.
14791         (partial_die_info::partial_die_info):
14792         (read_partial_die): Change it to partial_die_info::read.
14793
14794 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14795
14796         * dwarf2read.c (struct partial_die_info) <fixup>: New method.
14797         (fixup_partial_die): Remove declaration.
14798         (scan_partial_symbols): Update.
14799         (partial_die_parent_scope): Likewise.
14800         (partial_die_full_name): Likewise.
14801         (fixup_partial_die): Change it to partial_die_info::fixup.
14802
14803 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14804
14805         * dwarf2read.c (read_partial_die): Update the declaration.
14806         (load_partial_dies): Caller update.
14807         (read_partial_die): Remove one argument abbrev_len.
14808
14809 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14810
14811         * dwarf2read.c (struct partial_die_info): Add ctor, delete
14812         assignment operator.
14813         (load_partial_dies): Use ctor and copy ctor.
14814         (read_partial_die): Update.
14815         (dwarf2_cu::find_partial_die): Use ctor.
14816
14817 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14818
14819         * dwarf2read.c (struct dwarf2_cu) <find_partial_die>: New method.
14820         (find_partial_die_in_comp_unit): Change it to
14821         dwarf2_cu::find_partial_die.
14822         (find_partial_die): Update.
14823
14824 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14825
14826         * dwarf2read.c (read_partial_die): Remove the code checking abbrev
14827         is NULL.
14828
14829 2018-02-26  Yao Qi  <yao.qi@linaro.org>
14830
14831         * dwarf2read.c (load_partial_dies): Move the location of XOBNEW.
14832
14833 2018-02-26  Alan Hayward  <alan.hayward@arm.com>
14834
14835         * arch/amd64.h: Use common/tdesc.h.
14836         * arch/i386.c: Likewise.
14837         * arch/i386.h: Likewise.
14838         * arch/tic6x.c: Likewise.
14839         * arch/tdesc.h: Move file from here...
14840         * common/tdesc.h: ...to here.
14841         * features/aarch64-core.c: Regenerate.
14842         * features/aarch64-fpu.c: Regenerate.
14843         * features/i386/32bit-avx.c: Regenerate.
14844         * features/i386/32bit-avx512.c: Regenerate.
14845         * features/i386/32bit-core.c: Regenerate.
14846         * features/i386/32bit-linux.c: Regenerate.
14847         * features/i386/32bit-mpx.c: Regenerate.
14848         * features/i386/32bit-pkeys.c: Regenerate.
14849         * features/i386/32bit-sse.c: Regenerate.
14850         * features/i386/64bit-avx.c: Regenerate.
14851         * features/i386/64bit-avx512.c: Regenerate.
14852         * features/i386/64bit-core.c: Regenerate.
14853         * features/i386/64bit-linux.c: Regenerate.
14854         * features/i386/64bit-mpx.c: Regenerate.
14855         * features/i386/64bit-pkeys.c: Regenerate.
14856         * features/i386/64bit-segments.c: Regenerate.
14857         * features/i386/64bit-sse.c: Regenerate.
14858         * features/i386/x32-core.c: Regenerate.
14859         * features/tic6x-c6xp.c: Regenerate.
14860         * features/tic6x-core.c: Regenerate.
14861         * features/tic6x-gp.c: Regenerate.
14862         * target-descriptions.c: Use common/tdesc.h.
14863         * target-descriptions.h: Likewise.
14864
14865 2018-02-24  Tom Tromey  <tom@tromey.com>
14866
14867         * linux-thread-db.c (try_thread_db_load_from_pdir_1)
14868         (try_thread_db_load_from_dir, thread_db_load_search): Use
14869         std::string.
14870         (info_auto_load_libthread_db_compare): Return bool.  Change
14871         argument types.
14872         (info_auto_load_libthread_db): Use std::vector, std::string.
14873         Remove cleanups.
14874
14875 2018-02-24  Tom Tromey  <tom@tromey.com>
14876
14877         * i386-tdep.c (i386_fast_tracepoint_valid_at): "msg" now a
14878         std::string.
14879         * gdbarch.sh (fast_tracepoint_valid_at): Change "msg" to a
14880         std::string*.
14881         * gdbarch.c: Rebuild.
14882         * gdbarch.h: Rebuild.
14883         * breakpoint.c (check_fast_tracepoint_sals): Use std::string.
14884         * arch-utils.h (default_fast_tracepoint_valid_at): Update.
14885         * arch-utils.c (default_fast_tracepoint_valid_at): "msg" now a
14886         std::string*.
14887
14888 2018-02-23  Simon Marchi  <simon.marchi@polymtl.ca>
14889
14890         * gdbtypes.h (sect_offset): Change type to uint64_t.
14891         (sect_offset_str): New function.
14892         * dwarf2read.c (create_addrmap_from_aranges): Use
14893         sect_offset_str.
14894         (error_check_comp_unit_head): Likewise.
14895         (create_debug_type_hash_table): Likewise.
14896         (read_cutu_die_from_dwo): Likewise.
14897         (init_cutu_and_read_dies): Likewise.
14898         (init_cutu_and_read_dies_no_follow): Likewise.
14899         (process_psymtab_comp_unit_reader): Likewise.
14900         (partial_die_parent_scope): Likewise.
14901         (peek_die_abbrev): Likewise.
14902         (process_queue): Likewise.
14903         (dwarf2_physname): Likewise.
14904         (read_namespace_alias): Likewise.
14905         (read_import_statement): Likewise.
14906         (create_dwo_cu_reader): Likewise.
14907         (create_cus_hash_table): Likewise.
14908         (lookup_dwo_cutu): Likewise.
14909         (inherit_abstract_dies): Likewise.
14910         (read_func_scope): Likewise.
14911         (read_call_site_scope): Likewise.
14912         (dwarf2_add_member_fn): Likewise.
14913         (read_common_block): Likewise.
14914         (read_module_type): Likewise.
14915         (read_typedef): Likewise.
14916         (read_subrange_type): Likewise.
14917         (load_partial_dies): Likewise.
14918         (read_partial_die): Likewise.
14919         (find_partial_die): Likewise.
14920         (read_str_index): Likewise.
14921         (dwarf2_string_attr): Likewise.
14922         (build_error_marker_type): Likewise.
14923         (lookup_die_type): Likewise.
14924         (dump_die_shallow): Likewise.
14925         (follow_die_ref): Likewise.
14926         (dwarf2_fetch_die_loc_sect_off): Likewise.
14927         (dwarf2_fetch_constant_bytes): Likewise.
14928         (follow_die_sig): Likewise.
14929         (get_signatured_type): Likewise.
14930         (get_DW_AT_signature_type): Likewise.
14931         (dwarf2_find_containing_comp_unit): Likewise.
14932         (set_die_type): Likewise.
14933
14934 2018-02-21  John Baldwin  <jhb@FreeBSD.org>
14935
14936         * arch/aarch64.c: Include "common-defs.h".
14937         * arch/amd64.c: Likewise.
14938         * arch/i386.c: Likewise.
14939
14940 2018-02-21  Tom Tromey  <tom@tromey.com>
14941
14942         * value.h: (extract_field_op): Update.
14943         * eval.c (extract_field_op): Return a const char *.
14944         * expression.h (parse_expression_for_completion): Update.
14945         * completer.c (complete_expression): Update.
14946         (add_struct_fields): Make fieldname const.
14947         * parse.c (expout_completion_name): Now a unique_xmalloc_ptr.
14948         (mark_completion_tag, parse_exp_in_context_1): Update.
14949         (parse_expression_for_completion): Change "name" to
14950         unique_xmalloc_ptr*.
14951
14952 2018-02-21  Tom Tromey  <tom@tromey.com>
14953
14954         * infcall.c (call_function_by_hand_dummy): Use std::vector.
14955
14956 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14957
14958         * avr-tdep.c (avr_read_pc): Change parameter type to
14959         readable_regcache.
14960         * gdbarch.sh (read_pc): Likewise.
14961         * gdbarch.c: Re-generated.
14962         * gdbarch.h: Re-generated.
14963         * hppa-tdep.c (hppa_read_pc): Change parameter type to
14964         readable_regcache.
14965         * ia64-tdep.c (ia64_read_pc): Likewise.
14966         * mips-tdep.c (mips_read_pc): Likewise.
14967         * spu-tdep.c (spu_read_pc): Likewise.
14968
14969 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14970
14971         * Makefile.in (COMMON_SFILES): Add regcache-dump.c
14972         * regcache-dump.c: New file.
14973         * regcache.c: Move register_dump to regcache-dump.c.
14974         (maintenance_print_registers): Likewise.
14975         (maintenance_print_raw_registers): Likewise.
14976         (maintenance_print_cooked_registers): Likewise.
14977         (maintenance_print_register_groups): Likewise.
14978         (maintenance_print_remote_registers): Likewise.
14979         (_initialize_regcache): Likewise.
14980         * regcache.h (register_dump): Moved from regcache.c.
14981
14982 2018-02-21  Yao Qi  <yao.qi@linaro.org>
14983
14984         * regcache.c (regcache::regcache): Update.
14985         (regcache::invalidate): Move it to detached_regcache::invalidate.
14986         (get_thread_arch_aspace_regcache): Update.
14987         (regcache::raw_update): Update.
14988         (regcache::cooked_read): Remove some code.
14989         (regcache::cooked_read_value): Likewise.
14990         (regcache::raw_write): Remove assert on m_readonly_p.
14991         (regcache::raw_supply_integer): Move it to
14992         detached_regcache::raw_supply_integer.
14993         (regcache::raw_supply_zeroed): Likewise.
14994         * regcache.h (detached_regcache) <raw_supply_integer>: New
14995         declaration.
14996         <raw_supply_zeroed, invalidate>: Likewise.
14997         (regcache) <raw_supply_integer, raw_supply_zeroed>: Removed.
14998         <invalidate>: Likewise.
14999         <m_readonly_p>: Removed.
15000
15001 2018-02-21  Yao Qi  <yao.qi@linaro.org>
15002
15003         * infcmd.c (get_return_value): Let stop_regs point to
15004         get_current_regcache.
15005         * regcache.c (regcache::regcache): Remove.
15006         (register_dump_reg_buffer): New class.
15007         (regcache_print): Adjust.
15008         * regcache.h (regcache): Remove constructors.
15009
15010 2018-02-21  Yao Qi  <yao.qi@linaro.org>
15011
15012         * regcache.c (class register_dump): New class.
15013         (register_dump_regcache, register_dump_none): New class.
15014         (register_dump_remote, register_dump_groups): New class.
15015         (regcache_print): Update.
15016         * regcache.h (regcache_dump_what): Move it to regcache.c.
15017         (regcache) <dump>: Remove.
15018
15019 2018-02-21  Yao Qi  <yao.qi@linaro.org>
15020
15021         * jit.c (struct jit_unwind_private) <regcache>: Change its type to
15022          reg_buffer_rw *.
15023         (jit_unwind_reg_set_impl): Call raw_supply.
15024         (jit_frame_sniffer): Use reg_buffer_rw.
15025         * record-full.c (record_full_core_regbuf): Change its type.
15026         (record_full_core_open_1): Use reg_buffer_rw.
15027         (record_full_close): Likewise.
15028         (record_full_core_fetch_registers): Use regcache->raw_supply.
15029         (record_full_core_store_registers): Likewise.
15030         * regcache.c (regcache::get_register_status): Move it to
15031         reg_buffer.
15032         (regcache_raw_set_cached_value): Remove.
15033         (regcache::raw_set_cached_value): Remove.
15034         (regcache::raw_write): Call raw_supply.
15035         (regcache::raw_supply): Move it to reg_buffer_rw.
15036         * regcache.h (regcache_raw_set_cached_value): Remove.
15037         (reg_buffer_rw): New class.
15038
15039 2018-02-21  Yao Qi  <yao.qi@linaro.org>
15040
15041         * dummy-frame.c (dummy_frame_cache) <prev_regcache>: Use
15042         readonly_detached_regcache.
15043         (dummy_frame_prev_register): Use regcache->cooked_read.
15044         * frame.c (frame_save_as_regcache): Change return type.
15045         (frame_pop): Update.
15046         * frame.h (frame_save_as_regcache): Update declaration.
15047         * inferior.h (get_infcall_suspend_state_regcache): Update
15048         declaration.
15049         * infrun.c (infcall_suspend_state) <registers>: use
15050         readonly_detached_regcache.
15051         (save_infcall_suspend_state): Don't use regcache_dup.
15052         (get_infcall_suspend_state_regcache): Change return type.
15053         * linux-fork.c (struct fork_info) <savedregs>: Change to
15054         readonly_detached_regcache.
15055         <pc>: New field.
15056         (fork_save_infrun_state): Don't use regcache_dup.
15057         (info_checkpoints_command): Adjust.
15058         * mi/mi-main.c (register_changed_p): Update declaration.
15059         (mi_cmd_data_list_changed_registers): Use
15060         readonly_detached_regcache.
15061         (register_changed_p): Change parameter type to
15062         readonly_detached_regcache.
15063         * ppc-linux-tdep.c (ppu2spu_cache) <regcache>: Use
15064         readonly_detached_regcache.
15065         (ppu2spu_sniffer): Construct a new readonly_detached_regcache.
15066         * regcache.c (readonly_detached_regcache::readonly_detached_regcache):
15067         New.
15068         (regcache::save): Move it to reg_buffer.
15069         (regcache::restore): Change parameter type.
15070         (regcache_dup): Remove.
15071         * regcache.h (reg_buffer) <save>: New method.
15072         (readonly_detached_regcache): New class.
15073         * spu-tdep.c (spu2ppu_cache) <regcache>: Use
15074         readonly_detached_regcache.
15075         (spu2ppu_sniffer): Construct a new readonly_detached_regcache.
15076
15077 2018-02-21  Yao Qi  <yao.qi@linaro.org>
15078
15079         * frame.c (frame_save_as_regcache): Use regcache method save.
15080         (frame_pop): Use regcache method restore.
15081         * infrun.c (restore_infcall_suspend_state): Likewise.
15082         * linux-fork.c (fork_load_infrun_state): Likewise.
15083         * ppc-linux-tdep.c (ppu2spu_sniffer): User regcache method
15084         save.
15085         * regcache.c (regcache_save): Remove.
15086         (regcache::restore): More asserts.
15087         (regcache_cpy): Remove.
15088         * regcache.h (regcache_save): Remove the declaration.
15089         (regcache::restore): Move from private to public.
15090         Remove the friend declaration of regcache_cpy.
15091         (regcache_cpy): Remove declaration.
15092
15093 2018-02-21  Yao Qi  <yao.qi@linaro.org>
15094
15095         * aarch64-tdep.c (aarch64_pseudo_register_read_value): Change
15096         parameter type to 'readable_regcache *'.
15097         * amd64-tdep.c (amd64_pseudo_register_read_value): Likewise.
15098         * arm-tdep.c (arm_neon_quad_read): Likewise.
15099         (arm_pseudo_read): Likewise.
15100         * avr-tdep.c (avr_pseudo_register_read): Likewise.
15101         * bfin-tdep.c (bfin_pseudo_register_read): Likewise.
15102         * frv-tdep.c (frv_pseudo_register_read): Likewise.
15103         * gdbarch.c: Re-generated.
15104         * gdbarch.h: Re-generated.
15105         * gdbarch.sh (pseudo_register_read): Change parameter type to
15106         'readable_regcache *'.
15107         (pseudo_register_read_value): Likewise.
15108         * h8300-tdep.c (pseudo_from_raw_register): Likewise.
15109         (h8300_pseudo_register_read): Likewise.
15110         * hppa-tdep.c (hppa_pseudo_register_read): Likewise.
15111         * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Likewise.
15112         (i386_pseudo_register_read_into_value): Likewise.
15113         (i386_pseudo_register_read_value): Likewise.
15114         * i386-tdep.h (i386_pseudo_register_read_into_value): Update
15115         declaration.
15116         * ia64-tdep.c (ia64_pseudo_register_read): Likewise.
15117         * m32c-tdep.c (m32c_raw_read): Likewise.
15118         (m32c_read_flg): Likewise.
15119         (m32c_banked_register): Likewise.
15120         (m32c_banked_read): Likewise.
15121         (m32c_sb_read): Likewise.
15122         (m32c_part_read): Likewise.
15123         (m32c_cat_read): Likewise.
15124         (m32c_r3r2r1r0_read): Likewise.
15125         (m32c_pseudo_register_read): Likewise.
15126         * m68hc11-tdep.c (m68hc11_pseudo_register_read): Likewise.
15127         * mep-tdep.c (mep_pseudo_cr32_read): Likewise.
15128         (mep_pseudo_cr64_read): Likewise.
15129         (mep_pseudo_register_read): Likewise.
15130         * mips-tdep.c (mips_pseudo_register_read): Likewise.
15131         * msp430-tdep.c (msp430_pseudo_register_read): Likewise.
15132         * nds32-tdep.c (nds32_pseudo_register_read): Likewise.
15133         * regcache.c (regcache::raw_read): Move it to readable_regcache.
15134         (regcache::cooked_read): Likewise.
15135         (regcache::cooked_read_value): Likewise.
15136         (regcache_cooked_read_signed):
15137         (regcache::cooked_read): Likewise.
15138         * regcache.h (readable_regcache): New class.
15139         (regcache): Inherit readable_regcache.  Move some methods to
15140         readable_regcache.
15141         * rl78-tdep.c (rl78_pseudo_register_read): Change
15142         parameter type to 'readable_regcache *'.
15143         * rs6000-tdep.c (do_regcache_raw_read): Remove.
15144         (e500_pseudo_register_read): Change parameter type to
15145         'readable_regcache *'.
15146         (dfp_pseudo_register_read): Likewise.
15147         (vsx_pseudo_register_read): Likewise.
15148         (efpr_pseudo_register_read): Likewise.
15149         * s390-tdep.c (s390_pseudo_register_read): Likewise.
15150         * sh-tdep.c (sh_pseudo_register_read): Likewise.
15151         * sh64-tdep.c (pseudo_register_read_portions): Likewise.
15152         (sh64_pseudo_register_read): Likewise.
15153         * sparc-tdep.c (sparc32_pseudo_register_read): Likewise.
15154         * sparc64-tdep.c (sparc64_pseudo_register_read): Likewise.
15155         * spu-tdep.c (spu_pseudo_register_read_spu): Likewise.
15156         (spu_pseudo_register_read): Likewise.
15157         * xtensa-tdep.c (xtensa_register_read_masked): Likewise.
15158         (xtensa_pseudo_register_read): Likewise.
15159
15160 2018-02-21  Yao Qi  <yao.qi@linaro.org>
15161
15162         * regcache.c (regcache::regcache): Call reg_buffer ctor.
15163         (regcache::arch): Move it to reg_buffer::arch.
15164         (regcache::register_buffer): Likewise.
15165         (regcache::assert_regnum): Likewise.
15166         (regcache::num_raw_registers): Likewise.
15167         * regcache.h (reg_buffer): New class.
15168         (regcache): Inherit reg_buffer.
15169
15170 2018-02-20  Simon Marchi  <simon.marchi@ericsson.com>
15171
15172         * remote-sim.c (gdb_os_printf_filtered, gdb_os_vprintf_filtered,
15173         gdb_os_evprintf_filtered, gdb_os_error): Add ATTRIBUTE_PRINTF.
15174
15175 2018-02-20  Markus Metzger  <markus.t.metzger@intel.com>
15176
15177         * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add mkstemp.
15178
15179 2018-02-19  Alan Hayward  <alan.hayward@arm.com>
15180
15181         * Makefile.in: (COMMON_SFILES): Add common/*.c files.
15182         (SFILES): Remove common/*.c files.
15183         (COMMON_OBS): Remove some *.o files built from common/*.c files.
15184         * common/common.host: Add common reference.
15185         * configure.ac: Likewise.
15186         * configure: Regenerate.
15187
15188 2018-02-16  Yao Qi  <yao.qi@linaro.org>
15189
15190         * block.c (block_namespace_info): Inherit allocate_on_obstack.
15191         (block_initialize_namespace): Use new.
15192         * dwarf2read.c (dwarf2_per_objfile): Inherit allocate_on_obstack.
15193         (dwarf2_free_objfile): Use delete.
15194         * gdbtypes.c (type_pair): Inherit allocate_on_obstack.
15195         (copy_type_recursive): Use new.
15196         * gdb_obstack.h (allocate_on_obstack): New.
15197
15198 2018-02-15  Yao Qi  <yao.qi@linaro.org>
15199
15200         PR gdb/22849
15201         * inferior.c (exit_inferior_1): Reset inf->control.
15202
15203 2018-02-15  Joel Brobecker  <brobecker@adacore.com>
15204
15205         * ada-lang.c (ada_to_fixed_value_create): Delete advance
15206         declaration.
15207
15208 2018-02-14  Pedro Alves  <palves@redhat.com>
15209
15210         * frame-unwind.c (frame_unwind_try_unwinder): Always call
15211         frame_cleanup_after_sniffer on exception.
15212
15213 2018-02-14  Tom Tromey  <tom@tromey.com>
15214
15215         * solist.h (struct target_so_ops) <bfd_open>: Make pathname
15216         const.
15217         (solib_bfd_open): Make pathname const.
15218         * solib.c (solib_bfd_open): Make pathname const.
15219         * solib-spu.c (spu_bfd_fopen): Make name const.
15220         (spu_bfd_open): Make pathname const.
15221         * solib-darwin.c (darwin_bfd_open): Make pathname const.
15222         * solib-aix.c (solib_aix_bfd_open): Make pathname const.
15223
15224 2018-02-14  Tom Tromey  <tom@tromey.com>
15225
15226         * symfile.c (symfile_bfd_open): Update.
15227         * source.h (openp, source_full_path_of, find_and_open_source):
15228         Change argument type to unique_xmalloc_ptr.
15229         * source.c (openp): Take a unique_xmalloc_ptr.
15230         (source_full_path_of, find_and_open_source): Likewise.
15231         (open_source_file, symtab_to_fullname): Update.
15232         * solist.h (struct target_so_ops) <find_and_open_solib>: Take a
15233         unique_xmalloc_ptr.
15234         * solib.c (solib_find_1): Use unique_xmalloc_ptr.
15235         (exec_file_find): Update.
15236         * psymtab.c (psymtab_to_fullname): Update.
15237         * nto-tdep.h (nto_find_and_open_solib): Update.
15238         * nto-tdep.c (nto_find_and_open_solib): Change temp_path to a
15239         unique_xmalloc_ptr.
15240         * exec.c (exec_file_attach): Update.
15241         * dwarf2read.c (try_open_dwop_file): Use unique_xmalloc_ptr.
15242         * cli/cli-cmds.c (find_and_open_script): Use unique_xmalloc_ptr.
15243
15244 2018-02-14  Tom Tromey  <tom@tromey.com>
15245
15246         * solib.c: Include source.h.
15247         * nto-tdep.c: Include source.h.
15248         * mi/mi-cmd-env.c: Include source.h.
15249         * infcmd.c: Include source.h.
15250         * exec.c: Include source.h.
15251         * defs.h (enum openp_flag, openp, source_full_path_of, mod_path)
15252         (add_path, directory_switch, source_path, init_source_path): Move
15253         declarations...
15254         * source.h (enum openp_flag, openp, source_full_path_of, mod_path)
15255         (add_path, directory_switch, source_path, init_source_path):
15256         ...here.
15257
15258 2018-02-14  Tom Tromey  <tom@tromey.com>
15259
15260         * solist.h (exec_file_find, solib_find): Return
15261         unique_xmalloc_ptr.
15262         (solib_bfd_fopen): Take a const char *.
15263         * solib.c (solib_find_1): Return unique_xmalloc_ptr.
15264         (exec_file_find, solib_find): Likewise.
15265         (solib_bfd_fopen): Do not take ownership of "pathname".
15266         (solib_bfd_open): Use unique_xmalloc_ptr.
15267         * solib-darwin.c (darwin_bfd_open): Use unique_xmalloc_ptr.
15268         * solib-aix.c (solib_aix_bfd_open): Use unique_xmalloc_ptr.
15269         * infrun.c (follow_exec): Use unique_xmalloc_ptr.
15270         * exec.c (exec_file_locate_attach): Use unique_xmalloc_ptr.
15271
15272 2018-02-14  Joel Brobecker  <brobecker@adacore.com>
15273
15274         * ada-lang.c (name_match_type_from_name): Remove reference to
15275         ada_name_for_lookup in function's documentation.
15276         * ada-lang.h (ada_name_for_lookup): Delete declaration.
15277
15278 2018-02-13  Simon Marchi  <simon.marchi@polymtl.ca>
15279
15280         * defs.h (enum openp_flags): New enum.
15281         (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH, OPF_RETURN_REALPATH):
15282         Move to enum openp_flags.
15283         (openp_flags): New enum flags.
15284         (openp): Change parameter type to openp_flags.
15285         * source.c (openp): Change parameter type to openp_flags.
15286         * cli/cli-cmds.c (find_and_open_script): Use openp_flags.
15287         * dwarf2read.c (try_open_dwop_file): Use openp_flags.
15288
15289 2018-02-13  Simon Marchi  <simon.marchi@polymtl.ca>
15290
15291         * maint.c (_initialize_maint_cmds): Fix prefix of maint set/show
15292         per-command.
15293
15294 2018-02-12  Andrew Burgess  <andrew.burgess@embecosm.com>
15295
15296         * dwarf2read.c (dwarf2_release_queue): Delete function, move body
15297         into...
15298         (class dwarf2_queue_guard): ...the destructor of this new class.
15299         (dw2_do_instantiate_symtab): Create instance of the new class
15300         dwarf2_queue_guard, remove cleanup.
15301
15302 2018-02-09  Tom Tromey  <tom@tromey.com>
15303
15304         * source.c (find_source_lines): Don't reference past the end of
15305         the vector.
15306
15307 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
15308
15309         * remote.c (remote_btrace_maybe_reopen): Change error message.
15310         * btrace.c (btrace_enable): Likewise.
15311         (parse_xml_btrace): Likewise.
15312         (parse_xml_btrace_conf): Likewise.
15313
15314 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
15315
15316         * nat/linux-btrace.c (diagnose_perf_event_open_fail): New.
15317         (linux_enable_pt, linux_enable_bts): Call
15318         diagnose_perf_event_open_fail.
15319
15320 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
15321
15322         * nat/linux-btrace.c (perf_event_pt_event_type): Improve error message.
15323         Remove parameter and change return type.  Update callers.  Move it.
15324         (linux_enable_bts, linux_enable_pt): Improve error message.
15325         (linux_enable_pt): Remove zero buffer size check.
15326         (linux_enable_btrace): Improve error messages.  Remove NULL return
15327         check.
15328
15329 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
15330
15331         * btrace.c (btrace_enable): Remove target_supports_btrace call.
15332         * nat/linux-btrace.c (perf_event_pt_event_type): Move.
15333         (kernel_supports_bts, kernel_supports_pt, linux_supports_bts)
15334         (linux_supports_pt, linux_supports_btrace): Remove.
15335         (linux_enable_bts): Call cpu_supports_bts.
15336         * nat/linux-btrace.h (linux_supports_btrace): Remove.
15337         * remote.c (remote_supports_btrace): Remove.
15338         (init_remote_ops): Remove remote_supports_btrace.
15339         * target-delegates.c: Regenerated.
15340         * target.c (target_supports_btrace): Remove.
15341         * target.h (target_ops) <to_supports_btrace>: Remove
15342         (target_supports_btrace): Remove.
15343         * x86-linux-nat.c (x86_linux_create_target): Remove
15344         linux_supports_btrace.
15345
15346 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
15347
15348         * nat/linux-btrace.c (linux_enable_btrace): Throw exception if enabling
15349         btrace failed.
15350         * x86-linux-nat.c (x86_linux_enable_btrace): Catch btrace enabling
15351         exception and use message in own exception.
15352
15353 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
15354
15355         * nat/linux-btrace.c: Include scoped_fd.h and scoped_mmap.h.
15356         (perf_event_pt_event_type): Use gdb_file_up.
15357         (linux_enable_bts, linux_enable_pt): Use gdb::unique_xmalloc_ptr,
15358         scoped_fd, and scoped_mmap.
15359
15360 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
15361
15362         * common/scoped_mmap.h: New.
15363         * unittests/scoped_mmap-selftest.c: New.
15364         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
15365         unittests/scoped_mmap-selftest.c.
15366
15367 2018-02-09  Markus Metzger  <markus.t.metzger@intel.com>
15368
15369         * common/scoped_fd.h: New.
15370         * unittests/scoped_fd-selftest.c: New.
15371         * Makefile.in (SUBDIR_UNITTESTS_SRCS): Add
15372         unittests/scoped_fd-selftest.c.
15373
15374 2018-02-09  Tom Tromey  <tom@tromey.com>
15375
15376         * auto-load.c (auto_load_section_scripts): Use
15377         gdb::unique_xmalloc_ptr.
15378
15379 2018-02-09  Tom Tromey  <tom@tromey.com>
15380
15381         * auto-load.c (execute_script_contents): Use std::string.
15382
15383 2018-02-09  Joel Brobecker  <brobecker@adacore.com>
15384
15385         * NEWS <Changes in GDB 8.1>: Clarify that "rbreak" is a new
15386         Python function, rather than a new command.
15387
15388 2018-02-08  Tom Tromey  <tom@tromey.com>
15389
15390         * solib.c (solib_find_1): Use std::string.
15391         (solib_bfd_fopen): Use unique_xmalloc_ptr.
15392
15393 2018-02-08  Tom Tromey  <tom@tromey.com>
15394
15395         * build-id.c (build_id_to_debug_bfd): Use unique_xmalloc_ptr.
15396
15397 2018-02-08  Tom Tromey  <tom@tromey.com>
15398
15399         * source.c (find_source_lines): Use gdb::def_vector.
15400
15401 2018-02-08  Tom Tromey  <tom@tromey.com>
15402
15403         * macrocmd.c (struct temporary_macro_definition): New.
15404         (macro_define_command): Use temporary_macro_definition.  Remove
15405         cleanups.
15406         (free_macro_definition_ptr): Remove.
15407
15408 2018-02-08  Tom Tromey  <tom@tromey.com>
15409
15410         * macroexp.c (maybe_expand): Use std::string.
15411
15412 2018-02-08  Tom Tromey  <tom@tromey.com>
15413
15414         * macroexp.c (struct macro_buffer): Add initializers for some
15415         members.
15416         (init_buffer, init_shared_buffer, free_buffer)
15417         (free_buffer_return_text): Remove.
15418         (macro_buffer): New constructors.
15419         (~macro_buffer): New destructor.
15420         (macro_buffer::set_shared): New method.
15421         (macro_buffer::resize_buffer, macro_buffer::appendc)
15422         (macro_buffer::appendmem): Now methods, not free functions.
15423         (set_token, append_tokens_without_splicing, stringify)
15424         (macro_stringify): Update.
15425         (gather_arguments): Change return type.  Remove argc_p argument,
15426         add args_ptr argument.  Use std::vector.
15427         (substitute_args): Remove argc argument.  Accept std::vector.
15428         (expand): Update.  Use std::vector.
15429         (scan, macro_expand, macro_expand_next): Update.
15430
15431 2018-02-08  Tom Tromey  <tom@tromey.com>
15432
15433         * symtab.c (default_collect_symbol_completion_matches_break_on):
15434         Use unique_xmalloc_ptr.
15435         * macroscope.h: (sal_macro_scope, user_macro_scope)
15436         (default_macro_scope): Return unique_xmalloc_ptr.
15437         * macroscope.c (sal_macro_scope, user_macro_scope)
15438         (default_macro_scope): Return unique_xmalloc_ptr.
15439         * macroexp.h (macro_expand, macro_expand_once): Return
15440         unique_xmalloc_ptr.
15441         * macroexp.c (macro_expand, macro_expand_once): Return
15442         unique_xmalloc_ptr.
15443         * macrocmd.c (macro_expand_command, macro_expand_once_command)
15444         (info_macro_command, info_macros_command): Use
15445         unique_xmalloc_ptr.
15446         * compile/compile-c-support.c (write_macro_definitions): Use
15447         unique_xmalloc_ptr.
15448         * c-exp.y (c_parse): Use unique_xmalloc_ptr.
15449
15450 2018-02-07  Simon Marchi  <simon.marchi@ericsson.com>
15451
15452         * value.c (value_static_field): Assign field type instead of
15453         containing type when returning an optimized out value.
15454
15455 2018-02-06  Yao Qi  <yao.qi@linaro.org>
15456
15457         * ft32-tdep.c (ft32_read_pc): Remove.
15458         (ft32_write_pc): Remove.
15459         (ft32_gdbarch_init): Update.
15460         * m32r-tdep.c (m32r_read_pc): Remove.
15461         (m32r_gdbarch_init): Update.
15462         * mep-tdep.c (mep_read_pc): Remove.
15463         (mep_gdbarch_init): Update.
15464         * microblaze-tdep.c (microblaze_write_pc): Remove.
15465         (microblaze_gdbarch_init): Update.
15466         * mn10300-tdep.c (mn10300_read_pc): Remove.
15467         (mn10300_write_pc): Remove.
15468         (mn10300_gdbarch_init): Update.
15469         * moxie-tdep.c (moxie_read_pc): Remove.
15470         (moxie_write_pc): Remove.
15471         (moxie_gdbarch_init): Update.
15472
15473 2018-02-06  Yao Qi  <yao.qi@linaro.org>
15474
15475         * expprint.c (print_subexp_standard): Handle
15476         OP_F77_UNDETERMINED_ARGLIST.
15477         (dump_subexp_body_standard): Likewise.
15478
15479 2018-02-05  Alan Hayward  <alan.hayward@arm.com>
15480
15481         * target-descriptions.c (tdesc_element_visitor) Add empty
15482         implementations.
15483         (tdesc_type): Move make_gdb_type from here.
15484         (tdesc_type_builtin): Likewise.
15485         (tdesc_type_vector): Likewise.
15486         (tdesc_type_with_fields): Move make_gdb_type_ functions from here.
15487         (make_gdb_type_struct): Move from tdesc_type_with_fields.
15488         (make_gdb_type_union): Likewise.
15489         (make_gdb_type_flags): Likewise.
15490         (make_gdb_type_enum): Likewise.
15491         (make_gdb_type): New function.
15492         (tdesc_register_type): Use static make_gdb_type.
15493
15494 2018-02-05  Ruslan Kabatsayev <b7.10110111@gmail.com>
15495
15496         * infcmd.c (default_print_one_register_info): Align natural-format
15497         column values consistently one under another.
15498         (pad_to_column): New function.
15499
15500 2018-02-05  Joel Brobecker  <brobecker@adacore.com>
15501
15502         * dwarf2read.c (dwarf2_physname): Move commment.
15503
15504 2018-02-01  Leszek Swirski  <leszeks@google.com>
15505
15506         * varobj.c (varobj_formatted_print_options): Allow recursive
15507         pretty printing if pretty printing is enabled.
15508
15509 2018-02-01  Leszek Swirski  <leszeks@google.com>
15510
15511         * c-exp.y (lex_one_token, classify_name, yylex): Don't classify
15512         names after a structop as a filename.
15513
15514 2018-02-01  Yao Qi  <yao.qi@linaro.org>
15515
15516         * arm-tdep.c (arm_record_data_proc_misc_ld_str): Rewrite it.
15517         (arm_record_coproc_data_proc): Likewise.
15518
15519 2018-02-01  Yao Qi  <yao.qi@linaro.org>
15520
15521         * arm-tdep.c (arm_record_extension_space): Change ret to signed.
15522
15523 2018-01-31  Nikola Prica  <nikola.prica@rt-rk.com>
15524
15525         * rs6000-tdep.c (skip_prologue): Remove shifting for lr_reg and
15526         assign shifted lr_reg to fdata->lr_register when lr_reg is set.
15527
15528 2018-01-31  Pedro Alves  <palves@redhat.com>
15529
15530         * darwin-nat.c (darwin_interrupt): Remove ptid_t parameter.
15531         * inflow.c (child_terminal_save_inferior): Wrap reference to
15532         tcgetpgrp in HAVE_TERMIOS_H.
15533         (child_interrupt, child_pass_ctrlc): Wrap references to signal in
15534         _WIN32.
15535         * remote-sim.c (gdbsim_interrupt): Remove ptid_t parameter and
15536         always iterate over all inferiors.
15537         (gdbsim_cntrl_c): Adjust.
15538         * windows-nat.c (windows_interrupt): Remove 'ptid_t' parameter.
15539
15540 2018-01-31  Joel Brobecker  <brobecker@adacore.com>
15541
15542         * gdbtypes.c (lookup_array_range_type): Make sure the array's
15543         index type is objfile-owned if the element type is as well.
15544
15545 2018-01-31  Joel Brobecker  <brobecker@adacore.com>
15546
15547         GDB 8.1 released.
15548
15549 2018-01-30  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15550
15551         * s390-linux-tdep.c: Remove includes "features/s390-linux32.c" and
15552         "features/s390x-linux64.c".
15553         (_initialize_s390_linux_tdep): Remove initialization of tdescs
15554         s390_linux32 and s390x_linux64.
15555         (s390_linux_init_abi_31, s390_linux_init_abi_64): Don't set
15556         default tdesc.
15557         * s390-tdep.c: Include "features/s390-linux32.c" and
15558         "features/s390x-linux64.c".
15559         (s390_tdesc_valid): Add check for tdesc_has_registers.
15560         (s390_gdbarch_init): Make sure there is always a valid tdesc.
15561         (_initialize_s390_tdep): Initialize tdesc_s390_linux32 and
15562         tdesc_s390x_linux64.
15563         * s390-linux-tdep.h: Move export of tdesc_s390_linux32 and
15564         tdesc_s390x_linux64 to...
15565         * s390-tdep.h: ...here.
15566
15567 2018-01-30  Pedro Alves  <palves@redhat.com>
15568
15569         PR gdb/13211
15570         * config.in, configure: Regenerate.
15571         * configure.ac: Check for getpgid.
15572         * go32-nat.c (go32_pass_ctrlc): New.
15573         (go32_target): Install it.
15574         * inf-child.c (inf_child_target): Install
15575         child_terminal_save_inferior, child_pass_ctrlc and
15576         child_interrupt.
15577         * inf-ptrace.c (inf_ptrace_interrupt): Delete.
15578         (inf_ptrace_target): No longer install it.
15579         * infcmd.c (interrupt_target_1): Adjust.
15580         * inferior.h (child_terminal_save_inferior, child_pass_ctrlc)
15581         (child_interrupt): Declare.
15582         (inferior::terminal_state): New.
15583         * inflow.c (struct terminal_info): Update comments.
15584         (inferior_process_group): Delete.
15585         (terminal_is_ours): Delete.
15586         (gdb_tty_state): New.
15587         (child_terminal_init): Adjust.
15588         (is_gdb_terminal, sharing_input_terminal_1)
15589         (sharing_input_terminal): New functions.
15590         (child_terminal_inferior): Adjust.  Use sharing_input_terminal.
15591         Set the process's actual process group in the foreground if
15592         possible.  Handle is_ours_for_output/is_ours distinction.  Don't
15593         mark terminal as the inferior's if not sharing GDB's terminal.
15594         Don't check attach_flag.
15595         (child_terminal_ours_for_output, child_terminal_ours): Adjust to
15596         pass down a target_terminal_state.
15597         (child_terminal_save_inferior): New, factored out from ...
15598         (child_terminal_ours_1): ... this.  Handle
15599         target_terminal_state::is_ours_for_output.
15600         (child_interrupt, child_pass_ctrlc): New.
15601         (inflow_inferior_exit): Clear the inferior's terminal_state.
15602         (copy_terminal_info): Copy the inferior's terminal state.
15603         (_initialize_inflow): Remove reference to terminal_is_ours.
15604         * inflow.h (inferior_process_group): Delete.
15605         * nto-procfs.c (nto_handle_sigint, procfs_interrupt): Adjust.
15606         * procfs.c (procfs_target): Don't install procfs_interrupt.
15607         (procfs_interrupt): Delete.
15608         * remote.c (remote_serial_quit_handler): Adjust.
15609         (remote_interrupt): Remove ptid parameter.  Adjust.
15610         * target-delegates.c: Regenerate.
15611         * target.c: Include "terminal.h".
15612         (target_terminal::terminal_state): Rename to ...
15613         (target_terminal::m_terminal_state): ... this.
15614         (target_terminal::init): Adjust.
15615         (target_terminal::inferior): Adjust to per-inferior
15616         terminal_state.
15617         (target_terminal::restore_inferior, target_terminal_is_ours_kind): New.
15618         (target_terminal::ours, target_terminal::ours_for_output): Use
15619         target_terminal_is_ours_kind.
15620         (target_interrupt): Remove ptid parameter.  Adjust.
15621         (default_target_pass_ctrlc): Adjust.
15622         * target.h (target_ops::to_terminal_save_inferior): New field.
15623         (target_ops::to_interrupt): Remove ptid_t parameter.
15624         (target_interrupt): Remove ptid_t parameter.  Update comment.
15625         (target_pass_ctrlc): Update comment.
15626         * target/target.h (target_terminal_state): New scoped enum,
15627         factored out of ...
15628         (target_terminal::terminal_state): ... here.
15629         (target_terminal::inferior): Update comments.
15630         (target_terminal::restore_inferior): New.
15631         (target_terminal::is_inferior, target_terminal::is_ours)
15632         (target_terminal::is_ours_for_output): Adjust.
15633         (target_terminal::scoped_restore_terminal_state): Adjust to
15634         rename, and call restore_inferior() instead of inferior().
15635         (target_terminal::scoped_restore_terminal_state::m_state): Change
15636         type.
15637         (target_terminal::terminal_state): Rename to ...
15638         (target_terminal::m_terminal_state): ... this and change type.
15639
15640 2018-01-30  Pedro Alves  <palves@redhat.com>
15641
15642         * linux-nat.c (wait_for_signal): New function.
15643         (wait_lwp, linux_nat_wait_1): Use it instead of calling sigsuspend
15644         directly.
15645         (async_terminal_is_ours)
15646         (linux_nat_terminal_inferior, linux_nat_terminal_ours): Delete.
15647         (linux_nat_add_target): Don't override
15648         to_terminal_inferior/to_terminal_ours.
15649
15650 2018-01-29  Sergio Durigan Junior  <sergiodj@redhat.com>
15651
15652         * remote.c (remote_follow_fork): Don't call "detach_inferior".
15653
15654 2018-01-28  Simon Marchi  <simon.marchi@ericsson.com>
15655
15656         * dwarf2read.c (free_dwo_files): Add forward-declaration.
15657         (dwarf2_per_objfile::~dwarf2_per_objfile): Move content from
15658         dwarf2_per_objfile_free here.
15659         (dwarf2_per_objfile_free): Remove.
15660         (_initialize_dwarf2_read): Don't register
15661         dwarf2_per_objfile_free as a registry cleanup.
15662
15663 2018-01-27  Eli Zaretskii  <eliz@gnu.org>
15664
15665         Avoid compilation errors in MinGW native builds
15666
15667         The error is triggered by including python-internal.h, and the
15668         error message is:
15669
15670              In file included from d:\usr\lib\gcc\mingw32\6.3.0\include\c++\math.h:36:0,
15671                       from build-gnulib/import/math.h:27,
15672                       from d:/usr/Python26/include/pyport.h:235,
15673                       from d:/usr/Python26/include/Python.h:58,
15674                       from python/python-internal.h:94,
15675                       from python/py-arch.c:24:
15676              d:\usr\lib\gcc\mingw32\6.3.0\include\c++\cmath:1157:11: error: '::hypot' has not been declared
15677         using ::hypot;
15678                 ^~~~~
15679
15680         This happens because Python headers define 'hypot' to expand t
15681         '_hypot' in the Windows builds.
15682         * python/python-internal.h (_hypot) [__MINGW32__]: Define back to
15683         'hypoth'.  This avoids a compilation error.
15684
15685 2018-01-26  Alan Hayward  <alan.hayward@arm.com>
15686
15687         * MAINTAINERS (Write After Approval): Fix ordering.
15688
15689 2018-01-26  Alan Hayward  <alan.hayward@arm.com>
15690
15691         * MAINTAINERS (Write After Approval): Add Alan Hayward.
15692
15693 2018-01-26  Alan Modra  <amodra@gmail.com>
15694
15695         * ppc-linux-tdep.c (powerpc32_plt_stub): Make const.
15696         (powerpc32_plt_stub_so_1): Rename from powerpc32_plt_stub_so.
15697         Remove nop.  Make const.  Comment.
15698         (powerpc32_plt_stub_so_2): New.
15699         (POWERPC32_PLT_CHECK_LEN): Rename from POWERPC32_PLT_STUB_LEN.
15700         Correct count.  Update uses.
15701         (ppc_skip_trampoline_code): Match powerpc32_plt_stub_so_2 too.
15702         Move common code reading PLT entry word.  Correct
15703         powerpc32_plt_stub PLT address calculation.
15704         * ppc64-tdep.c (ppc64_standard_linkage1): Make const.
15705         (ppc64_standard_linkage2, ppc64_standard_linkage3): Likewise.
15706         (ppc64_standard_linkage4, ppc64_standard_linkage5): Likewise.
15707         (ppc64_standard_linkage6, ppc64_standard_linkage7): Likewise.
15708         (ppc64_standard_linkage8): Likewise.
15709         * rs6000-tdep.c (ppc_insns_match_pattern): Make pattern const.
15710         Correct insns description.
15711         * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
15712
15713 2018-01-24  Pedro Alves  <palves@redhat.com>
15714
15715         GCC PR libstdc++/83906
15716         * gdbtypes.c (operator==(const dynamic_prop &,
15717         const dynamic_prop &)): New.
15718         (operator==(const range_bounds &, const range_bounds &)): New.
15719         (check_types_equal): Use them instead of memcmp.
15720         * gdbtypes.h (operator==(const dynamic_prop &,
15721         const dynamic_prop &)): Declare.
15722         (operator!=(const dynamic_prop &, const dynamic_prop &)): Declare.
15723         (operator==(const range_bounds &, const range_bounds &)): Declare.
15724         (operator!=(const range_bounds &, const range_bounds &)): Declare.
15725
15726 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15727
15728         * s390-linux-tdep.c (s390_record_address_mask)
15729         (s390_record_calc_disp_common, s390_record_calc_disp)
15730         (s390_record_calc_disp_vsce, s390_record_calc_rl, s390_popcnt)
15731         (s390_record_gpr_g, s390_record_gpr_h, s390_record_vr)
15732         (s390_process_record): Move to s390-tdep.c.
15733         (s390_linux_init_abi_any): Adjust.
15734         * s390-tdep.c (s390_record_address_mask)
15735         (s390_record_calc_disp_common, s390_record_calc_disp)
15736         (s390_record_calc_disp_vsce, s390_record_calc_rl, s390_popcnt)
15737         (s390_record_gpr_g, s390_record_gpr_h, s390_record_vr)
15738         (s390_process_record): Moved from s390-linux-tdep.c
15739         (s390_gdbarch_init): Adjust.
15740
15741 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15742
15743         * s390-linux-nat.c (s390-tdep.h): New include.
15744         * Makefile.in (ALL_TARGET_OBS): Add s390-tdep.o.
15745         (HFILES_NO_SRCDIR): Add s390-tdep.h.
15746         (ALLDEPFILES): Add s390-tdep.c.
15747         * configure.tgt (s390*-*-linux*): Add s390-tdep.o.
15748         * s390-linux-tdep.h (HWCAP_S390_*, S390_*_REGNUM): Move to...
15749         * s390-tdep.h: ...this.  New file.
15750         * s390-linux-tdep.c (s390-tdep.h): New include.
15751         (_initialize_s390_tdep): Rename to...
15752         (_initialize_s390_linux_tdep): ...this and adjust.
15753         (s390_abi_kind, s390_vector_abi_kind, gdbarch_tdep)
15754         (enum named opcodes, S390_NUM_GPRS, S390_NUM_FPRS): Move to
15755         s390-tdep.h.
15756         (s390_break_insn, s390_breakpoint, s390_readinstruction, is_ri)
15757         (is_ril, is_rr, is_rre, is_rs, is_rsy, is_rx, is_rxy)
15758         (s390_is_partial_instruction, s390_software_single_step)
15759         (is_non_branch_ril, s390_displaced_step_copy_insn)
15760         (s390_displaced_step_fixup, s390_displaced_step_hw_singlestep)
15761         (s390_prologue_data, s390_addr, s390_store, s390_load)
15762         (s390_check_for_saved, s390_analyze_prologue, s390_skip_prologue)
15763         (s390_register_call_saved, s390_guess_tracepoint_registers)
15764         (s390_register_name, s390_dwarf_regmap, s390_dwarf_reg_to_regnum)
15765         (regnum_is_gpr_full, regnum_is_vxr_full, s390_value_from_register)
15766         (s390_pseudo_register_name, s390_pseudo_register_type)
15767         (s390_pseudo_register_read, s390_pseudo_register_write)
15768         (s390_pseudo_register_reggroup_p, s390_ax_pseudo_register_collect)
15769         (s390_ax_pseudo_register_push_stack, s390_gen_return_address)
15770         (s390_addr_bits_remove, s390_address_class_type_flags)
15771         (s390_address_class_type_flags_to_name)
15772         (s390_address_class_name_to_type_flags, s390_effective_inner_type)
15773         (s390_function_arg_float, s390_function_arg_vector)
15774         (is_power_of_two, s390_function_arg_integer, s390_arg_state)
15775         (s390_handle_arg, s390_push_dummy_call, s390_dummy_id)
15776         (s390_frame_align, s390_register_return_value, s390_return_value)
15777         (s390_stack_frame_destroyed_p, s390_unwind_pc, s390_unwind_sp)
15778         (s390_unwind_pseudo_register, s390_adjust_frame_regnum)
15779         (s390_dwarf2_prev_register, s390_dwarf2_frame_init_reg)
15780         (s390_trad_frame_prev_register, s390_unwind_cache)
15781         (s390_prologue_frame_unwind_cache)
15782         (s390_backchain_frame_unwind_cache, s390_frame_unwind_cache)
15783         (s390_frame_this_id, s390_frame_prev_register, s390_frame_unwind)
15784         (s390_stub_unwind_cache, s390_stub_frame_unwind_cache)
15785         (s390_stub_frame_this_id, s390_stub_frame_prev_register)
15786         (s390_stub_frame_sniffer, s390_stub_frame_unwind)
15787         (s390_frame_base_address, s390_local_base_address)
15788         (s390_frame_base, s390_gcc_target_options)
15789         (s390_gnu_triplet_regexp, s390_stap_is_single_operand)
15790         (s390_validate_reg_range, s390_tdesc_valid)
15791         (s390_gdbarch_tdep_alloc, s390_gdbarch_init): Move to...
15792         * s390-tdep.c: ...this.  New file.
15793
15794 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15795
15796         * s390-linux-tdep.c (gdbarch_tdep.s390_syscall_record): New hook.
15797         (s390_process_record, s390_gdbarch_tdep_alloc)
15798         (s390_linux_init_abi_any): Use/set new hook.
15799
15800 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15801
15802         * s390-linux-tdep.c (osabi.h): New include.
15803         (s390_linux_init_abi_31, s390_linux_init_abi_64)
15804         (s390_linux_init_abi_any): New functions.
15805         (s390_gdbarch_init, _initialize_s390_tdep): Adjust.
15806
15807 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15808
15809         * s390-linux-tdep.c (s390_gdbarch_init): Use gdb_assert for
15810         tdesc_has_registers check
15811
15812 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15813
15814         * s390-linux-tdep.c (s390_tdesc_valid): New function.
15815         (s390_validate_reg_range): New macro.
15816         (s390_gdbarch_init): Adjust.
15817
15818 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15819
15820         * s390-linux-tdep.c (gdbarch_tdep) <tdesc>: New field.
15821         (s390_gdbarch_tdep_alloc): Adjust.
15822         (s390_gdbarch_init): Adjust.
15823
15824 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15825
15826         * s390-linux-tdep.c (gdbarch_tdep) <have_linux_v1, have_linux_v2>
15827         <have_tdb>: Change type to bool.
15828         (s390_gdbarch_tdep_alloc): Adjust.
15829         (s390_gdbarch_init): Adjust.
15830
15831 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15832
15833         * s390-linux-tdep (s390_abi_kind) <ABI_NONE>: New default field.
15834         (gdbarch_tdep) <have_upper, have_vx>: New fields.
15835         (s390_gdbarch_tdep_alloc): New function.
15836         (s390_gdbarch_init): Allocate tdep at start and use its fields
15837         instead of separate variables.
15838
15839 2018-01-23  Philipp Rudo  <prudo@linux.vnet.ibm.com>
15840
15841         * s390-linux-tdep.c (s390_gdbarch_init): Remove duplicate checks
15842         when looking for cached gdbarch and add comment for remaining.
15843
15844 2018-01-22  Pedro Alves  <palves@redhat.com>
15845             Sergio Durigan Junior  <sergiodj@redhat.com>
15846
15847         * typeprint.c (whatis_exp): Initialize "val" in the "whatis type"
15848         case.
15849
15850 2018-01-22  Maciej W. Rozycki  <macro@mips.com>
15851
15852         * MAINTAINERS: Update my company e-mail address.
15853
15854 2018-01-22  Yao Qi  <yao.qi@linaro.org>
15855
15856         * regcache.c (cooked_write_test): New function.
15857         (_initialize_regcache): Register the test.
15858
15859 2018-01-22  Yao Qi  <yao.qi@linaro.org>
15860
15861         * ia64-tdep.c (ia64_pseudo_register_read): Call
15862         regcache->cooked_read instead of regcache_cooked_read_unsigned.
15863         * m32c-tdep.c (m32c_cat_read): Likewise.
15864         (m32c_r3r2r1r0_read): Likewise.
15865         * m68hc11-tdep.c (m68hc11_pseudo_register_read): Likewise.
15866         * xtensa-tdep.c (xtensa_register_read_masked): Likewise.
15867
15868 2018-01-22  Yao Qi  <yao.qi@linaro.org>
15869
15870         * aarch64-tdep.c (aarch64_pseudo_read_value): Call regcache
15871         method raw_read instead of regcache_raw_read.
15872         * amd64-tdep.c (amd64_pseudo_register_read_value): Likewise.
15873         * arm-tdep.c (arm_neon_quad_read): Likewise.
15874         * avr-tdep.c (avr_pseudo_register_read): Likewise.
15875         * bfin-tdep.c (bfin_pseudo_register_read): Likewise.
15876         * frv-tdep.c (frv_pseudo_register_read): Likewise.
15877         * h8300-tdep.c (h8300_pseudo_register_read): Likewise.
15878         * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Likewise.
15879         (i386_pseudo_register_read_into_value): Likewise.
15880         * mep-tdep.c (mep_pseudo_cr32_read): Likewise.
15881         * msp430-tdep.c (msp430_pseudo_register_read): Likewise.
15882         * nds32-tdep.c (nds32_pseudo_register_read): Likewise.
15883         * rl78-tdep.c (rl78_pseudo_register_read): Likewise.
15884         * s390-linux-tdep.c (s390_pseudo_register_read): Likewise.
15885         * sparc-tdep.c (sparc32_pseudo_register_read):  Likewise.
15886         * sparc64-tdep.c (sparc64_pseudo_register_read): Likewise.
15887         * spu-tdep.c (spu_pseudo_register_read_spu):  Likewise.
15888         * xtensa-tdep.c (xtensa_pseudo_register_read): Likewise.
15889
15890 2018-01-22  Yao Qi  <yao.qi@linaro.org>
15891
15892         * Makefile.in (ALL_TARGET_OBS): Remove mt-tdep.o.
15893         * configure.tgt: Remove target mt.
15894         * mt-tdep.c: Remove.
15895         * regcache.c (cooked_read_test): Remove the check for mt.
15896
15897 2018-01-22  Yao Qi  <yao.qi@linaro.org>
15898
15899         * jit.c (jit_frame_prev_register): Call regcache::cooked_read
15900         instead of gdbarch_pseudo_register_read_value.
15901
15902 2018-01-22  Joel Brobecker  <brobecker@adacore.com>
15903
15904         * dwarf2read.c (need_gnat_info): Return nonzero if the cu's
15905         language is Ada.
15906
15907 2018-01-22  Joel Brobecker  <brobecker@adacore.com>
15908
15909         * linespec.c (create_sals_line_offset): Remove code that preserved
15910         the symtab_and_line's line number.
15911
15912 2018-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
15913
15914         * varobj.c (varobj_create): Don't set valid_block when creating a
15915         floating varobj.
15916
15917 2018-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
15918
15919         * varobj.c (varobj_create): Remove out of date comment.
15920
15921 2018-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
15922
15923         PR mi/20395
15924         * ada-exp.y (write_var_from_sym): Pass extra parameter when
15925         updating innermost block.
15926         * parse.c (innermost_block_tracker::update): Take extra type
15927         parameter, and check types match before updating innermost block.
15928         (write_dollar_variable): Update innermost block for registers.
15929         * parser-defs.h (enum innermost_block_tracker_type): New enum.
15930         (innermost_block_tracker::innermost_block_tracker): Initialise
15931         m_types member.
15932         (innermost_block_tracker::reset): Take type parameter.
15933         (innermost_block_tracker::update): Take type parameter, and pass
15934         type through as needed.
15935         (innermost_block_tracker::m_types): New member.
15936         * varobj.c (varobj_create): Pass type when reseting innermost
15937         block.
15938
15939 2018-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
15940
15941         * ada-exp.y (write_var_from_sym): Switch to innermost_block API.
15942         * ada-lang.c (resolve_subexp): Likewise.
15943         * breakpoint.c (set_breakpoint_condition) Likewise.
15944         (watch_command_1) Likewise.
15945         * c-exp.y (variable): Likewise.
15946         * d-exp.y (PrimaryExpression): Likewise.
15947         * f-exp.y (variable): Likewise.
15948         * go-exp.y (variable): Likewise.
15949         * m2-exp.y (variable): Likewise.
15950         * objfiles.c (objfile::~objfile): Likewise.
15951         * p-exp.y (variable): Likewise.
15952         * parse.c (innermost_block): Change type.
15953         * parser-defs.h (class innermost_block_tracker): New.
15954         (innermost_block): Change to innermost_block_tracker.
15955         * printcmd.c (display_command): Switch to innermost_block API.
15956         (do_one_display): Likewise.
15957         * rust-exp.y (do_one_display): Likewise.
15958         * symfile.c (clear_symtab_users): Likewise.
15959         * varobj.c (varobj_create): Switch to innermost_block API, replace
15960         use of innermost_block with block stored on varobj object.
15961
15962 2018-01-21  Andrew Burgess  <andrew.burgess@embecosm.com>
15963
15964         * expression.h (innermost_block): Remove declaration.
15965         * varobj.c: Add 'parser-defs.h' include.
15966
15967 2018-01-19  Tom Tromey  <tom@tromey.com>
15968
15969         * rust-lang.c (rust_lookup_symbol_nonlocal): Look up qualified
15970         symbols in the static and global blocks.
15971
15972 2018-01-19  James Clarke  <jrtc27@jrtc27.com>
15973
15974         * nat/linux-ptrace.c: Remove unnecessary reinclusion of
15975         gdb_ptrace.h, and move including gdb_wait.h ...
15976         * nat/linux-ptrace.h: ... to here.
15977
15978 2018-01-19  Simon Marchi  <simon.marchi@ericsson.com>
15979
15980         * inf-ptrace.c (inf_ptrace_detach): Adjust call to
15981         inf_ptrace_detach_success.
15982         (inf_ptrace_detach_success): Add inferior parameter, use it
15983         instead of inferior_ptid, pass it to detach_inferior.
15984         * inf-ptrace.h (inf_ptrace_detach_success): Add inferior
15985         parameter.
15986         * inferior.c (detach_inferior): Add overload that takes an
15987         inferior object.
15988         * inferior.h (detach_inferior): Likewise.
15989         * linux-nat.c (linux_nat_detach): Use the inf parameter, don't
15990         use inferior_ptid, adjust call to inf_ptrace_detach_success.
15991         * linux-thread-db.c (thread_db_detach): Use inf parameter.
15992
15993 2018-01-19  Simon Marchi  <simon.marchi@ericsson.com>
15994
15995         * target.h (struct target_ops) <to_detach>: Add inferior
15996         parameter.
15997         (target_detach): Likewise.
15998         * target.c (dispose_inferior): Pass inferior down.
15999         (target_detach): Pass inferior down.  Assert that it is equal to
16000         the current inferior.
16001         * aix-thread.c (aix_thread_detach): Pass inferior down.
16002         * corefile.c (core_file_command): Pass current_inferior() down.
16003         * corelow.c (core_detach): Add inferior parameter.
16004         * darwin-nat.c (darwin_detach): Likewise.
16005         * gnu-nat.c (gnu_detach): Likewise.
16006         * inf-ptrace.c (inf_ptrace_detach): Likewise.
16007         * infcmd.c (detach_command): Pass current_inferior() down to
16008         target_detach.
16009         * infrun.c (follow_fork_inferior): Pass parent_inf to
16010         target_detach.
16011         (handle_vfork_child_exec_or_exit): Pass inf->vfork_parent to
16012         target_detach.
16013         * linux-nat.c (linux_nat_detach): Add inferior parameter.
16014         * linux-thread-db.c (thread_db_detach): Likewise.
16015         * nto-procfs.c (procfs_detach): Likewise.
16016         * procfs.c (procfs_detach): Likewise.
16017         * record.c (record_detach): Likewise.
16018         * record.h (struct inferior): Forward-declare.
16019         (record_detach): Add inferior parameter.
16020         * remote-sim.c (gdbsim_detach): Likewise.
16021         * remote.c (remote_detach_1): Likewise.
16022         (remote_detach): Likewise.
16023         (extended_remote_detach): Likewise.
16024         * sol-thread.c (sol_thread_detach): Likewise.
16025         * target-debug.h (target_debug_print_inferior_p): New macro.
16026         * target-delegates.c: Re-generate.
16027         * top.c (kill_or_detach): Pass inferior down to target_detach.
16028         * windows-nat.c (windows_detach): Add inferior parameter.
16029
16030 2018-01-19  Simon Marchi  <simon.marchi@ericsson.com>
16031
16032         * target.h (struct target_ops) <to_detach>: Remove args
16033         parameter.
16034         (target_detach): Likewise.
16035         * target.c (dispose_inferior): Adjust.
16036         (target_detach): Remove args parameter, adjust.
16037         * aix-thread.c (aix_thread_detach): Adjust.
16038         * corefile.c (core_file_command): Adjust.
16039         * corelow.c (core_detach): Adjust.
16040         * darwin-nat.c (darwin_detach): Adjust.
16041         * gnu-nat.c (gnu_detach): Adjust.
16042         * inf-ptrace.c (inf_ptrace_detach): Adjust.
16043         * infcmd.c (detach_command): Adjust
16044         * infrun.c (follow_fork_inferior): Adjust.
16045         (handle_vfork_child_exec_or_exit): Adjust.
16046         * linux-fork.c (linux_fork_detach): Remove args parameter.
16047         * linux-fork.h (linux_fork_detach): Likewise.
16048         * linux-nat.c (linux_nat_detach): Likewise, and adjust.
16049         * linux-thread-db.c (thread_db_detach): Likewise.
16050         * nto-procfs.c (procfs_detach): Likewise.
16051         * procfs.c (procfs_detach): Likewise.
16052         (do_detach): Remove signo parameter.
16053         * record.c (record_detach): Remove args parameter.
16054         * record.h (record_detach): Likewise.
16055         * remote-sim.c (gdbsim_detach): Likewise.
16056         * remote.c (remote_detach_1): Likewise.
16057         (remote_detach): Likewise.
16058         (extended_remote_detach): Likewise.
16059         * sol-thread.c (sol_thread_detach): Likewise.
16060         * target-delegates.c: Re-generate.
16061         * top.c (struct qt_args) <args>: Remove field.
16062         (kill_or_detach): Don't pass args.
16063         (quit_force): Don't set args.
16064         * windows-nat.c (windows_detach): Remove args parameter.
16065
16066 2018-01-19  Yao Qi  <yao.qi@linaro.org>
16067
16068         * arm-linux-tdep.c (arm_linux_gcc_target_options): New function.
16069         (arm_linux_init_abi): Install it.
16070
16071 2018-01-19  Yao Qi  <yao.qi@linaro.org>
16072
16073         * osabi.c (gdb_osabi_names): Extend the regexp for
16074         arm-linux-gnueabihf.
16075
16076 2018-01-18  Yao Qi  <yao.qi@linaro.org>
16077
16078         * dwarf2read.c (abbrev_table) <abbrevs>: Rename it to
16079         m_abbrevs.
16080         (abbrev_table::add_abbrev): Update.
16081         (abbrev_table::lookup_abbrev): Update.
16082
16083 2018-01-18  Yao Qi  <yao.qi@linaro.org>
16084
16085         * ppc-linux-tdep.c (ppu2spu_prev_register): Call cooked_read.
16086
16087 2018-01-17  Sergio Durigan Junior  <sergiodj@redhat.com>
16088
16089         * compile/compile.c (compile_to_object): Convert "triplet_rx"
16090         to "std::string".
16091
16092 2018-01-17  Tom Tromey  <tom@tromey.com>
16093
16094         * dwarf2read.c (symbolp): Remove typedef.  Don't instantiate VEC.
16095
16096 2018-01-17  Tom Tromey  <tom@tromey.com>
16097
16098         * gdbtypes.h (add_dyn_prop): Remove objfile parameter.
16099         * gdbtypes.c (add_dyn_prop): Remove objfile parameter.
16100         (create_array_type_with_stride): Update.
16101         * dwarf2read.c (set_die_type): Update.
16102
16103 2018-01-17  Tom Tromey  <tom@tromey.com>
16104
16105         * dwarf2read.c (delayed_method_info): Remove typedef.
16106         (dwarf2_cu::method_info): Now a std::vector.
16107         (add_to_method_list): Update.
16108         (free_delayed_list): Remove.
16109         (compute_delayed_physnames): Update.
16110         (process_full_comp_unit, process_full_type_unit): Clear the method
16111         list.  Remove cleanups.
16112         (psymtab_include_file_name): Add name_holder parameter.  Use
16113         unique_xmalloc_ptr.
16114         (dwarf_decode_lines): Update.
16115
16116 2018-01-17  Tom Tromey  <tom@tromey.com>
16117             Simon Marchi  <simon.marchi@ericsson.com>
16118
16119         * dwarf2read.c (struct dwarf2_cu): Add constructor, destructor.
16120         (dwarf2_per_objfile::free_cached_comp_units)
16121         (init_tu_and_read_dwo_dies, init_cutu_and_read_dies)
16122         (init_cutu_and_read_dies_no_follow): Update.
16123         (dwarf2_cu::dwarf2_cu): Rename from init_one_comp_unit.
16124         (dwarf2_cu::~dwarf2_cu): New.
16125         (free_heap_comp_unit, free_stack_comp_unit): Remove.
16126         (age_cached_comp_units, free_one_cached_comp_unit): Update.
16127
16128 2018-01-17  Tom Tromey  <tom@tromey.com>
16129             Simon Marchi  <simon.marchi@ericsson.com>
16130
16131         * dwarf2read.c (struct dwarf2_cu) <abbrev_table>: Remove.
16132         (struct die_reader_specs) <abbrev_table>: New member.
16133         (struct abbrev_table): Add constructor.
16134         <alloc_abbrev, add_abbrev, lookup_abbrev>: Declare.
16135         <abbrev_obstack>: Now an auto_obstack.
16136         (abbrev_table_up): New typedef.
16137         (init_cu_die_reader): Add abbrev_table parameter.
16138         (read_cutu_die_from_dwo): Remove abbrev_table_provided parameter.
16139         Add result_dwo_abbrev_table.
16140         (init_tu_and_read_dwo_dies, init_cutu_and_read_dies)
16141         (init_cutu_and_read_dies_no_follow, build_type_psymtabs_1):
16142         Update.
16143         (peek_die_abbrev): Take die_reader_specs, not dwarf_cu as
16144         parameter.
16145         (skip_children): Update.
16146         (abbrev_table::alloc_abbrev): Rename from
16147         abbrev_table_alloc_abbrev.
16148         (abbrev_table::add_abbrev): Rename from abbrev_table_add_abbrev.
16149         (abbrev_table::lookup_abbrev): Rename from
16150         abbrev_table_lookup_abbrev.
16151         (abbrev_table_read_table): Return abbrev_table_up.
16152         (abbrev_table_free, abbrev_table_free_cleanup)
16153         (dwarf2_read_abbrevs, dwarf2_free_abbrev_table): Remove.
16154         (load_partial_dies): Update.
16155
16156 2018-01-17  Tom Tromey  <tom@tromey.com>
16157
16158         * dwarf2read.c (dwarf2_compute_name): Update comment.
16159         (read_func_scope, read_variable): Update.
16160         (new_symbol): Remove.
16161         (new_symbol_full): Rename to new_symbol.
16162
16163 2018-01-17  Mike Gulick  <mgulick@mathworks.com>
16164
16165         PR gdb/16577
16166         * gdb_bfd.c (gdb_bfd_map_section): If unable to read object file, issue
16167         a warning instead of throwing an error, set section size to 0 and return
16168         NULL.
16169         * gdb_bfd.h (gdb_bfd_map_section): Update description.
16170
16171 2018-01-17  Simon Marchi  <simon.marchi@ericsson.com>
16172
16173         * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason): Return
16174         std::string.
16175         (linux_ptrace_attach_fail_reason_string): Likewise.
16176         * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason):
16177         Likewise.
16178         (linux_ptrace_attach_fail_reason_string): Likewise.
16179         * linux-nat.c (attach_proc_task_lwp_callback): Adjust.
16180
16181 2018-01-17  Simon Marchi  <simon.marchi@ericsson.com>
16182
16183         * linux-nat.c (linux_nat_attach): Remove xstrdup.
16184
16185 2018-01-17  Eldar Abusalimov  <eldar.abusalimov@jetbrains.com>
16186
16187         PR gdb/21559
16188         * configure.ac: Include <sys/types.h> prior to <sys/user.h> when
16189         checking for fs_base/gs_base fields in struct user_regs_struct.
16190         * configure: Regenerate.
16191
16192 2018-01-17  Yao Qi  <yao.qi@linaro.org>
16193
16194         * aarch64-linux-tdep.c (aarch64_linux_gcc_target_options): New
16195         function.
16196         (aarch64_linux_init_abi): Install it to gdbarch hook
16197         gcc_target_options.
16198
16199 2018-01-15  Pedro Alves  <palves@redhat.com>
16200
16201         * common/signals-state-save-restore.c
16202         (save_original_signals_state): Fix typos.
16203
16204 2017-01-12  Tom Tromey  <tom@tromey.com>
16205             Sergio Durigan Junior  <sergiodj@redhat.com>
16206
16207         * Makefile.in (install-only): Install gdb-add-index.
16208
16209 2018-01-12  John Baldwin  <jhb@FreeBSD.org>
16210
16211         * fbsd-tdep.c (KVE_PROTECTION): Correct value.
16212
16213 2018-01-12  Andreas Arnez  <arnez@linux.vnet.ibm.com>
16214
16215         * infrun.c (keep_going_pass_signal): Clear step-over info when
16216         insert_breakpoints fails.
16217
16218 2018-01-11  Pedro Alves  <palves@redhat.com>
16219
16220         PR gdb/22583
16221         * infrun.c (resume): Rename to ...
16222         (resume_1): ... this.
16223         (resume): Reimplement as wrapper around resume_1.
16224
16225 2018-01-11  Pedro Alves  <palves@redhat.com>
16226
16227         PR remote/22597
16228         * remote.c (remote_parse_stop_reply): Default to the last-set
16229         general thread instead of to 'magic_null_ptid'.
16230
16231 2018-01-10  Pedro Alves  <palves@redhat.com>
16232
16233         * language.h (language_get_symbol_name_matcher): Rename ...
16234         (get_symbol_name_matcher): ... this.
16235         * language.c (language_get_symbol_name_matcher): Ditto.
16236         * dictionary.c, linespec.c, minsyms.c, psymtab.c, symtab.c: All
16237         callers adjusted.
16238
16239 2018-01-10  Pedro Alves  <palves@redhat.com>
16240
16241         PR gdb/22670
16242         * dwarf2read.c
16243         (gdb_index_symbol_name_matcher::gdb_index_symbol_name_matcher):
16244         Adjust to use language_get_symbol_name_matcher instead of
16245         language_defn::la_get_symbol_name_matcher.
16246         * language.c (language_get_symbol_name_matcher): If in Ada mode
16247         and the lookup name is a verbatim match, return Ada's matcher.
16248         * language.h (language_get_symbol_name_matcher): Adjust comment.
16249         (ada_lookup_name_info::verbatim_p):: New method.
16250
16251 2018-01-10  Pedro Alves  <palves@redhat.com>
16252
16253         PR gdb/22670
16254         * ada-lang.c (ada_collect_symbol_completion_matches): If the
16255         minsym's language is language_auto or language_cplus, pass down
16256         language_ada instead.
16257         * symtab.c (compare_symbol_name): Don't frob symbol language here.
16258
16259 2018-01-10  Pedro Alves  <palves@redhat.com>
16260
16261         PR gdb/22670
16262         * minsyms.c (linkage_name_str): New function.
16263         (iterate_over_minimal_symbols): Use it.
16264
16265 2018-01-09  John Baldwin  <jhb@FreeBSD.org>
16266
16267         * NEWS: Document that 'info proc' now works on FreeBSD.
16268
16269 2018-01-09  John Baldwin  <jhb@FreeBSD.org>
16270
16271         * configure.ac: Check for kinfo_getfile in libutil.
16272         * configure: Regenerate.
16273         * config.in: Regenerate.
16274         * fbsd-nat.c: Include "fbsd-tdep.h".
16275         (fbsd_fetch_cmdline): New.
16276         (fbsd_fetch_kinfo_proc): Move earlier and change to return a bool
16277         rather than calling error.
16278         (fbsd_info_proc): New.
16279         (fbsd_thread_name): Report error if fbsd_fetch_kinfo_proc fails.
16280         (fbsd_wait): Report warning if fbsd_fetch_kinfo_proc fails.
16281         (fbsd_nat_add_target): Set "to_info_proc" to "fbsd_info_proc".
16282
16283 2018-01-09  John Baldwin  <jhb@FreeBSD.org>
16284
16285         * fbsd-nat.c (struct free_deleter): Remove.
16286         (fbsd_find_memory_regions): Use gdb::unique_xmalloc_ptr<>.
16287
16288 2018-01-09  John Baldwin  <jhb@FreeBSD.org>
16289
16290         * fbsd-nat.c (fbsd_pid_to_exec_file) [KERN_PROC_PATHNAME]: Return
16291         NULL for an empty pathname.
16292
16293 2018-01-09  John Baldwin  <jhb@FreeBSD.org>
16294
16295         * fbsd-tdep.c (KVE_STRUCTSIZE, KVE_START, KVE_END, KVE_OFFSET)
16296         (KVE_FLAGS, KVE_PROTECTION, KVE_PATH, KINFO_VME_PROT_READ)
16297         (KINFO_VME_PROT_WRITE, KINFO_VME_PROT_EXEC, KINFO_VME_FLAG_COW)
16298         (KINFO_VME_FLAG_NEEDS_COPY, KINFO_VME_FLAG_NOCOREDUMP)
16299         (KINFO_VME_FLAG_SUPER, KINFO_VME_FLAG_GROWS_UP)
16300         (KINFO_VME_FLAG_GROWS_DOWN, KF_STRUCTSIZE, KF_TYPE, KF_FD)
16301         (KF_PATH, KINFO_FILE_TYPE_VNODE, KINFO_FILE_FD_TYPE_CWD)
16302         (KINFO_FILE_FD_TYPE_TEXT, SIG_WORDS, struct kinfo_proc_layout)
16303         (kinfo_proc_layout_32, kinfo_proc_layout_i386)
16304         (kinfo_proc_layout_64, fbsd_vm_map_entry_flags)
16305         (fbsd_core_info_proc_mappings, fbsd_core_vnode_path)
16306         (fbsd_core_fetch_timeval, fbsd_print_sigset)
16307         (fbsd_core_info_proc_status, fbsd_core_info_proc): New.
16308         (fbsd_init_abi):  Install gdbarch "core_info_proc" method.
16309         * fbsd-tdep.h (fbsd_vm_map_entry_flags): New.
16310
16311 2018-01-08  Samuel Thibault  <samuel.thibault@ens-lyon.org>
16312
16313         * gdb/gnu-nat.c: Include <elf.h> and <link.h>.
16314         (gnu_xfer_auxv): New function.
16315         (gnu_xfer_partial): Call gnu_xfer_auxv when `object' is
16316         TARGET_OBJECT_AUXV.
16317
16318 2018-01-08  Yao Qi  <yao.qi@linaro.org>
16319             Simon Marchi  <simon.marchi@ericsson.com>
16320
16321         * Makefile.in (COMMON_SFILES): Remove selftest-arch.c and
16322         common/selftest.c.
16323         (COMMON_OBS): Remove selftest.o.
16324         * configure.ac: Append selftest-arch.c and common/selftest.c to
16325         CONFIG_SRCS.  Append selftest-arch.o and selftest.o to COMMON_OBS.
16326         * configure: Re-generated.
16327         * maint.c (maintenance_selftest): Wrap selftests::run_tests with
16328         GDB_SELF_TEST.
16329         (maintenance_info_selftests): Likewise.
16330
16331 2018-01-08  Xavier Roirand  <roirand@adacore.com>
16332
16333         * ada-valprint.c (val_print_packed_array_elements): Use
16334         proper number of elements when printing an array indexed
16335         by an enumeration type.
16336
16337 2018-01-07  Simon Marchi  <simon.marchi@polymtl.ca>
16338
16339         * dwarf2read.c (struct dwarf2_cu) <dwarf2_per_objfile>: Remove.
16340         (dw2_get_file_names_reader): Adjust.
16341         (lookup_dwo_signatured_type): Adjust.
16342         (lookup_dwp_signatured_type): Adjust.
16343         (lookup_signatured_type): Adjust.
16344         (create_type_unit_group): Adjust.
16345         (get_type_unit_group): Adjust.
16346         (process_psymtab_comp_unit_reader): Adjust.
16347         (build_type_psymtabs_reader): Adjust.
16348         (scan_partial_symbols): Adjust.
16349         (add_partial_symbol): Adjust.
16350         (add_partial_subprogram): Adjust.
16351         (peek_die_abbrev): Adjust.
16352         (fixup_go_packaging): Adjust.
16353         (process_imported_unit_die): Adjust.
16354         (dwarf2_compute_name): Adjust.
16355         (dwarf2_physname): Adjust.
16356         (read_import_statement): Adjust.
16357         (handle_DW_AT_stmt_list): Adjust.
16358         (read_file_scope): Adjust.
16359         (read_func_scope): Adjust.
16360         (read_lexical_block_scope): Adjust.
16361         (read_call_site_scope): Adjust.
16362         (read_variable): Adjust.
16363         (dwarf2_rnglists_process): Adjust.
16364         (dwarf2_ranges_process): Adjust.
16365         (dwarf2_ranges_read): Adjust.
16366         (dwarf2_get_pc_bounds): Adjust.
16367         (dwarf2_record_block_ranges): Adjust.
16368         (dwarf2_add_field): Adjust.
16369         (dwarf2_add_member_fn): Adjust.
16370         (read_structure_type): Adjust.
16371         (process_structure_scope): Adjust.
16372         (read_enumeration_type): Adjust.
16373         (read_array_type): Adjust.
16374         (mark_common_block_symbol_computed): Adjust.
16375         (read_common_block): Adjust.
16376         (read_namespace_type): Adjust.
16377         (read_namespace): Adjust.
16378         (read_module_type): Adjust.
16379         (read_tag_pointer_type): Adjust.
16380         (read_tag_ptr_to_member_type): Adjust.
16381         (read_tag_string_type): Adjust.
16382         (read_subroutine_type): Adjust.
16383         (read_typedef): Adjust.
16384         (read_base_type): Adjust.
16385         (attr_to_dynamic_prop): Adjust.
16386         (read_subrange_type): Adjust.
16387         (read_unspecified_type): Adjust.
16388         (dwarf2_read_abbrevs): Adjust.
16389         (load_partial_dies): Adjust.
16390         (read_partial_die): Adjust.
16391         (find_partial_die): Adjust.
16392         (guess_partial_die_structure_name): Adjust.
16393         (fixup_partial_die): Adjust.
16394         (read_attribute_value): Adjust.
16395         (read_addr_index): Adjust.
16396         (read_addr_index_from_leb128): Adjust.
16397         (read_str_index): Adjust.
16398         (dwarf2_string_attr): Adjust.
16399         (get_debug_line_section): Adjust.
16400         (dwarf_decode_line_header): Adjust.
16401         (lnp_state_machine::check_line_address): Adjust.
16402         (dwarf_decode_lines_1): Adjust.
16403         (dwarf_decode_lines): Adjust.
16404         (dwarf2_start_symtab): Adjust.
16405         (var_decode_location): Adjust.
16406         (new_symbol_full): Adjust.
16407         (dwarf2_const_value_data): Adjust.
16408         (dwarf2_const_value_attr): Adjust.
16409         (dwarf2_const_value): Adjust.
16410         (die_type): Adjust.
16411         (die_containing_type): Adjust.
16412         (build_error_marker_type): Adjust.
16413         (lookup_die_type): Adjust.
16414         (guess_full_die_structure_name): Adjust.
16415         (anonymous_struct_prefix): Adjust.
16416         (determine_prefix): Adjust.
16417         (dwarf2_name): Adjust.
16418         (follow_die_ref_or_sig): Adjust.
16419         (follow_die_offset): Adjust.
16420         (follow_die_ref): Adjust.
16421         (follow_die_sig_1): Adjust.
16422         (follow_die_sig): Adjust.
16423         (get_signatured_type): Adjust.
16424         (get_DW_AT_signature_type): Adjust.
16425         (decode_locdesc): Adjust.
16426         (dwarf_decode_macros): Adjust.
16427         (cu_debug_loc_section): Adjust.
16428         (fill_in_loclist_baton): Adjust.
16429         (dwarf2_symbol_mark_computed): Adjust.
16430         (init_one_comp_unit): Don't assign
16431         dwarf2_cu::dwarf2_per_objfile.
16432         (set_die_type): Adjust.
16433
16434 2018-01-07  Simon Marchi  <simon.marchi@ericsson.com>
16435
16436         * dwarf2read.c (struct mapped_debug_names): Add constructor.
16437         <dwarf2_per_objfile>: New field.
16438         (dwarf2_per_objfile): Remove global.
16439         (get_dwarf2_per_objfile): New function.
16440         (set_dwarf2_per_objfile): New function.
16441         (dwarf2_build_psymtabs_hard): Change objfile parameter to
16442         dwarf2_per_objfile.
16443         (abbrev_table_read_table): Add dwarf2_per_objfile parameter.
16444         (read_abbrev_offset): Likewise.
16445         (read_indirect_string): Likewise.
16446         (read_indirect_line_string): Likewise.
16447         (read_indirect_string_at_offset): Likewise.
16448         (read_indirect_string_from_dwz): Likewise.
16449         (dwarf2_find_containing_comp_unit): Change objfile parameter to
16450         dwarf2_per_objfile.
16451         (age_cached_comp_units): Add dwarf2_per_objfile parameter.
16452         (create_all_comp_units): Change objfile parameter to
16453         dwarf2_per_objfile.
16454         (create_all_type_units): Likewise.
16455         (process_queue): Add dwarf2_per_objfile parameter.
16456         (read_and_check_comp_unit_head): Likewise.
16457         (lookup_dwo_unit_in_dwp): Likewise.
16458         (get_dwp_file): Likewise.
16459         (process_cu_includes): Likewise.
16460         (struct free_dwo_file_cleanup_data): New struct.
16461         (dwarf2_has_info): Use get_dwarf2_per_objfile and
16462         set_dwarf2_per_objfile.
16463         (dwarf2_get_dwz_file): Add dwarf2_per_objfile parameter.
16464         (dw2_do_instantiate_symtab): Get dwarf2_per_objfile from
16465         context, adjust calls.
16466         (dw2_instantiate_symtab): Likewise.
16467         (dw2_get_cutu): Add dwarf2_per_objfile parameter.
16468         (dw2_get_cu): Likewise.
16469         (create_cu_from_index_list): Change objfile parameter to
16470         dwarf2_per_objfile.
16471         (create_cus_from_index_list): Get dwarf2_per_objfile from
16472         context, adjust calls.
16473         (create_cus_from_index): Likewise.
16474         (create_signatured_type_table_from_index): Change objfile
16475         parameter to dwarf2_per_objfile.
16476         (create_signatured_type_table_from_debug_names): Change objfile
16477         parameter to dwarf2_per_objfile.
16478         (create_addrmap_from_index): Likewise.
16479         (create_addrmap_from_aranges): Likewise.
16480         (dwarf2_read_index): Use get_dwarf2_per_objfile, adjust calls.
16481         (dw2_setup): Remove.
16482         (dw2_get_file_names_reader): Get dwarf2_per_objfile from
16483         context.
16484         (dw2_find_last_source_symtab): Get dwarf2_per_objfile using
16485         get_dwarf2_per_objfile.
16486         (dw2_forget_cached_source_info): Likewise.
16487         (dw2_map_symtabs_matching_filename): Likewise.
16488         (struct dw2_symtab_iterator) <index>: Remove.
16489         <dwarf2_per_objfile>: New field.
16490         (dw2_symtab_iter_init): Replace index parameter with
16491         dwarf2_per_objfile.
16492         (dw2_symtab_iter_next): Use dwarf2_per_objfile from iter.
16493         (dw2_lookup_symbol): Use get_dwarf2_per_objfile and adjust.
16494         (dw2_print_stats): Likewise.
16495         (dw2_dump): Likewise.
16496         (dw2_expand_symtabs_for_function): Likewise.
16497         (dw2_expand_all_symtabs): Likewise.
16498         (dw2_expand_symtabs_with_fullname): Likewise.
16499         (dw2_expand_marked_cus): Replace index and objfile parameters
16500         with dwarf2_per_objfile.
16501         (dw_expand_symtabs_matching_file_matcher): Add
16502         dwarf2_per_objfile parameter and adjust calls.
16503         (dw2_expand_symtabs_matching): Use get_dwarf2_per_objfile and
16504         adjust calls.
16505         (dw2_find_pc_sect_compunit_symtab): Don't call dw2_setup.
16506         (dw2_map_symbol_filenames): Use get_dwarf2_per_objfile and
16507         adjust calls.
16508         (create_cus_from_debug_names_list): Replace objfile parameter
16509         with dwarf2_per_objfile and adjust calls.
16510         (create_cus_from_debug_names): Likewise.
16511         (dwarf2_read_debug_names): Likewise.
16512         (mapped_debug_names::namei_to_name): Adjust call.
16513         (dw2_debug_names_iterator::next): Likewise.
16514         (dw2_debug_names_iterator::find_vec_in_debug_names): Likewise.
16515         (dw2_debug_names_lookup_symbol): Use get_dwarf2_per_objfile.
16516         (dw2_debug_names_dump): Likewise.
16517         (dw2_debug_names_expand_symtabs_for_function): Likewise.
16518         (dw2_debug_names_expand_symtabs_matching): Likewise.
16519         (dwarf2_initialize_objfile): Likewise.
16520         (dwarf2_build_psymtabs): Likewise.
16521         (get_abbrev_section_for_cu): Get dwarf2_per_objfile from
16522         this_cu.
16523         (error_check_comp_unit_head): Add dwarf2_per_objfile parameter.
16524         (read_and_check_comp_unit_head): Likewise.
16525         (read_abbrev_offset): Likewise.
16526         (create_debug_type_hash_table): Likewise.
16527         (create_debug_types_hash_table): Likewise.
16528         (create_all_type_units): Replace objfile parameter with
16529         dwarf2_per_objfile.
16530         (add_type_unit): Add dwarf2_per_objfile parameter.
16531         (fill_in_sig_entry_from_dwo_entry): Replace objfile parameter
16532         with dwarf2_per_objfile.
16533         (lookup_dwo_signatured_type): Get dwarf2_per_objfile from cu.
16534         (lookup_dwp_signatured_type): Likewise.
16535         (lookup_signatured_type): Likewise.
16536         (read_cutu_die_from_dwo): Likewise.
16537         (init_tu_and_read_dwo_dies): Likewise.
16538         (init_cutu_and_read_dies): Likewise.
16539         (init_cutu_and_read_dies_no_follow): Likewise.
16540         (allocate_type_unit_groups_table): Add objfile parameter.
16541         (create_type_unit_group): Use dwarf2_per_objfile from cu.
16542         (get_type_unit_group): Likewise.
16543         (process_psymtab_comp_unit): Update call.
16544         (build_type_psymtabs_reader): Use dwarf2_per_objfile from cu.
16545         (build_type_psymtabs_1): Add dwarf2_per_objfile parameter.
16546         (print_tu_stats): Likewise.
16547         (build_type_psymtab_dependencies): Use dwarf2_per_objfile passed
16548         in void* parameter.
16549         (build_type_psymtabs): Change objfile parameter to
16550         dwarf2_per_objfile.
16551         (process_skeletonless_type_unit): Use dwarf2_per_objfile
16552         passed in void* parameter.
16553         (process_skeletonless_type_units): Change objfile parameter to
16554         dwarf2_per_objfile.
16555         (set_partial_user): Likewise.
16556         (dwarf2_build_psymtabs_hard): Likewise.
16557         (read_comp_units_from_section): Likewise.
16558         (create_all_comp_units): Likewise.
16559         (scan_partial_symbols): Update calls.
16560         (add_partial_symbol): Likewise.
16561         (dwarf2_read_symtab): Use get_dwarf2_per_objfile.
16562         (maybe_queue_comp_unit): Use dwarf2_read_symtab from cu.
16563         (process_queue): Add dwarf2_per_objfile parameter.
16564         (get_compunit_symtab): Use dwarf2_per_objfile from cu.
16565         (compute_compunit_symtab_includes): Likewise.
16566         (process_cu_includes): Add dwarf2_per_objfile parameter.
16567         (process_full_comp_unit): Use dwarf2_per_objfile from cu.
16568         (process_full_type_unit): Likewise.
16569         (process_imported_unit_die): Update call.
16570         (handle_DW_AT_stmt_list): Use dwarf2_per_objfile from cu.
16571         (read_file_scope): Likewise.
16572         (allocate_dwo_file_hash_table): Add objfile parameter.
16573         (lookup_dwo_file_slot): Add dwarf2_per_objfile parameter.
16574         (create_cus_hash_table): Likewise.
16575         (create_dwp_hash_table): Likewise.
16576         (create_dwo_unit_in_dwp_v1): Likewise.
16577         (create_dwp_v2_section): Likewise.
16578         (create_dwo_unit_in_dwp_v2): Likewise.
16579         (lookup_dwo_unit_in_dwp): Likewise.
16580         (try_open_dwop_file): Likewise.
16581         (open_dwo_file): Likewise. Use dwarf2_per_objfile from cu.
16582         (open_and_init_dwo_file): Use dwarf2_per_objfile from cu, update
16583         cleanup to include a reference to dwarf2_per_objfile.
16584         (open_dwp_file): Add dwarf2_per_objfile parameter.
16585         (open_and_init_dwp_file): Likewise.
16586         (get_dwp_file): Likewise.
16587         (lookup_dwo_cutu): Use dwarf2_per_objfile from cu.
16588         (queue_and_load_all_dwo_tus): Update call.
16589         (free_dwo_file_cleanup): Use dwarf2_per_objfile from cleanup
16590         data.
16591         (dwarf2_rnglists_process): Use dwarf2_per_objfile from cu.
16592         (dwarf2_ranges_process): Likewise.
16593         (dwarf2_get_pc_bounds): Likewise.
16594         (mark_common_block_symbol_computed): Likewise.
16595         (abbrev_table_read_table): Add dwarf2_per_objfile parameter.
16596         (dwarf2_read_abbrevs): Update call.
16597         (read_partial_die): Use dwarf2_per_objfile from cu.
16598         (find_partial_die): Likewise.
16599         (fixup_partial_die): Likewise.
16600         (read_attribute_value): Likewise.
16601         (read_indirect_string_at_offset_from): Add objfile parameter.
16602         (read_indirect_string_at_offset): Add dwarf2_per_objfile
16603         parameter.
16604         (read_indirect_string_from_dwz): Add objfile parameter.
16605         (read_indirect_string): Add objfile parameter.
16606         (read_addr_index_1): Add dwarf2_per_objfile parameter.
16607         (read_addr_index): Use dwarf2_per_objfile from cu.
16608         (dwarf2_read_addr_index): Use dwarf2_per_objfile from cu, don't
16609         call dw2_setup.
16610         (read_str_index): Use dwarf2_per_objfile from cu.
16611         (get_debug_line_section): Likewise.
16612         (read_formatted_entries): Add dwarf2_per_objfile parameter.
16613         (dwarf_decode_line_header): Use dwarf2_per_objfile from cu.
16614         (new_symbol_full): Use dwarf2_per_objfile from cu.
16615         (build_error_marker_type): Likewise.
16616         (lookup_die_type): Likewise.
16617         (determine_prefix): Likewise.
16618         (follow_die_offset): Likewise.
16619         (dwarf2_fetch_die_loc_sect_off): Use get_dwarf2_per_objfile.
16620         (dwarf2_fetch_constant_bytes): Don't call dw2_setup.
16621         (dwarf2_fetch_die_type_sect_off): Likewise.
16622         (dwarf2_get_die_type): Likewise.
16623         (follow_die_sig_1): Use dwarf2_per_objfile from cu.
16624         (get_signatured_type): Likewise.
16625         (get_DW_AT_signature_type): Likewise.
16626         (dwarf_decode_macro_bytes): Add dwarf2_per_objfile parameter.
16627         (dwarf_decode_macros): Use dwarf2_per_objfile from cu.
16628         (cu_debug_loc_section): Likewise.
16629         (fill_in_loclist_baton): Likewise.
16630         (dwarf2_symbol_mark_computed): Likewise.
16631         (dwarf2_find_containing_comp_unit): Change objfile parameter to
16632         dwarf2_per_objfile.
16633         (free_cached_comp_units): Use dwarf2_per_objfile passed in void*
16634         parameter.
16635         (age_cached_comp_units): Add dwarf2_per_objfile parameter.
16636         (free_one_cached_comp_unit): Use dwarf2_per_objfile from cu.
16637         (dwarf2_free_objfile): Use get_dwarf2_per_objfile.
16638         (set_die_type): Use dwarf2_free_objfile from cu.
16639         (get_die_type_at_offset): Likewise.
16640         (dwarf2_per_objfile_free): Don't assign global variable.
16641         (debug_names) <constructor>: Add dwarf2_per_objfile
16642         parameter, update m_debugstrlookup construction.
16643         (debug_names::debug_str_lookup): Add dwarf2_per_objfile
16644         parameter.
16645         <m_dwarf2_per_objfile>: New field.
16646         <lookup>: Use m_dwarf2_per_objfile.
16647         (check_dwarf64_offsets): Add dwarf2_per_objfile parameter.
16648         (psyms_seen_size): Likewise.
16649         (write_gdbindex): Replace objfile parameter with
16650         dwarf2_per_objfile.
16651         (write_debug_names): Likewise.
16652         (write_psymtabs_to_index): Likewise.
16653         (save_gdb_index_command): Use get_dwarf2_per_objfile, update
16654         calls.
16655
16656 2018-01-07  Simon Marchi  <simon.marchi@ericsson.com>
16657
16658         * dwarf2read.c (struct dwarf2_cu) <objfile>: Remove.
16659         <dwarf2_per_objfile>: New field.
16660         (struct dwarf2_per_cu_data) <objfile>: Remove.
16661         <dwarf2_per_objfile>: New field.
16662         (create_cu_from_index_list): Assign dwarf2_per_objfile instead
16663         of objfile.
16664         (create_signatured_type_table_from_index): Likewise.
16665         (create_debug_type_hash_table): Likewise.
16666         (fill_in_sig_entry_from_dwo_entry): Likewise.
16667         (lookup_dwo_unit): Access objfile through dwarf2_per_objfile.
16668         (create_type_unit_group): Assign dwarf2_per_objfile instead of
16669         objfile.
16670         (create_partial_symtab): Access objfile through
16671         dwarf2_per_objfile.
16672         (process_psymtab_comp_unit_reader): Likewise.
16673         (read_comp_units_from_section): Likewise.
16674         (scan_partial_symbols): Likewise.
16675         (add_partial_symbol): Likewise.
16676         (add_partial_subprogram): Likewise.
16677         (peek_die_abbrev): Likewise.
16678         (fixup_go_packaging): Likewise.
16679         (process_full_comp_unit): Likewise.
16680         (process_full_type_unit): Likewise.
16681         (process_imported_unit_die): Likewise.
16682         (dwarf2_compute_name): Likewise.
16683         (dwarf2_physname): Likewise.
16684         (read_import_statement): Likewise.
16685         (create_cus_hash_table): Assign dwarf2_physname instead of
16686         objfile.
16687         (read_func_scope): Access objfile through dwarf2_per_objfile.
16688         (read_lexical_block_scope): Likewise.
16689         (read_call_site_scope): Likewise.
16690         (read_variable): Likewise.
16691         (dwarf2_rnglists_process): Likewise.
16692         (dwarf2_ranges_process): Likewise.
16693         (dwarf2_ranges_read): Likewise.
16694         (dwarf2_record_block_ranges): Likewise.
16695         (dwarf2_add_field): Likewise.
16696         (dwarf2_add_member_fn): Likewise.
16697         (read_structure_type): Likewise.
16698         (process_structure_scope): Likewise.
16699         (read_enumeration_type): Likewise.
16700         (read_array_type): Likewise.
16701         (read_common_block): Likewise.
16702         (read_namespace_type): Likewise.
16703         (read_namespace): Likewise.
16704         (read_module_type): Likewise.
16705         (read_tag_pointer_type): Likewise.
16706         (read_tag_ptr_to_member_type): Likewise.
16707         (read_tag_string_type): Likewise.
16708         (read_subroutine_type): Likewise.
16709         (read_typedef): Likewise.
16710         (read_base_type): Likewise.
16711         (attr_to_dynamic_prop): Likewise.
16712         (read_subrange_type): Likewise.
16713         (read_unspecified_type): Likewise.
16714         (load_partial_dies): Likewise.
16715         (read_partial_die): Likewise.
16716         (find_partial_die): Likewise.
16717         (guess_partial_die_structure_name): Likewise.
16718         (fixup_partial_die): Likewise.
16719         (read_attribute_value): Likewise.
16720         (read_addr_index_from_leb128): Likewise.
16721         (dwarf2_read_addr_index): Likewise.
16722         (dwarf2_string_attr): Likewise.
16723         (lnp_state_machine::check_line_address): Likewise.
16724         (dwarf_decode_lines_1): Likewise.
16725         (dwarf_decode_lines): Likewise.
16726         (dwarf2_start_symtab): Likewise.
16727         (var_decode_location): Likewise.
16728         (new_symbol_full): Likewise.
16729         (dwarf2_const_value_data): Likewise.
16730         (dwarf2_const_value_attr): Likewise.
16731         (dwarf2_const_value): Likewise.
16732         (die_type): Likewise.
16733         (die_containing_type): Likewise.
16734         (lookup_die_type): Likewise.
16735         (guess_full_die_structure_name): Likewise.
16736         (anonymous_struct_prefix): Likewise.
16737         (dwarf2_name): Likewise.
16738         (follow_die_ref_or_sig): Likewise.
16739         (follow_die_offset): Likewise.
16740         (follow_die_ref): Likewise.
16741         (dwarf2_fetch_die_loc_sect_off): Likewise.
16742         (dwarf2_fetch_constant_bytes): Likewise.
16743         (dwarf2_fetch_die_type_sect_off): Likewise.
16744         (dwarf2_get_die_type): Likewise.
16745         (follow_die_sig): Likewise.
16746         (decode_locdesc): Likewise.
16747         (dwarf2_per_cu_objfile): Likewise.
16748         (dwarf2_per_cu_text_offset): Likewise.
16749         (init_one_comp_unit): Assign dwarf2_per_objfile instead of
16750         objfile.
16751         (set_die_type): Access objfile through
16752         dwarf2_per_objfile.
16753
16754 2018-01-07  Simon Marchi  <simon.marchi@ericsson.com>
16755
16756         * valprint.c (converted_character_d): Remove typedef.
16757         (DEF_VEC_O (converted_character_d)): Remove.
16758         (count_next_character): Use std::vector.
16759         (print_converted_chars_to_obstack): Likewise.
16760         (generic_printstr): Likewise.
16761
16762 2018-01-07  Simon Marchi  <simon.marchi@polymtl.ca>
16763
16764         * xml-support.h (struct gdb_xml_value): Add constructor.
16765         <value>: Change type to unique_xmalloc_ptr.
16766         (gdb_xml_value_s): Remove typedef.
16767         (DEF_VEC_O (gdb_xml_value_s)): Remove.
16768         (gdb_xml_element_start_handler): Change parameter type to
16769         std::vector.
16770         (xml_find_attribute): Likewise.
16771         * xml-support.c (xml_find_attribute): Change parameter type to
16772         std::vector and adjust.
16773         (gdb_xml_values_cleanup): Remove.
16774         (gdb_xml_parser::start_element): Adjust to std::vector.
16775         (xinclude_start_include): Change paraeter type to std::vector
16776         and adjust.
16777         * btrace.c (check_xml_btrace_version): Likewise.
16778         (parse_xml_btrace_block): Likewise.
16779         (parse_xml_btrace_pt_config_cpu): Likewise.
16780         (parse_xml_btrace_pt): Likewise.
16781         (parse_xml_btrace_conf_bts): Likewise.
16782         (parse_xml_btrace_conf_pt): Likewise.
16783         * memory-map.c (memory_map_start_memory): Likewise.
16784         (memory_map_start_property): Likewise.
16785         * osdata.c (osdata_start_osdata): Likewise.
16786         (osdata_start_item): Likewise.
16787         (osdata_start_column): Likewise.
16788         * remote.c (start_thread): Likewise.
16789         * solib-aix.c (library_list_start_library): Likewise.
16790         (library_list_start_list): Likewise.
16791         * solib-svr4.c (library_list_start_library): Likewise.
16792         (svr4_library_list_start_list): Likewise.
16793         * solib-target.c (library_list_start_segment): Likewise.
16794         (library_list_start_section): Likewise.
16795         (library_list_start_library): Likewise.
16796         (library_list_start_list): Likewise.
16797         * tracepoint.c (traceframe_info_start_memory): Likewise.
16798         (traceframe_info_start_tvar): Likewise.
16799         * xml-syscall.c (syscall_start_syscall): Likewise.
16800         * xml-tdesc.c (tdesc_start_target): Likewise.
16801         (tdesc_start_feature): Likewise.
16802         (tdesc_start_reg): Likewise.
16803         (tdesc_start_union): Likewise.
16804         (tdesc_start_struct): Likewise.
16805         (tdesc_start_flags): Likewise.
16806         (tdesc_start_enum): Likewise.
16807         (tdesc_start_field): Likewise.
16808         (tdesc_start_enum_value): Likewise.
16809         (tdesc_start_vector): Likewise.
16810
16811 2018-01-07  Simon Marchi  <simon.marchi@polymtl.ca>
16812
16813         * extension.h (struct xmethod_worker) <clone>: Remove.
16814         * python/py-xmethods.c (struct python_xmethod_worker) <clone>:
16815         Remove.
16816         (python_xmethod_worker::clone): Remove.
16817         * valops.c (find_overload_match): Use std::move instead of
16818         clone.
16819
16820 2018-01-07  Simon Marchi  <simon.marchi@polymtl.ca>
16821
16822         * extension-priv.h (enum ext_lang_rc): Remove, move to extension.h.
16823         (struct extension_language_ops) <clone_xmethod_worker_data>: Remove.
16824         <free_xmethod_worker_data>: Remove.
16825         <get_matching_xmethod_workers>: Chance VEC to std::vector.
16826         <get_xmethod_arg_types>: Remove.
16827         <get_xmethod_result_type>: Remove.
16828         <invoke_xmethod>: Remove.
16829         * extension.c (new_xmethod_worker): Remove.
16830         (clone_xmethod_worker): Remove.
16831         (get_matching_xmethod_workers): Return void, pass std::vector by
16832         pointer.
16833         (get_xmethod_arg_types): Rename to...
16834         (xmethod_worker::get_arg_types): ... this, and adjust.
16835         (get_xmethod_result_type): Rename to...
16836         (xmethod_worker::get_result_type): ... this, and adjust.
16837         (invoke_xmethod): Remove.
16838         (free_xmethod_worker): Remove.
16839         (free_xmethod_worker_vec): Remove.
16840         * extension.h (enum ext_lang_rc): Move here from
16841         extension-priv.h.
16842         (struct xmethod_worker): Add constructor and destructor.
16843         <data>: Remove.
16844         <value>: Remove.
16845         <invoke, clone, do_get_result_type, do_get_arg_types>: New
16846         virtual pure methods.
16847         <get_arg_types, get_result_type>: New methods.
16848         (xmethod_worker_ptr): Remove typedef.
16849         (DEF_VEC_P (xmethod_worker_ptr)): Remove.
16850         (xmethod_worker_vec): Remove typedef.
16851         (xmethod_worker_up): New typedef.
16852         (invoke_xmethod): Remove.
16853         (clone_xmethod_worker): Remove.
16854         (free_xmethod_worker): Remove.
16855         (free_xmethod_worker_vec): Remove.
16856         (get_xmethod_arg_types): Remove.
16857         (get_xmethod_result_type): Remove.
16858         * valops.c (find_method_list): Use std::vector, don't use
16859         intermediate vector.
16860         (value_find_oload_method_list): Use std::vector.
16861         (find_overload_match): Use std::vector.
16862         (find_oload_champ): Use std::vector.
16863         * value.c (value_free): Use operator delete.
16864         (value_of_xmethod): Rename to...
16865         (value_from_xmethod): ... this.  Don't assign
16866         xmethod_worker::value, take rvalue-reference.
16867         (result_type_of_xmethod): Adjust.
16868         (call_xmethod): Adjust.
16869         * value.h: Include extension.h.
16870         (struct xmethod_worker): Don't forward-declare.
16871         (value_of_xmethod): Rename to...
16872         (value_from_xmethod): ... this, take rvalue-reference.
16873         * python/py-xmethods.c (struct gdbpy_worker_data): Rename to...
16874         (struct python_xmethod_worker): ... this, add constructor and
16875         destructor.
16876         <invoke, clone, do_get_arg_types, do_get_result_type>: Implement.
16877         (gdbpy_free_xmethod_worker_data): Rename to...
16878         (python_xmethod_worker::~python_xmethod_worker): ... this and
16879         adjust.
16880         (gdbpy_clone_xmethod_worker_data): Rename to...
16881         (python_xmethod_worker::clone): ... this and adjust.
16882         (gdbpy_get_matching_xmethod_workers): Use std::vector, don't use
16883         temporary vector.
16884         (gdbpy_get_xmethod_arg_types): Rename to...
16885         (python_xmethod_worker::do_get_arg_types): ... this and adjust.
16886         (gdbpy_get_xmethod_result_type): Rename to...
16887         (python_xmethod_worker::do_get_result_type): ... this and
16888         adjust.
16889         (gdbpy_invoke_xmethod): Rename to...
16890         (python_xmethod_worker::invoke): ... this and adjust.
16891         (new_python_xmethod_worker): Rename to...
16892         (python_xmethod_worker::python_xmethod_worker): ... this and
16893         adjust.
16894         * python/python-internal.h (gdbpy_clone_xmethod_worker_data):
16895         Remove.
16896         (gdbpy_free_xmethod_worker_data): Remove.
16897         (gdbpy_get_matching_xmethod_workers): Use std::vector.
16898         (gdbpy_get_xmethod_arg_types): Remove.
16899         (gdbpy_get_xmethod_result_type): Remove.
16900         (gdbpy_invoke_xmethod): Remove.
16901         * python/python.c (python_extension_ops): Remove obsolete
16902         callbacks.
16903
16904 2018-01-05  Pedro Alves  <palves@redhat.com>
16905
16906         PR gdb/18653
16907         * common/signals-state-save-restore.c
16908         (save_original_signals_state): New parameter 'quiet'.  Warn if we
16909         find a custom handler preinstalled, instead of internal erroring.
16910         But only warn if !quiet.
16911         * common/signals-state-save-restore.h
16912         (save_original_signals_state): New parameter 'quiet'.
16913         * main.c (captured_main_1): Move save_original_signals_state call
16914         after option handling, and pass QUIET.
16915
16916 2018-01-05  Pedro Alves  <palves@redhat.com>
16917
16918         * spu-tdep.c (spu_catch_start): Pass
16919         symbol_name_match_type::SEARCH_NAME to block_lookup_symbol.
16920
16921 2018-01-05  Pedro Alves  <palves@redhat.com>
16922
16923         PR gdb/22670
16924         * ada-lang.c (literal_symbol_name_matcher): New function.
16925         (ada_get_symbol_name_matcher): Use it for
16926         symbol_name_match_type::SEARCH_NAME.
16927         * block.c (block_lookup_symbol): New parameter 'match_type'.  Pass
16928         it down instead of assuming symbol_name_match_type::FULL.
16929         * block.h (block_lookup_symbol): New parameter 'match_type'.
16930         * c-valprint.c (print_unpacked_pointer): Use
16931         lookup_symbol_search_name instead of lookup_symbol.
16932         * compile/compile-object-load.c (get_out_value_type): Pass down
16933         symbol_name_match_type::SEARCH_NAME.
16934         * cp-namespace.c (cp_basic_lookup_symbol): Pass down
16935         symbol_name_match_type::FULL.
16936         * cp-support.c (cp_get_symbol_name_matcher): Handle
16937         symbol_name_match_type::SEARCH_NAME.
16938         * infrun.c (insert_exception_resume_breakpoint): Use
16939         lookup_symbol_search_name.
16940         * p-valprint.c (pascal_val_print): Use lookup_symbol_search_name.
16941         * psymtab.c (maintenance_check_psymtabs): Use
16942         symbol_name_match_type::SEARCH_NAME and SYMBOL_SEARCH_NAME.
16943         * stack.c (print_frame_args): Use lookup_symbol_search_name and
16944         SYMBOL_SEARCH_NAME.
16945         * symtab.c (lookup_local_symbol): Don't demangle the lookup name
16946         if symbol_name_match_type::SEARCH_NAME.
16947         (lookup_symbol_in_language): Pass down
16948         symbol_name_match_type::FULL.
16949         (lookup_symbol_search_name): New.
16950         (lookup_language_this): Pass down
16951         symbol_name_match_type::SEARCH_NAME.
16952         (lookup_symbol_aux, lookup_local_symbol): New parameter
16953         'match_type'.  Pass it down.
16954         * symtab.h (symbol_name_match_type::SEARCH_NAME): New enumerator.
16955         (lookup_symbol_search_name): New declaration.
16956         (lookup_symbol_in_block): New 'match_type' parameter.
16957
16958 2018-01-05  Pedro Alves  <palves@redhat.com>
16959
16960         PR gdb/22670
16961         * ada-lang.c (ada_lookup_encoded_symbol): Reimplement in terms of
16962         ada_lookup_symbol.
16963         (ada_lookup_symbol): Reimplement in terms of
16964         ada_lookup_symbol_list, bits factored out from
16965         ada_lookup_encoded_symbol.
16966
16967 2018-01-05  Joel Brobecker  <brobecker@adacore.com>
16968
16969         * ada-exp.y (write_object_renaming): When subscripting an array
16970         using a symbol as the index, pass the block in call to
16971         ada_lookup_encoded_symbol when looking that symbol up.
16972
16973 2018-01-05  Jerome Guitton  <guitton@adacore.com>
16974
16975         * ada-lang.c (ada_array_length): Use ada_index_type instead of
16976         TYPE_INDEX_TYPE.
16977
16978 2018-01-05  Joel Brobecker  <brobecker@adacore.com>
16979
16980         * ada-lang.c (ada_to_fixed_value_create): Add handling of
16981         the case where VALUE_LVAL (val0) is not lval_memory.
16982
16983 2018-01-05  Xavier Roirand  <roirand@adacore.com>
16984
16985         * ada-valprint.c (print_optional_low_bound): Handle
16986         character-indexed array printing like boolean-indexed array
16987         printing.
16988
16989 2018-01-05  Joel Brobecker  <brobecker@adacore.com>
16990
16991         * NEWS: Create a new section for the next release branch.
16992         Rename the section of the current branch, now that it has
16993         been cut.
16994
16995 2018-01-05  Joel Brobecker  <brobecker@adacore.com>
16996
16997         GDB 8.1 branch created (5219ac6237c272b938c28517bf371429260c71e7):
16998         * version.in: Bump version to 8.1.50.DATE-git.
16999
17000 2018-01-03  Xavier Roirand  <roirand@adacore.com>
17001
17002         * ada-lang.h (ada_exception_catchpoint_kind) <ada_catch_handlers>:
17003         Add field.
17004         * ada-lang.c (struct exception_support_info) <catch_handlers_sym>:
17005         Add field.
17006         (default_exception_support_info) <catch_handlers_sym>: Add field.
17007         (exception_support_info_fallback) <catch_handlers_sym>: Add field.
17008         (ada_exception_name_addr_1): Add "catch handlers" handling.
17009         (ada_exception_catchpoint_cond_string) <ex>: New parameter.
17010         Update all callers.
17011         (create_excep_cond_exprs) <ex>: Add parameter.
17012         (re_set_exception): Update create_excep_cond_exprs call.
17013         (print_it_exception, print_one_exception, print_mention_exception)
17014         (print_recreate_exception): Add "catch handler" handling.
17015         (allocate_location_catch_handlers, re_set_catch_handlers)
17016         (check_status_catch_handlers, print_it_catch_handlers)
17017         (print_one_catch_handlers, print_mention_catch_handlers)
17018         (print_recreate_catch_handlers): New function.
17019         (catch_handlers_breakpoint_ops): New variable.
17020         (catch_ada_exception_command_split) <is_catch_handlers_cmd>:
17021         Add parameter.  Add "catch handler" handling.
17022         (ada_exception_sym_name, ada_exception_breakpoint_ops):
17023         Add "catch handler" handling.
17024         (ada_exception_catchpoint_cond_string): Add "catch handler"
17025         handling.
17026         (create_ada_exception_catchpoint): Update create_excep_cond_exprs
17027         call.
17028         (catch_ada_handlers_command): New function.
17029         (initialize_ada_catchpoint_ops): Initialize "catch handlers"
17030         operations structure.
17031         (_initialize_ada_language): Add "catch handlers" command entry.
17032         * NEWS: Document "catch handlers" feature.
17033
17034 2018-01-02  Joel Brobecker  <brobecker@adacore.com>
17035
17036         * ada-lang.c (ada_value_slice_from_ptr): Take array stride into
17037         account when creating the array type of the slice.
17038         (ada_value_slice): Likewise.
17039
17040 2018-01-02  Joel Brobecker  <brobecker@adacore.com>
17041
17042         * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_BYTE_STRIDE>:
17043         New enum value.
17044         (create_array_type_with_stride): Add byte_stride_prop parameter.
17045         * gdbtypes.c (create_array_type_with_stride) <byte_stride_prop>:
17046         New parameter.  Update all callers in this file.
17047         (array_type_has_dynamic_stride): New function.
17048         (is_dynamic_type_internal, resolve_dynamic_array): Add handling
17049         of arrays with dynamic byte strides.
17050         * dwarf2read.c (read_array_type): Add support for dynamic
17051         DW_AT_byte_stride attributes.
17052
17053 2018-01-02  Joel Brobecker  <brobecker@adacore.com>
17054
17055         * dwarf2read.c (read_unspecified_type): Treat
17056         DW_TAG_enumeration_type DIEs from Ada units as stubs.
17057
17058 2018-01-01  Joel Brobecker  <brobecker@adacore.com>
17059
17060         Update copyright year range in all GDB files.
17061
17062 2018-01-01, 18  Joel Brobecker  <brobecker@adacore.com>
17063
17064         * copyright.py (BY_HAND): Remove gdb/testsuite/gdb.base/step-line.inp
17065         and gdb/testsuite/gdb.base/step-line.c.
17066
17067 2018-01-01  Joel Brobecker  <brobecker@adacore.com>
17068
17069         * copyright.py (main): Dump the contents of
17070         MULTIPLE_COPYRIGHT_HEADERS (separately) from BY_HAND,
17071         even if BY_HAND is empty.
17072
17073 2018-01-01  Joel Brobecker  <brobecker@adacore.com>
17074
17075         * top.c (print_gdb_version): Update Copyright year in version
17076         message.
17077
17078 2018-01-01  Joel Brobecker  <brobecker@adacore.com>
17079
17080         * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2017.
17081
17082 For older changes see ChangeLog-2017.
17083 \f
17084 Local Variables:
17085 mode: change-log
17086 left-margin: 8
17087 fill-column: 74
17088 version-control: never
17089 coding: utf-8
17090 End: